From 1da6a52982dbbf0101e5753816a629f62aa0130d Mon Sep 17 00:00:00 2001 From: str1k3r <1+str1k3r@noreply.localhost> Date: Tue, 21 Jul 2026 17:25:18 +0000 Subject: [PATCH 01/13] feat: test ps3 workflow --- .gitea/workflows/ps3.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitea/workflows/ps3.yaml diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml new file mode 100644 index 00000000..c416563d --- /dev/null +++ b/.gitea/workflows/ps3.yaml @@ -0,0 +1,32 @@ +name: Build PS3 + +on: + workflow_dispatch: + +jobs: + build: + runs-on: windows-2022 + + strategy: + matrix: + configuration: [Release, Debug] + + steps: + - name: Checkout Repository + uses: https://github.com/actions/checkout@v4 + + - name: Setup MSBuild + uses: https://github.com/microsoft/setup-msbuild@v2 + + - name: Build Minecraft Legacy Console Edition + run: | + msbuild MinecraftConsoles.sln ` + /p:Configuration=${{ matrix.configuration }} ` + /p:Platform=PS3 ` + /m + + - name: Upload Release + Debug Artifacts + uses: https://github.com/actions/upload-artifact@v3 + with: + name: MinecraftClient-${{ matrix.configuration }} + path: x64/${{ matrix.configuration }} \ No newline at end of file From b876d871d110688cc26291b74c3afc6fcf5b5011 Mon Sep 17 00:00:00 2001 From: str1k3r <1+str1k3r@noreply.localhost> Date: Tue, 21 Jul 2026 17:43:12 +0000 Subject: [PATCH 02/13] fix: using wrong msbuild ver --- .gitea/workflows/ps3.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml index c416563d..adcbdbd5 100644 --- a/.gitea/workflows/ps3.yaml +++ b/.gitea/workflows/ps3.yaml @@ -15,12 +15,9 @@ jobs: - name: Checkout Repository uses: https://github.com/actions/checkout@v4 - - name: Setup MSBuild - uses: https://github.com/microsoft/setup-msbuild@v2 - - name: Build Minecraft Legacy Console Edition run: | - msbuild MinecraftConsoles.sln ` + "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` /p:Configuration=${{ matrix.configuration }} ` /p:Platform=PS3 ` /m From d5c6836069acf2a8ed604cea01b81c03010ee747 Mon Sep 17 00:00:00 2001 From: str1k3r <1+str1k3r@noreply.localhost> Date: Tue, 21 Jul 2026 17:49:29 +0000 Subject: [PATCH 03/13] fix: workflow --- .gitea/workflows/ps3.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml index adcbdbd5..038332d2 100644 --- a/.gitea/workflows/ps3.yaml +++ b/.gitea/workflows/ps3.yaml @@ -16,8 +16,9 @@ jobs: uses: https://github.com/actions/checkout@v4 - name: Build Minecraft Legacy Console Edition + shell: pwsh run: | - "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` + & "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` /p:Configuration=${{ matrix.configuration }} ` /p:Platform=PS3 ` /m @@ -26,4 +27,4 @@ jobs: uses: https://github.com/actions/upload-artifact@v3 with: name: MinecraftClient-${{ matrix.configuration }} - path: x64/${{ matrix.configuration }} \ No newline at end of file + path: PS3_${{ matrix.configuration }} \ No newline at end of file From 10aebacbb41bdc75ec2a6bbf0449595bd70a5505 Mon Sep 17 00:00:00 2001 From: str1k3r <1+str1k3r@noreply.localhost> Date: Tue, 21 Jul 2026 17:51:21 +0000 Subject: [PATCH 04/13] fix: workflow --- .gitea/workflows/ps3.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml index 038332d2..0291819b 100644 --- a/.gitea/workflows/ps3.yaml +++ b/.gitea/workflows/ps3.yaml @@ -16,7 +16,6 @@ jobs: uses: https://github.com/actions/checkout@v4 - name: Build Minecraft Legacy Console Edition - shell: pwsh run: | & "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` /p:Configuration=${{ matrix.configuration }} ` From 632883a6eeb67e061def0df0e397b20034965e05 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Tue, 21 Jul 2026 14:52:11 -0400 Subject: [PATCH 05/13] feat: release workflow --- .gitea/workflows/ps3.yaml | 29 -------- .gitea/workflows/release.yaml | 122 ++++++++++++++++++++++++++++++++++ 2 files changed, 122 insertions(+), 29 deletions(-) delete mode 100644 .gitea/workflows/ps3.yaml create mode 100644 .gitea/workflows/release.yaml diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml deleted file mode 100644 index 0291819b..00000000 --- a/.gitea/workflows/ps3.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build PS3 - -on: - workflow_dispatch: - -jobs: - build: - runs-on: windows-2022 - - strategy: - matrix: - configuration: [Release, Debug] - - steps: - - name: Checkout Repository - uses: https://github.com/actions/checkout@v4 - - - name: Build Minecraft Legacy Console Edition - run: | - & "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` - /p:Configuration=${{ matrix.configuration }} ` - /p:Platform=PS3 ` - /m - - - name: Upload Release + Debug Artifacts - uses: https://github.com/actions/upload-artifact@v3 - with: - name: MinecraftClient-${{ matrix.configuration }} - path: PS3_${{ matrix.configuration }} \ No newline at end of file diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 00000000..68a523c7 --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,122 @@ +name: Build & Release + +on: + workflow_dispatch: + inputs: + version: + description: 'Version tag for release (e.g. v1.0.0).' + required: true + default: '' + notes: + description: 'URL to notes for release.' + required: false + default: '' + +jobs: + validate: + runs-on: windows-2022 + steps: + - name: Validate version format + shell: pwsh + run: | + if (-not ("${{ inputs.version }}" -match '^v\d+\.\d+\.\d+[a-zA-Z0-9.-]*$')) { + Write-Error "Version '${{ inputs.version }}' doesn't match expected format (e.g. v1.0.0)" + exit 1 + } + + build: + runs-on: windows-2022 + + strategy: + matrix: + configuration: [Release] + platform: [PS3, Windows64] #[PS3, PSVita, Xbox 360, ORBIS, Windows64] + + steps: + - name: Checkout Repository + uses: https://github.com/actions/checkout@v4 + + - name: Build Cafeberry + run: | + & "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln ` + /p:Configuration=${{ matrix.configuration }} ` + /p:Platform=${{ matrix.platform }} ` + /m + + - name: Zip Build (Consoles) + if: matrix.platform != 'Windows64' + run: 7z a -r LCE${{ matrix.platform }}.zip ./${{ matrix.platform }}_${{ matrix.configuration }}/* "-x!*.ipdb" "-x!*.iobj" + + - name: Zip Build (Windows64) + if: matrix.platform == 'Windows64' + run: 7z a -r LCE${{ matrix.platform }}.zip ./x64/${{ matrix.configuration }}/* "-x!*.ipdb" "-x!*.iobj" + + - name: Stage artifacts + run: | + New-Item -ItemType Directory -Force -Path staging + Copy-Item LCE${{ matrix.platform }}.zip staging/ + + - name: Stage artifacts + run: | + New-Item -ItemType Directory -Force -Path staging + Copy-Item LCE${{ matrix.platform }}.zip staging/ + + - name: Stage exe + if: matrix.platform == 'Windows64' + run: | + Copy-Item ./x64/${{ matrix.platform }}/Minecraft.Client.exe staging/ + + - name: Upload artifacts + uses: https://github.com/actions/upload-artifact@v3 + with: + name: build-${{ matrix.platform }} + path: staging/* + + release: + needs: build + runs-on: windows-2022 + steps: + - name: Checkout Repository + uses: https://github.com/actions/checkout@v4 + + - name: Download all build artifacts + uses: https://github.com/actions/download-artifact@v3 + with: + path: downloaded + + - name: Read release notes + id: notes + run: | + $notesSource = "${{ inputs.notes }}" + $fallback = "## Cafeberry`n`n### Whoever made this release forgot to put notes, sorry!" + + if ($notesSource -match '^https?://') { + try { + $body = (Invoke-WebRequest -Uri $notesSource -UseBasicParsing).Content + if ([string]::IsNullOrWhiteSpace($body)) { $body = $fallback } + } catch { + $body = $fallback + } + } else { + if (Test-Path $notesSource) { + $body = Get-Content -Raw -Path $notesSource + if ([string]::IsNullOrWhiteSpace($body)) { $body = $fallback } + } else { + $body = $fallback + } + } + + "description< Date: Tue, 21 Jul 2026 14:54:07 -0400 Subject: [PATCH 06/13] fix: workflow --- .gitea/workflows/release.yaml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 68a523c7..b8b81727 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -17,7 +17,6 @@ jobs: runs-on: windows-2022 steps: - name: Validate version format - shell: pwsh run: | if (-not ("${{ inputs.version }}" -match '^v\d+\.\d+\.\d+[a-zA-Z0-9.-]*$')) { Write-Error "Version '${{ inputs.version }}' doesn't match expected format (e.g. v1.0.0)" @@ -51,11 +50,6 @@ jobs: if: matrix.platform == 'Windows64' run: 7z a -r LCE${{ matrix.platform }}.zip ./x64/${{ matrix.configuration }}/* "-x!*.ipdb" "-x!*.iobj" - - name: Stage artifacts - run: | - New-Item -ItemType Directory -Force -Path staging - Copy-Item LCE${{ matrix.platform }}.zip staging/ - - name: Stage artifacts run: | New-Item -ItemType Directory -Force -Path staging @@ -84,7 +78,7 @@ jobs: with: path: downloaded - - name: Read release notes + - name: Fetch release notes id: notes run: | $notesSource = "${{ inputs.notes }}" @@ -97,18 +91,11 @@ jobs: } catch { $body = $fallback } - } else { - if (Test-Path $notesSource) { - $body = Get-Content -Raw -Path $notesSource - if ([string]::IsNullOrWhiteSpace($body)) { $body = $fallback } - } else { - $body = $fallback - } } "description< Date: Tue, 21 Jul 2026 16:02:55 -0400 Subject: [PATCH 07/13] fix: workflow stage exe path --- .gitea/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index b8b81727..601f5c08 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -58,7 +58,7 @@ jobs: - name: Stage exe if: matrix.platform == 'Windows64' run: | - Copy-Item ./x64/${{ matrix.platform }}/Minecraft.Client.exe staging/ + Copy-Item ./x64/${{ matrix.configuration }}/Minecraft.Client.exe staging/ - name: Upload artifacts uses: https://github.com/actions/upload-artifact@v3 From 658ec1f809ecdadfa8728c36aa61e54838560583 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Tue, 21 Jul 2026 17:11:11 -0400 Subject: [PATCH 08/13] fix: ps3 compiling & only uncap fps on windows --- Minecraft.Client/Common/Leaderboards/LeaderboardManager.cpp | 2 +- Minecraft.Client/Options.cpp | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/Leaderboards/LeaderboardManager.cpp b/Minecraft.Client/Common/Leaderboards/LeaderboardManager.cpp index d7bed46f..a6c24d8e 100644 --- a/Minecraft.Client/Common/Leaderboards/LeaderboardManager.cpp +++ b/Minecraft.Client/Common/Leaderboards/LeaderboardManager.cpp @@ -9,7 +9,7 @@ const wstring LeaderboardManager::filterNames[eNumFilterModes] = L"Friends", L"MyScore", L"TopRank" }; -#if !defined(_WINDOWS64) && !defined(_DURANGO) && !defined(__ORBIS__) && !defined(__PS3__) && !defined(__PSVITA__) && !defined(_XBOX) +#if !defined(_DURANGO) && !defined(_WINDOWS64) && !defined(_XBOX) && !defined(__ORBIS__) // str1k3r - some platforms complain about this, also this wasnt in the leak? LeaderboardManager *LeaderboardManager::m_instance = NULL; #endif diff --git a/Minecraft.Client/Options.cpp b/Minecraft.Client/Options.cpp index c0095d6e..65f07987 100644 --- a/Minecraft.Client/Options.cpp +++ b/Minecraft.Client/Options.cpp @@ -116,7 +116,11 @@ void Options::init() bobView = true; anaglyph3d = false; advancedOpengl = false; +#ifdef _WINDOWS64 framerateLimit = 0; +#else + framerateLimit = 2; +#endif fancyGraphics = true; ambientOcclusion = true; renderClouds = true; From 2eaa1dc9b608cea91884acc41cf9400c47bf1a4b Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Tue, 21 Jul 2026 19:21:43 -0400 Subject: [PATCH 09/13] fix: excess step from being in release --- .gitea/workflows/release.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 601f5c08..341d3bbb 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -70,9 +70,6 @@ jobs: needs: build runs-on: windows-2022 steps: - - name: Checkout Repository - uses: https://github.com/actions/checkout@v4 - - name: Download all build artifacts uses: https://github.com/actions/download-artifact@v3 with: From d68f152e41fd3d1307b2f64217d76ecfe840aef6 Mon Sep 17 00:00:00 2001 From: piebot Date: Wed, 22 Jul 2026 19:59:49 +0300 Subject: [PATCH 10/13] fix(TU22): Boat, Baby zombie and Texture changes. TU22: - Corrected baby zombie hit boxes size. - Fix for players sometimes taking fall damage while in a boat. - Updated Lapis Lazuli's block texture --- .../Common/res/TitleUpdate/res/terrain.png | Bin 142406 -> 157158 bytes .../TitleUpdate/res/terrainMipMapLevel2.png | Bin 43876 -> 58645 bytes .../TitleUpdate/res/terrainMipMapLevel3.png | Bin 12618 -> 27399 bytes Minecraft.World/Boat.cpp | 29 ++++++++++++++++++ Minecraft.World/Boat.h | 1 + Minecraft.World/Zombie.cpp | 2 ++ 6 files changed, 32 insertions(+) diff --git a/Minecraft.Client/Common/res/TitleUpdate/res/terrain.png b/Minecraft.Client/Common/res/TitleUpdate/res/terrain.png index 0246b41d902be0b0af87ea79dbafb199bad1a138..ca4adf1995db453095b1fc9d145b1ae68e3ead76 100644 GIT binary patch delta 96848 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
FD-Mk4U()he%-%%r*#QO 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%0A82Ks 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%0AIf^*kJnE(SHV`+_sF^TE^ZB@;d>2`h@xkMoG!y~ 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 delta 81975 zcmXt9WmH_v62#phxVyW%%i@IKPO#t}^y2RBt^ooB3-0a^B)CIxcX|8$czb5g**WuP zcYC_Js=DvNIO5PULIPF8qCm(2kVKQJY4JD7LZSKVHYc^eiMW zGj7M>2G7nkT04RaiV2ZNK~={qhwN( z*MDg~3=OfG;=6p*OUW~|wsy&sYV?w3%i{fTGneRPXTTW`Y0H(X>HH_jS*mAAVV?vg zZ&QF0Y7s}O$S->&O5~23CR>gd9J?{-u=De0_#Tmu z^oq`NM?$79J~BZ=Kd$c$kLfrOeDQE{szZMrm&W826<=IS2z~$iM1U2g60^zM%Ynnl z8=)MTv^Ai|w-YhLj9^NDAca+oDM&=biclP}{VlOH_N$3Jj$EVz&}~!Kv3)(;E~le+ zqQ=T^U}T>lNiZs{GcL{W_=?;;IQ7iRf^PTu>O9-g`MJxd_4(cBH}7(N4>@@RjHB-j z6!1O_M8u0T_ND{dKmCil-+P(-(rUZk9*7?#R>@w!5Q+L7E=>gWIZ=-#y-la%%&89L zbnj1HZ_UM$a>=&Pbe>HaQ(xhnNz-eSM#3)JYTX^wDC#`^q#QcabkQH_0a1nVX}1PYyv zAI>h#86UaKhqX&5zK`crPapVXWaUP+uJ_nt6_BD2terg=TIVH03&WFT$$tqy&&>!y%(afkK5^(Lp0z_o>q-ID z8l^#qZu5MAeJS&A6+N^@WLV<Tnx$_|bC5;*qRunb43yCDT*rO2Y7~F zPT080x|Gly!ak-<=1#9*q8_(Fi4|GSG)5L}S}9EIaCQ!zEsY@yHMkQW3e_Ca-Gh6< zG@ArWY!PEFu1pgGUGA$;G5a`4_{G?%QOQ_t#C& zu5I~=pq*>SuF>Rpq3=wXV)x0oTBGEe>gTTq{}%~Jh`UcUcXbU;vfy@s5UgxWc2{~OdOSL^f7j0HLVkC7a<@76J=ZtAw*yY2JdEH=o zJenYUYdf6G(!xRpxGg5zKVGOZ^Ylz7N1#s!tvm=PIzc#m{6l4c)st7MlDBaRDyBPM zsO`8$n%l&QyKOqe!)I=5`@7i3%PoitL&2>NrygIp_^m0&1WQKU;kRzy?p=rk$5t6& zVtjyT+oacL#)xxGXzl1IE*n6P8{Nt;4<)Hkf}s;Oz+sLAi)`CNn^D33-oreU>b?_} zeamUBOguQ+_*bXcU7DEY6`leX#Q54HC*RxD6mr#4XCy}uwEe5Ml!&8P3NDxX!WAX> z-aEP9lgwhfGn%-SFA+EXVUa#0=y(~R){l<%Jv!B8E{w>k+o|PrGKpA-C8VKiyJ5`# z^>!`|KlKBqGhn;MjKUM@lMhK>O|1p_R)d(>|^VG<8*7?=pM?99B}DHbQP3Y8$<*``ZWXTQtA#ZAR(;VSiS8*LVFdlkI#B%a+n78zwZ1 zcNzug8lq9=$9m>e%9B02EK4P7+>6{X!*HSpbI`;9^Hka5#9d20+pqRA5p(Q)mEEy^!&|lQ;rbMGV0IL$(`?@wn$MPLDc548+%EKFuQn;7VIyzO=sf!`}^xB zh%nQ=wWHHl6lUi1aRs9d8&i6A9G$QN6J#XVWcIMYprXYic7sMt;NPj#C+QLS;z$II zQZt%QVIa}*$@L7mbJFdLjZM>U%(=`sWt?CC{SXt;F!Q3~$m^9t`*~>cg=d^-JS3Ky z()(?Q=R99z>?K-TfY&ELUK5|J!b|{8ea+O;35V_W1?Bx>@~&G7CxHVR*hO!Dol_Nj z^1E;)fXL{4f9Y=f06u=GW^r$JkBSL34+D>LYEk#-&L&a5KsQoC$2;JGZIwLm`7OX0 z4a)K%)BN`*Dhx!YVV1;RF}IVS#^wHZP^-X$%)5(!s_|nxi~mVt{rg3A;|0odh?FX6 ziJ(71WwB7v>qi0(`HkP5w}@&e*PIS5Z+26J6~$YuYySBO;4~T6-j$_REp|2IS6yv? z@TJi%EMzguCw_X)y2Z6_?MC?PpHj6tb~w0yZhj~_W)##BQ+#_=A9F{`&%UEx+58-CV=m7Q^fq2npbqG;TUZ}wF5givu2Ycpi z_^7K&#AXedjEly%^1Ua-wr=199$2t6ms@ux)7;$D^3;88czJN4f?pQ($ubsAfC!GI zo4VfA>PnK94p)H$7{^5eIdswL#rhdIN%zZ@9iwQE{-I=H4%asK&4n^HrG@8uq7$PLfmVZmuhU|sAQoUaAn0K;Pd9czrIRpW%i2$0QGORazz*hkP zF6t}JCi5rjvO}w(+}!+9sLom|H${29FlB5drhf)8{SjtA;7u}c!%Q)Up=u~4v1rMG z^#J;{56)}z)Id%cy7FP2zj`N3Z-@*C#R>Ev;@-@8t64*3FQ=4|s5;3=noqSIS8x#V zxdO<2dpmP2&Xkkw+CR;|LrvRbWVIv%E}CM4klruQ*Yp(jm{Uc86B&*&k3M9ZZU2RD zYCcHpJ+q|jgU!evp~}uA700>c=?++@Q!k@NGJ8KvrMp}my-WwLuB8mDLvvn6Wtz|4 z5y%yxIWO6eUsl<=eODPbb=yYH7d-L(Zsl6JKScS&(z$OhZ$99AHeY@>c*GX8Mw=4a zRCITf5X+;8aJ??*(^jZLJL4Bju2w;kr6Ao32Awv>45p9%1(VvGeQjo3SAdusp6wf?z}1YH|%y&xQ*J;R6;Eq7)0N0=TjIz zF^^-BJmp7bN=aezu~b&kGE;Zne)Ij!3g63(WpT5 z)cttg%PgNG-T|R4T5JGnAcfAq)JQ=c=VaxWy+=pZMzA9liJ9AqnJ9;9AoZ$+=i_(X z+MeZQoz15-3e35_Mq(8G!ikV;MU4GaXbV05P)gzU?;>@O?<;y%SQ|2 z$Lp2jB~vYsQs4c~E2NsQa{a*Om;7u+N_}fqB+m75vT1g2bsZkXczX!}rU2lcR}st#3gx!XB|W$TMI_ z9{$K^A$-fF4DK4X;m@56o%lJgH0gb;2qcC)Y(7-33EUn${f)B2mleHc{XEiDU!VQa zsf5i{h4kmdopaE5^TwL*TgVt>d63}`POz|eKqnS(2?6wwsA>0y^@+u+qj19F5A7nd ziR>Gf%GB61^N5#HUF0iGG>q+#CZc{fH`b`;c?HA+!jZULw}Wg4;;LG62tffs_Sj`G zWaT;o@+bE-DGWzCxKdP9tvMcAup=FXyVR}^-u(;=7E|1f%+cH1ri8JCAYC05*anlr z7z7Hz03iDW5T7PA9y25~*RQZRqi--=dEMJx+?OWLT% zuIaw#_fPJ(Tjb@IEM4~pjQMZ%WZMt^hhCCW?7T*%X4Vl2Xoc06vE6U_ak(AQh1(Ke zm#8GKvGd=Uo$XwA4=noF1A^aLUp;?7-FCi1t^%rlf|wX*hTCEvY{>~vtgY@SJ-@>iM*q;wcqh+;v}YMhRY$SN6Sfh1PHT*(I``Ld#JTjj-P;wr7 z8L2=B@`$8eSnag-_xB6nm7UP7A#A!vHi2+kdgxGCw6wHz^!266#4RvF2GswQBYl;Y zCD=bztrOsPRl@H@i#toMd4zZ%CR^_-vgy!&OXV8)7%<7V19_VwBuw(b2#8*^tbmDbK?DyC1 zoDFRZm4E$SG~_HVcg+-5hrpRdI#4dEvDc&h^J;;w?deGfct=a${O!B?)ZWfB@rU8& zdfaK8@k3%#ybI~F2CC2gj=-}ypTO|Kwli!QrDqA3W~Yl-Y}N5ut^WDu<5VC(<+Ol` zNX|>3&a+%|OXUTkP$Z;~$cu(~_rxmTuCF|Q$_JKnsNgs=G|}{{Ze*PSD=_cS;!GSa zNwISzEs3|WVY??y3jWJ)`Fcl)eHpAhMSRgy$bz|@a{Nqw8Pz^uuG|NT$6_LL5jf<9 z>ZD0DshM<`eXdJIFkiOycv>MMYCG#4)to%Oy;5jiG*frvZNj3Qw(!pO4#8*?Byo#! zvrO6SV30@f@Jv>tv%UT&0*DETp5%@3FLWN}^K(l%*Toou4E&jS5-TXbrnYQ63!36{ z^7ATNIKd=jNJL-{FNb1<+0@tj!cxGjqLPu=`cBiunT1v1{=BH~SeIoSy=x+LM#5=c zV}+MhVjP6}xT-alBY%UfbZ{{pXn7PRb5Vx z5Yv9v%>Jyo92WEZ;m9jqD{I2`RNlh#pye0vAvWz9TUE{anwAi1+Cd*#fP{;KjAg+n z$>J=;@skKs&Lm5Xm4UKFM)_y`mmi$x%{t2t8?z9$B3MQ(qMj_(bFpTm>>d~R*U;SS zLSlSq%-+d3MW!IxFTnDc!f@Y1`Y1Pns{A3Sjl%?CvPXJk>tJ)Aslz7At1Dlo3K|;v zDIsx#U35NVLS9N&&ZIs=I;USI`K%L;giVQ?@$(B~D#*)bw%L9NT}!93U!_Kh&M8qg zTCXz_BWRcm$Z_<)$&QJMGb>5iLy<-gW;Y#ppPPQe>EGp=07%>Ay06EWW^^&lmg(ZabZnSH&GtnTy zC#?+|uF{-(0FTd!lIO}k76Y8&zuMZydV}F@T2?)U9UN^9iN)?H-fEV*SQkAB^@j5J zAA-e-x?lI%xHNbN> z1@eG*FH1{H9X-9B*2BErapQMRMMcFNF(41m=zAbo@lA8_@p-PgW_MpA2lQ}bX_;;f zNn1v+FxwR(;`}y}Cbs$7mh>q_ff}VT?oui~0z-}-P7WO-5~Jm8r%A+P9XJ2=MvUgt z98NZ@Vi|Ukw`KY7szew^e{sL`0h{Z-Mv$ZMZQ&c|+s=@nc&okLlrz;owcX$VvCdmGqPnl&#>h^QK&($79{ z(?LuzZC$6Emrt>*8&{*r*}>hP$O%1u)U2!U^WiaOCpUEGVVv&Cq1o!=C7ghi6jV8w zw4a)-L?Re~k+jgnGc+taKdVpJ&pswXb z9c)$#*6B|jM2%C4HzSPdw4~qAwR5#$nIj@1Qc_Z?tFI3<#ixw^QIk@$eCFYP-nTDJ%#0 zI_UU<*%en`3OYQ0dK}P9=}Sl=B1sR@NJ%MTM$Oq~?Bgcrc%auH{C)?Qcw(Lwg%R$i z#fKooI`v3C#=Y!w!g-(u>thY!Qv$`!?|%HplemnXn_If{ml%=&>#OSlQs4 z!|Bge3*YbmTDc6T4z$eKn;y2+G^-AcK4DGuHpr*da zES=S@eq(1(S@`v7^U)*SM^v*Qg!UHONu&AW#nf3#AHeZWLdfGk?BN=Nsb#yus%YMHMIpWifGw}&HkwZp3 z+lr= z8*H+1XDj=?zj|%>-sta4WHxyF?iApY5Y00&F`0e) z2I9+B{sG-joRu}_>gt*!)a_pb+n*n1Y!=k(51xS?Wx+zY{==hF2F5{7 zdVWrKl(T1MR%1EtzO_eqILc%9)UXi_peaENriuS#+U-?Acl}RrXkMWb#NIat#r80e5^8+GbKbwY{nTz;kL9^pM z^HNe$Px4^dJPnMw=-N!*bO;BHTpyr(KmT&_H0)rSk+Rr$UuPeEbyd%e73mWN%hB@B z`N57ZUTNkIig=Y8q1Z3HV0Ue~;qU;D_nBCHoG&s&q4MZ*PLb_u09*C)naDB1n=@Q3 zJ}&MUR7wff};L4Sa_@k%WN_$p-5bGQ+rj6_Gnwy;Mk#t`+f5CTYX^r8%HFr z#|exwo|OwsvGsggmn3m8<1&sFnp%E$pf00E4ybE+>X=qy-s17S{gOy|Sy7sTD}nul z{*=dU9^ih#iS&7h9!%O`5+WUjfFOrZke1L~S;6}J`SUZ_f5pXP>zdBwvbxjme*SU} zE+M|mf7aHBeSCcUhJdqYcW3aOS+_m<`wl)|@J)r!$j(0DdY|xmrB}njQbLHF4HGxP zkbwkc$kRC4h4Z5zyg@`N+68FRwvp`q!#4xSxRUT?p#LVq)JHP(%5KwBZReNX&1-Iag%L}+?j0_4T8(l?VnTp4 z0)SUtQ2(xhcaz2S8@(fOT@f8)!`3>}Z z`|&aZW_C3XdOQ|8#iA0pLSaxO2-jdFaxR$1HF3}(^QKge-WnLq1?9{G}j^>Fe{hN$b ztij-7yRLgQ{o3vpbfdDGv z#PdWkoi(yN&pWDR(_bH2Nk!$D%W5jZD*sJk+bfUX^PJfDu@CR4akbU7`?3#N_~o>r zmFoL(WqC$s=4fmeAI(S%8F^Ax&~`y1^|isVe*5=W!9u(l7sI}uK~!PE^$4vci*|J@ z*V-u$`}j%A=(5B5hE-}5U`=}B(`7JR7ld*QBc6Jhgi^?@Uq_m%t{_VKSjya|n~|@H zgRv@`p(0$ir7>M^bwGO)I*RD`7D>?WE>dUr#5GKV?rn zziII_!33M#-tg4)G@Tom{<%FkbBKwlwy)3WK6CT%(9qJ+>FVj3nVSdG<$Vvz%p|C< zuTNCMJ@&{NIpYIv9;uJ*YzqBEbUfUK9~yV@y`Q%VXs;Wuo3D5EeA3;BL#y3IcpF+R zJfPkUPZ}Arl1%$4B^%b1h5d91nVW=8OZHPJxHwJ^`al}@L_|ei=CQeszC^aaK{nn= z^avH5o+K1Fp^1#`7ZdYct&kd@h53UHy|}X{MX7m-W;+2e=R7`U1gCRMEKS?xq-C;Y z!|2qM%Fl=Vu$bosFj;VLK%3|OyS9dtFk$Ai9g3Hckug)-^&Hh~uRlFGc{RZ`eXGvM zg;KCYaSP^}um6$FYlN-WryHB;&`?&Ss82+z48_429!urT+U3oi{gX8$ye;?3Yb#&d zTZh8{ZS!^`^M=`yFRP|LKA|dA%FIg4<0iHi(KTsu7|4{|vUb>Rt06yCx$eagB{8>B zNI?CFyh#KfLn`6Xn<^$ZO-!N^GmhlzDnWmYJ2ohydU+jf2(*IeM05Bf9Xl@Q@WoG^ z{6u!1QRBfoE)m*HVjgSH`*AaZC6TES4ncrGqV`{BB)2Gr7n%S4n-!Bk9G2x!E`jfb zA6wO}3QEt%A7#+!rP_yZOb7$vK7$;-%vu%%y#+=Xq=rHno!oVfm@^utHZJeA=sTDZ zxX8_%P`{Gz^@Sq)-mKetw``a>*7iO>dyBf^n0);zoiFT_bai$0+HXlSij2of-U&El zBWpkW)!Xc9?yYiUyDm5ONsrd{yvaU+^L<%)C+l)@Cn1qrKBG zEu=>Qg_+Gc^K%KyFDQ+mJfLX_aH@goAZaqcpGuT4gWNbLRT-v&zLe=W_;1JLNg1zeil53d_v zJ{FP0J^Zyq5;zBJVPVt=6QjB2k6Z+Ud>nZi;uIAAeo3v9XB>YZ1gWyqm&XlKt_X!O`!y zol~SQ<#*YO$jHyP^7Av)Pou$FE7RFNhtHqr>^G!~i#BiA-5CKU68O2*aXw?ya0sd6 zdXk7xlfIAqef=FTd>H|ji?LHTHV^KNS*$eW$4hR;PmIhm053i9A{$mX0=H}kc&gx%>3~IEz zt_JZOnQkmz4ySU*f#0VYhxtGrc@R6=vd*f7qj@%<^{3|sTCh-&-n@j9BQ;c79T%#U zI7YspWI%278$JxJ1OA-OYLBa7h$+?}1}LFSnc2LLxg5tNQ#3GYrcc!eI;vCqQ)Q8qSy^)FX_u{eB3E~%B%k=xh!6I)M=k-I{ ziGrJmWf}TiXDz8g@-9~~82Z)dGYpJ3y3D8YWe|0_FOLwVa9EVJpkTfqWLoh%Z3S#B zFPr%K8qk-9*klRc&PaKSlv-+6eF+N>4{Zcap~{+6ow-?%S9zW6WO}u5kl}(qWzPme z?UOQ=*sREB;=cu$yVNh5)z9{Vsxqr`Sy%JoX=uVyPQ68!^z2{x%diKT-36IjNph}C z!Hc)+9k>0$U`YN$&hH(rrqms!Jb)8*tx36g^LzTp4Wd44yQA^f!#)czDLwPZ2FmmO z1<~!V$;84+Z;{9G^}zBV9u9o=pXq|+_k3%EdN~AUvyqXAB7A(qYikB&V&p@^!*^A+ zU1Kvd2@Wl*W|o$+4^Te3)HChJ4`ndZA`isi`tU73m^>{*4`a7DvEp|`)TgpK`fu1Q zRE;wO($+QwG9kE7G591l+yG&XBn+ler%W}hpv77RzS~i8N)Ne;iyaA8s5o3xT|j<&-RDaN2ew!59K=`S zD+uAt<0khlqd)OUyaS3L%t8i&C@N^0bCPN-TYBB7Vsg5&!59wZ9Kxexx-;9LBZ! zl^E|U4ZNKgFGg^&MRCpH_)O zW-t`$5_H0#2r!vukn|96f^_5%Sg@a})u_zTKLx8nK`WO~h!>^~EmDNRxKYBBgi^pH zIZ#u;1oisqR$oVF z(<-8lK8R^;6{9nriW)m923_VYs&=>OBk`mSel{(iKBl0P z6>tM0ks_Q*d(TR5$-@Lbd!p67Nbz*}7jj z$H&M0zUCW<87lTwJjngJ*4Vzj=KSvf?AQ#G`Y4^AokfD7n<`$o=<~?vK{NcL7F|>f2r4Ov~Ke>vMEK=H9-B{hVWn6-j1Zqf6f@)s|aLHaRr3QJ@ijc z&pyr)e+_n);|!W{EDdUd%1FFlS|*+cS@^wWPe+}CV)#=CyxC^bZLTa{I-za4SM5Em z_*huNMb7?hJt^>*x!VVij$R4t&3FxvJ0f2-Os6b7_p|q@CB+dPBnHUd=FVSx!u9My2^G=D%GXs9|JRD&FUt~F zJ(Ud3A6E)jg~hu&%YOp+*##&`zi+*ZqKH>g4;!DkB|{PwTGr2+&flp^?%{0RIi$|oYl#=jW%KDf8~64{X>cUla#<-c=)pN141tjF z*fxIdfGh>qn8hO~#B{olEq(Pq)>%Jq3}=wDS*{H1PL_;u>1|A}!Yhtm={`9+7bj~& zT;CRC@yF6#sGir>${|AN1o)^{idwB_e;!ZKQWO-%rN9OVY@OS=F1~b45{{ts%imE< zbSN!nKUk^k_|$v(*VW=B&iN&~v_)F{^=eDp#`yb!0QC_^BQwtJ0_|zn!1k(&i}E*} zkl8W(b&x6j?)6m|Y|mEL(rLU&U>w!gb8ztUN2Dah#+D?q^g|$pLKPPm>*;xjq4#j3 zFw$ht_Cf*X!7^c0XbVXSvx&=P$1jj6Nz0%@4CZ#$s&!T{Oa~U_1^_j@U*=7!O+Itt zNFtKrlk9=1IGBAeoS3B`)6bW9Tp`^($&7`gtBHsXZoD9$`kqjNegD+I&>7G&C8q3m ze(@aOw<(&Yje*e!&!SJPa6A7_9`ewGALs{=V2cQj791Sh_uW{&+pVnv2X4Zcm>BB- zFu-0tpVXdA$kWl$xwou-`isIB;JN9ijgEp6Q4NzZ8`N;)(_%MRt5wx_%!Ci=n zg<+-`tOGybEYA#!PoYOISUB_r4w6FxqquP>k|)s=10gmILk=={!E{9eC9qGUAOw&O z=g>p?#)7wbgHW$78Hj7H6{WQCdFdvih#hd3mp*AuU86N$DygoD68~*A;`V-W@b&k>c}JSF`~q(UkOlXErr8Sc zxAv^64^-H2SgwHeww_UhsXQ@*uDv^WF=RxcqiQxSTvT?Mwj({iqUI1Uh9hn&NPv)}*tjd~a zlFxZ7ohkvCVu3~XAHbGJy+$jtNM5t*3wUr%8n=1V^PDq~@0 zZXLfDzn7njcY;HLZ+zy}OP8gWpIC_)hrP31Sq9e|r(9hZ(c!=TtNzh?ZM@O>z?jm? zhL!Gj6Np;A>S>f#PounZ$bHV5(Frv!^U0|fqY{WRn*#TVy}j>Hm!%&-fu01zU}13b zKs_x=u<$9+VxKJqk6!nkYSxP1`Fl`Y_Og81X1*|IU{VnH8tlmL!oS#v7uJyx*xA{M z&){fK|IkwvzLL&EnwXwGF{`gY?Vphf4u;wS8*Sv#xMTaj*pEqm*EQrlK&`D=f39lM zHDvjD|pyC*mj9m9N1BjDFTuf7gO8yO{$bLE_`Zu=VFzY6zgdHSa zDy}h62o3v_#hst`Gj&+b+Ghp=fz6MB+pgr%nD=7zAHHJQ=$K)Vl2sUt=;g^d{Kw<# zT!Y}r?di5RZ@HgV+kT60=>pNGt>g$U{~Wp$iDw@A4Tg6PjtSvuAIiyCYO6U#+yMj& zdK8O26?ulapS=owp(X8X`m^!Vrwxc~Yz_yp;soeD$VJ4<_rVDb4>3_5TNGx=FXv)4 zhlhs(t_Lwr?S?A(qBU#=zY`iSz#rsf+c0MqLbZ zK&M64;D7};BaV_FnnvG&Egn15CpeXft+Rzn!;Ua@W(`qa2#YLm+GDgrf>B?qN&0Ng zJ%qD@G+&lJvc)?Q?5dvOakLqtkqXQIK^zhFP5X7*3~fai5-)rmk&z8#&#Q{uRfp%;Sk~~X6ty!gSgGrdKThA5CJ=| z9gjQFPw&WV9X;p-SVb898rG0T#3mzV02~0B|{il zv9j>}Gtz?8Sa6t03#kBM-aUKB^v|VIN-2*P5i{(wZR+!dxXZU^wegj7CT*cGn-AZ_Cd(`aeolf3N$l~T^qD~Lu#VF~O^yZw<5VS_%w z(bC;&;a)h>j|9@4hXN_A`RFsNM!(soIIR(`_WCJ>f4E2a(-y|>%coFW3692_mt{HU z%4Tpk<6u23xF?f798arIC`;_g($mzzDM>4A|MWtDu9iTqgqgIp*OX8vR%V@>YF0fR zepNfmya1s?V3eJilv0+I2KDbf@`LBIeE0gv7TMY_-+_ETiE4w+zE__Mjm>on5AUqV zdJc!5)lPTEUj%KaosZAk!R!xaP%=@rp%+Z_!M%Gh!Kc|RoGUCFR?XYH?12~>blmNJ z!{yE*m!3m`kuOw}EFJMgafT5Dp&DTzE5t}!C#GP^#NZN2A;JVX;1{D2?`*YR9B$F& z4-hf}*l?`s_=V?rD z`B!ZxZ&$0K8Ma~Na+$eoi2?IHZwbDwjJ#k3U=QqwO27)xuwYpCd6hyJNs*%nMLaWQWf!mA>)-5$9KzKQ|w>CeN!tr&JV`ZPP2AHsO^ zOuZ~fqH|*_*OT@71$dNu?)Eyj8o1qN`022|7r*JN{b5e5%6As$KGSy!qe)3G1Umr) zNs$*;QT36+nhbLjuzqn0DQea>_jKgT4A@^M?!m7s;OZK}?k;z>vlm zCLEv91Vw(-Ge@SF=wmwXVZ*b=dSpL4B-4=*TT~rz=y3k-$WqegB+0HcMYbW(toGab z?lvP!{#R+Z`lQjk)|1-cAj1{-VTXia*#^;>o7*XFbg_I=9hD%Qev7-d@|sLythi#C znUgaCKj+qN2sWL-lQFG(E%vK_zVU=$fJyS+@t<+qsz1l>-|hx54ZGUJJ7>-I54;7* z)Tm$^^;mwgQ1AX>HEacmIO*EZ0lN)i-fSQD#()6e*!{Zs1`&ReEet$lZx(PG9BjU6 zdp7X1`>%3zKlp5xkkCmvQ$dnQY93)CA}ExZ9`5(im#o^GQ~tx+5`;@+;E*g2R5sWQ zgS=_Ttv!R!amT@KPGQynGZZBRvJ@pC%3O11=o<~y{1r3~mMNfj#4e4XHqx=r^8}fU zl@W*C%9#73pBlo;r8cC89aX73K!7{O?+9b@lzB=#lm9Y8n8-Af;fWfCM4WlX8%id! zXqV0=ECOL(A`4b1vxOdmo*_ZW&C}YOfV`Wn3t3ouyS#51fH}-{&Lp?HQEblL){C<=bni)^YJY! z{yP*B^3g*W9DHCqL|R^5U5$y0`_-P!KSHF)R}s!Cga9O55`D}YW6E)KJHJaoyuK?c zayJtRe?+5SMbdpB=D$s{%`N-KgH25cOw5nx5527xu?MWuUaT;jfiwxZVK?w|QJt&u zshMOIKI@I^gzPjKSkUC(`09%?o);AmC{W_fb;spT;Id;IV(>Q0)QN*Sk=ni%x)Tj^ zBM8z+5&)R6gjEFzpc(se*E!7{lr_r$&ZH&CR|k0hagCP#VI}e z3FQ_O!E+R{n%}U^S@c_l6(?6^OgUQy+o(h71quavzPTEk#^u!6ZNqVFuwP+Yr{ z;@v2B7er2pi|<^rg&LfG4?#LZ0tEC#+$-(&_Vye?LgPC-W@vv{SXo_OAFo~sSC-}V zT+qoxC;IxJ{+^1gvL`qYm9H0=;{rOmx~3KuG+#dcj^kCFwt_n$Xk_>$Mh(_kyqZxV z{v+KlnV*HS`#qQX~E>y*h%^)PS|WFVPpVENWC>tH@}MGoAI0doXD;8~$* zO0bUbJ5(Y}6($;WOAOJEnkAL=3sVYKkr4Yc%m$?iW|prasFZsXGSY?&ZzAAOC)_kW zZ$R1K>w~#W%~zrhvK0SBGECyC!49tM+ZT~8X6^EO>7@OGyiL@Y+j!joxBJaYH7uKR zoyKd-BAYpFU^&RYcR(1c14%*lnEJRH3Mm*cg0#27J6g!=ci0y2Sl39L?U4grp(EN3 zB<1sw4L)xl_4fzrNoCqzhZlxjENN>?KdL*cs`NXpZS-nNX((VulElfsvJ3H&3J>41 z6UI%G$4#0IWtf|fH`{@@P~ezN(+DQaCU{M_|KLibe1(u_*-+hp^*X8to z$ulGb5TVp{cGdD1A>s%Vbirv<03nc68Z%z~&w`f;G`2(X9a z_|LIJ+9!CWNWJSuf$MMK^T^7Ql?X_&%Ac!UPw(D7jy$RYJf`W`Pmaz|jk$nl5Q7|2 z+m_;iHkNOg-=msz1ClRAsrX5O;M1pY4hXN2ubK>8KhXNvac*vIz&fs-96`s(Nc5Kh zw_ACe*9|R*0X#NC3hZ2*vh(r|JwFR7ByC+oexBnb=)39wCZ`5+5|SIv@6T3WPXKSR z++6+FU|`N1Y}Yk->kG3J2$(A(eU@}mtE6orG>=s{_qm8Co_JLZt|tFz@m*DgzWj6X zhNF8C(73Q-eN#y0g(vn@xLGpttJcnqK<4$2Tz6{z>x^TOjpgqm#_nfa-Ejm<(>i@Q zT%$`r=D&qNu1Zoq|Fnty*$AIv`+mhRI;G4C1HEfBnjhIgPVpuK0;LQF$onj)z{Lu| zTmj&b*-JAKCU<~4tu5JW7ueQ}K!Is?YOKABIHc-BR6f*;H&OBts>@8U6Cz4|?B@i) z^CntVJR0OGNg?5+-Vv#(sZ=$6kB|IsZd=OAQpx}qQeHKdY(QO1#6K3r#bJ$3#QRYPq=6M2|9fe^PX zUrK^B=P6_>FS8ss1YfUgJenbepsdi|fZj2CxHrhjdc>W1s|Z5(5*!>|2_wQfs7OhE z)lLAl4}-wkaWT^()uZF1QWAzf7sFacLL6U@aCeMopt%`wk44MDBQeu-|5?=HU*Krd zWDa={=R&5QU6t}vEf({hsO8ZiW4U`d|B z>BoF?L9u^zq2ufuydGfF3_OX;C zbuRz*se~g;OK)c2H^V2pQ+|k`yaO-&j{N)>M2JW-MtV^a-F+ueIrYN#Y+}Qz{=gC6 zn>mCx8G@ygSwNG>pRXb8*cjDVOU9%|Udyqz;<4DCK%Pf=qzd*>oDBR{zVnebDM6b-f)9^mBpTghJ^>ZZ50xqf<|gx1>_|*N(>Z zGf4+IZ-|FA*Xi^l$k#{JR~(usG2n6i<0XO=;`{D^=|OB`5iP7cjeH8ZX4lxeo1j4t z{j3HCy+Y-u(xem(H8kxnp_jjhovN9A$wjiIo9{UD7gWyd{1DdWy)R9#sqU$!rt&ar@!Gf+fGH7fu=XdCropB>LE?;cgJ*V*6q zTK!{zX10;gP`LexX)&&wl+wQ*u80{sIR~r}$1!8In8`rV2^4)P2m?hChkW>_-iKOW zA)xYaCI9 z8FX*;=?5wCY(z92vDfw&Nl??sf6!Zr)$4UGU%t$_bLZIG+hcckw_@oTUaFAv7himl zvuDq;yu8c{FT5}+HG?pu7KOx8P{Yv_4xyl79k;4hQB{$xr9df(3M4X6RnS|9Qn(VV zE>MM{RGQG0SgnvwFp!Q27%t7pyu?HSLMVhO35}tz6=7Lmb%?P!S}3flf81n5ovz_JJ-+Y@zsUPO@Xf?dCTrCQU+@jD7O3T#r6xIpCD4^TUfS9;G$^CErn|%E7-}lIU5_57P z;p}{!mv4KpYh`1=%Eka=f8flqgd#7wx>fqp-@+3yswl`e=HSZR8T3%3h?BpCpaj?#-tKT)Kf7+U&FytcV=Rfv1 zKlc75l6q}a@{c$Rm1v+8l6Ybap%jzTGyKDkeu}6TvAgQQ#~=LJ&+>~u{wU^#pm6@= zx_NDdkbqv=t-#j_3YYTlp6HI+1q~3^Q;O~+ZYn^RlJSK$?W^;Ir)xxZk35W-lh4pA zjw1>mfVHvn)yT*He^L888CpxCnrA$vodT%@N(qF7JT(-#C9W%+g+b5LKj)@=AGCgH zhoGTpEW~7~VSgn>#S%h^3Iv0#jLv>ZVQ#;4mS`?*a%eNk{Ny^Z=w% z#99+cL4>1*qb40q4W||S0Y31N!uS7yL`E7BX$TaigxYwBf5`+^McyG;fVPI7&9O$K zOR%Mc$Wb=|<#>oLp*tuM!jMchh=u2Q>k>*GB88xz7Zg~827#m$mgz>F!bp&sfgTX5 z8frq)-`nPa`(MZYexE3b8RP;nNKsf$ojHk6P#DFT^B%CgzH*a|l?`$wz`)7lCy-K7 z8?WJ<1PhK5f8{|8dRZTdAwPcsof&T2y2aY&ZElX}z`ZKyQ_384Sh6%9b8f!Dwe=3B zFsMj#+Nnx<&A)o=etzg*eV!uA_`Cn)apup?y=vcIpQrBj&5C*I~0 zz+iice=yo5-(JGReUkH%>G2Kv*(CX3441WOn=_0zu0sH=jaep6KSS%r>nH{msf3^D z$C~b520{=e9{kHQLl7#$O7t-86sSOuH2pXw+s%=ICjiCM5xdW|K}+Jf5LMG;+d08_ zz|5jA-FG%y1kHe%#Yv1aJft4-n`W=j1K8W!f8!K(KI28gd1Wt%i3!s$3Rj0oUH7W^^^$?o`I4dYK#l-j+LTHpLFLvMx#YEj?Wz`XxH5Ggb@O?+$Q!d+C|vXZ$9RITCRsc ze-OyRi-}s;vjth{Xm@&C-?~Yxo5V`tkd#hx?dC1+I(CduSe%yRS%EfyFi0Z^1r$0W zz>w~@DTG7`MNkUVctYCkW27aH>e$Rvx?Ly`#&PCU%vk6}FJ~tz3-!WM;`ob~_PDV= z;Mj~pN19qq@tV7v%ua-0;l-OB_P6a3f9mhB&p*7_Gu#yz5^)X(uovMlo~>G~*?KCl z9tHg2!~t&P7a*nQ4D9dkkIZPJC?d~umY0_qA0Ow~v165b^nuH76h)&wkm(>|;o*0% zbWR?|%tAh%_IWLu8f0QKk z2FXNo)B=3nw|@gaABX&pKl7IqS;p;4D_;>1__6=>jm%8Wq8IM{EbEuv2!j@;-#|B0 zg8elN27gEA_FILVp2=NY0MjgVkUpMfXl6HIAGbN{3n_*P&)M{9qY zTjSW@$p~Y~%tDM60+ShRX<2x~e*$@tQdF2i<75qI9NTMq1d&2U3YQwz?ralH2YmX{ zr#W-x49#Y9GyF_m1Q_-pk5u3x|I`^{=3H`+O``ro%F@aa?MkXN5aDuoObDpbfM zKsH0vOu}Z?r^x!q&JI>Mv>&k(RDipXfbkO#RZ1#Eq_87BuXlj6wJ@g`ze4_>~61PMF3KhyOK^JamLWu^lZ)|E09sZ zBd?z%482{LP=f6}e;U5Lf7xYqE#vq?I10|8)zxrSci0LH$GF3w9R~h^^N+<;=Ktr;onv`< znNFv}h41+umwod$6Mf7Qcio@-_>X@H2nf&-id=^{e-V&5KQhh-z6JP) z?^~qaY@iPbv`8sOzrS-3))K~MnzWwSB18eBc}TcY};DjtF#&t)NAR z=am%YP>{qwm!}!Wjx8~FY8E|6L*nUYDO>~7xh^d9+yyf4#m(6S26lF=QL&{2*J)Z6poO&2ya)p+bevyHHSel3rQhN=Ge zs1wh6(+cebwk$Eua_RSej6h1hXaq^9$%G}uVx8crFRb!`?|gvO=i5AObH>5|5Eu-3 z0n!5}tT!nYB)d6eXt@YnZIWN{~unvx2QnL0M)90VelE zr`y|=9)1R^*K?579(=XQH~ilX1AI7=^Q<~MN&>_7;6T-x!(^WkM?wfuC5@7@C@SY% zZxdFp*J(DJNGVxcTch1>kE)UV{e6xfKR#55t_(X9f9}5fZnn0zM)cwB?QK?X--hq~ zUao!O6TGI{M;Q^(7Ec0e3fZfFnqRjj?q%6&Ha0Lzto}ZmW-XQA?gYS7L?%F z>pZf#*Y41})&Fbt0D8S1(g|J^*%3W}0&_$Ue_)8P=4HX4$jOSrug_NcZp~BY5Vu~g zDgccLH8R$yv5?y27`3oYny+#FYMVeR*Hp&SeIMrmf5prp@!=23>9r{x@2qeW;jXm?SMAyhe``DjfWU9yRY0w^#v7y9a#U3qV_d7%;{N;Z zXJ%%GQ>RYx+0TA<g;A2?K5Ks*+5`osmaDGLT^ zA96+WSVrsSB2G%8g%-t~1%h0X^)_hg93vypplv}JIv_w-GySCLU2MwSQWl1!raf5K zEs1Ix6$q4;q#YluVWJqHjR?mBf2?uTmul2yOh4~a_DkyX5ygb2d#g`!B0<+QK`7Z< zZ($`Q6Cq>w&%kF6Mtdhuo@8fdXLQkA778j+g`pk*z?CakMtT5w?hPacSw=riiIS8! z3Q_W?VvGj>H7eAIP$7**2AU#kp-b4y2Fx}>5#U8QA{8Qaz-iq?R29&qo7fIQ6!v}QXqEGAA&N{I`6SzQXpY#yr z)dNJDbL#lm5g<=%&CbqF9Z2Wqn@$J?h>8#?SX*m}>FH@Zbo)6X&png~SJInt1c6^N zsu1_Q@Yup28;m9k!_By1#W684F=`{@IA(i$do=qWQpz_sH;+sre?Ix2{*(Bc-}^lW z@F4Kn-}x2s^$*vH-Z@P?6FGqI{?>Ei`f9`=4?$}RsSp)R(XCRzKm9Lv_~#Q(bM;1@ zk3O->{`Nk9^fTYfpMUa?`LW+x=F#u_7$1G?A+lbd4}anS>>i%>&1Qm(HG8(j)UgH5 zEWLqUvr2uhP1f$Pe|u-0sbdSwotdTR^$8N6ko9hRf_QL^!R!b9{QT5k9taMe*k<$U z>uJo6)7fg1mG@CU`2~tBB#3f0cJF1Pc0loU)(1AFpYsNhqBiC!zgfSezUQ-=*m1m@LN@1+MfybfN;dr1qfLl#4<$+ptQAM3f42_PgsZWgt8gBXBnkCKov51j zgh2q#G3cjQW8L9hk*%#Q8jS`U8ygs7M!bLL9Jg=Z9{r3)qcI{R4NLqm3~2!`KKGnB zvA9UT)xyOAlj9N7b4|)Y21UZuWP^bjqo2nZG&zEP_1^a84j=xh_wliheu@wOiVy4` z{Lni%f8E~XJ^%0%?A+err#^Uwjir-(=%WYLUO)JuckuC#KgIdC+|Tw)*V)_YGIwg0 z{$87+KVVm`bNu)zYEuz%dY;u4zlao#k8}FCKL|T+4?Q!z#AlsdA|y%_-CKRE5Y&$+C<)ok?7vG7 zz>i%$NHoX>^wK^$3<*j@y&6#}z-jGiwQ)?4)UhT3)2D2wG+f4X6no$JC?Sd)#I=Us ze@Cc=1lplPM-Y34Q8w^>ap43e%LtTUF0!=8W=U>u67OXMoj%eSk0Po8cHl@SXW2it z1kEwZPD*R}COdc940co8Aj6f$1DHc{lJKKTsU*97!+v48y4vAyy<1ewaYHxlAyvt& z)Fd`TSG4XdwO9l?@*DzF6!d!okPsyXe~H3L2?oxcu5)T4=9ACtAQc3WU@<s~Z{{B8;7_zvyI4bj7trkg=Fg-nue-Pq; z3ak{l5Trto2LWZ&BomT;F+sh!P3cmUnkP;s2;w?A2oYM-D+_LPJlOj2k3Ut7>HO_K z{_4}-T%;P`{p_D@qVx`9Gh?I2KmPHj{8ViDHs|ksJ$H6)(%**60*t0F3e*7s< z3!e@L|@oY$DXWu{(d zkUKHRAj<{TNtBcXfx=ozs|ChNPMiq&rVku*dpjx5J$uiWT$k(X>qJq+%*+h!cKgd- zzwLHg})f4W>M6}8=N~k$Gaan$=5z~+)W>w!y%7?f6Y3p&)@JLpP6O)*c?sa zLB_T2IxEjyJs<)d4)|Bz8Wpd3Vq$`ci3whM>7`NM)a&(#f3zPHO;mxN8ROl3tE}G7 zON?{G+V^66y^JuBgi@lE5BNX}&Yx|fHSF)_6s4n98BwflWMr9PYBD4YC6`|6&>RmK zt82nQ(q7&rTiCbuRzd3aERco(LU++=k79h_?71_gO@n!qMp|G}T&SJHKUBi&>sN;o$Z&wIt~+SMDJ zJbjvPzxR!NPqM(7kNs~)0y~cNp-Sjzupj>T@YhVue@b3=zQLJ=ab_lCTvqV(r42qW zGHM|>{93ckC3z|+@`8KMHQk?nW{sUz!G#BE+<)pMI*fSD$(Z|=B7SYKO`dw*zmgIV zXe~)<0b!(h*V~rdlV8|oZL`CLH!Sd$uRY0ryWr3N{3_Fv30781lE%wt1%V)p6tiDdhk?-^ac%gf8`@9*QB<46AeKjZDoALhM3?Y`{wJ0yjfs;3XM zCXQpGC>pf_hrI@ejzq(er7`BQPN#FRD2j_aySwCB_SoX$B6+FF(v^$7c8Js=^(MUW zkvCsFd*;+*pZe6N==ORSi@kl~w7`@l-83U@e|IVKjLyzB&FPs@;17ep%rknsZ6+HL zvx#D&7Etv1M}mK9sOdf9001BWNklvYe00TLucP-{Po>}Yt?gHKF~CL*Ij~I z5>c-uelaA9h{KRjYXYqawPJB@*4a-~JCc%COts@xZ{7Sn1CBgn|r_1fC#9fLa9&9#_ zJpXE6^U9!q<*9!@yTFy`r6Z3m&PF_Z-*NT^5pHsU+gD%a4X;^Xy>**G0eJ}+e}gDX zOb+)xIP3oOFMRNyJW&_p@r(0FdTTwGgQs|ZZuvD>#>oI5vpu{ka;CUMBl&d$YJ zQsd^$n+$gM9%~3Ln!?acbIibx=7ve&hy)Qn%V{bVqpMK!||Fz1VR4<^VG?qBjC?)8m9^g?@P>VI4v_J{}zBe)`DUD^a z9+6v1yJP6~GUjI^qDZlFf4f(WU^I&h3D>Uos3ir93rXd>HlW)px%ciSovtB_a^Cc= zH;Tin&foU8?-DOx?(_Jc-E!xEb8ndt4}DqR@N42N5cah?6F!oTMys$~-5}vdWg)BBdsZyzNr0e_kU_;tFwgWP=nD zZP6QO;?^zdw>N2g!`u0d)MxsKkG+ZB{0x7%y>sNBe>=;#on#qoKfGg2UubKpgj~{+a2!Tq*Sv+-tv6&g9(%8Kl*id3pgDWcW5mVwa%j2KlWT#co z=^H|8X%DuzcVV2{f0Y{0*_o2d(KK0^l9rj@42>m`k_Zd`9r565tK#7-gcLKV7YR610DO4c39#M9fSJ)J|FzZG|lGs zjZXMpugA{L4nO)!KRc=nPM$o;V2}cWAPk73h$K#EG#XB8f6bjccbK1__bbsJ{1Za} zu^9RjR#fHf?d>5!=`m~V#VCp>jlDQEJ&Uzo@9@`t?bjZA|NGy6v7h#cqUf<&QoEQI zIVvv^#*PG_4hQ^~s3JR0O%Elb)yjL``oJg&1XZFN27ca73C9!ey6b)bE`8<&?s@A2 zoPX167!%{@f5Y2ztE-;v_dO5(4!s_H>zN+#$Mkx>5_sk9rI%hpNr7{MeqIu)1Mh%V zKc}4*)I*O6^wNUdTE^lKtt6Y>0me829T5hS+jj;`P6SL%`WN`c%lllp+Tqw@Op+*W z-s;gw4d+kSsn-;re|nE}U{HE&G_yYd_%xD(zzC(Ie;yxQ3JIf_dSi_7iAlyLrikM@ zK^PGz?JIylQxpZwW>a)J9TxWof{9Fe^!Xa*3*B;+#Xr z8HR{7b+k6xY^}b?J0AKbW+I>5dh;`*Q~%X&hm!!nnJndM-1zHt;|ArCw&2yO18Yjk zev8c)e?L!p{3IJUt|7{l)j`4THS1<3B{sH5TY`o&QN~?$!OgBAa+b8)U}f8|H062I zmsYA}FBjm-oU$-%?f0Fi=LBY!P^ENNOC|`&(*hj@VmIx3)uBXSa?fv2LZGCV)3U~4 zijtdGcU(71>F*S@wg=1{bED0-iHQlGefHTye*vD7rYY0Y)1yjuZ*T8NWw5ca0Tta? zhXG*}5mZdPR;xu21l+lEhoO(2H~!Eg;@D7P%=!I;i`69K;$Seq8dKpN5zZO<{T>g$ z@!^Z>8|(D?eT=mibsScLiJrKmg8&^yd^rq2hapPq3gEO{dGbY!F}(57N00n}$B)m` ze_q|-!UJ!`xgMW={P9s@*uA~Z)Y1a0-8<-BuQyWA8J0=Ec=_E7cKiJ8*Zwi}dYz4p z4gTdHjgg#~;hQJ_Vnl41pP%PiR$z=H3KUVO=%fW{ZioX(tR=Qe2K7)8DMhQF6Kn6+ z69$T#cT&=x@A0Q5L#|!#vAH>5b~a*qe_B!$j!Tz296z2gJsxoRNu)JM9WgdJLlD+~=YQqN|JNmf_g0_3{lcXq!Tf3`{E7CtFR2O+ zw+pIpeD2v*PMsKsy^^_l&Qr@B$Y5qt@_`5Id~&bP`yM&ZA3t}Cb|>TAcQuGipF6@5 zG*bTJ(sk4zVQas~>{y-k^)9E+e@r5kXMBz=z~6n(BN&mkXn{pn=_VnlAi zSUGy93(WlKuUI>o-Y~QGoyGFFnWGmp{x0 zKhnoq%cV<~SXx@*y+3^mcn|HU&HVg4YwPPC^mBruC~?Np+3%3&IYAHzf2{-ZJa@y5 z#gQk05Tm=RRFe)=iX6rogz;8kc~Q{or{oohD9>|@vl!p}&Z+(E%CoZsSR=M)T^P}J& zRs@^ZR+v7!gdU#ktyYVlfB)n=5lIg<3BpY9>n}dQ|M2j#2TiVdJ%Ho)A3st7%r)W> z_-BkGRFW`}qd9G$1=ID2eqNH7mc?;@+NFiTSjSgAIE7M<{r#LQGmMV~jE@DBr6rCf z&AQ^j`^H$`@TLD-9`Q>UJG&W!%wkH#7q1@p8Z68Rt^wki8$AD#e>YJ`Q;z{G%!ni2 zhL60j#>C_-lhboJYuVr5r`PYhEYF!=m}hHi%Nb)hfByWaeK5v|!!lLFk)o6mQyO|b zFPq-!bg0+sVn}cG7gR`6t5K`h5ogb_(i}h1^M9qcXFJ_5!316n<&R?x*_Q_Y;oBFN z3#K}Tr`LNdjKzr3f1oqV?rqO%oIW$jn-*tSdf*Lwtq!@lxR=g0;b1LtkZ zl~R63L0^$ z*hyAd8R-G+f8JS#V;+q6BfkSZfc{R8bFaOZNF?Z1tHm#U>R$5XZocP{-#@rAPB7~A zyWK9|@mh}oR9yn~dY$?Cc~&Yjh>2Q=P=d4~Yv^jPdB3027bS71sl}RpKHRsKC?$CL znpac3``j2xIh@NV3dhWJjJ0rexl0rdSeTDlY$mL4e+(+-Q$QF(T(i9CYu|JP1NeJ? z|AKh&xtz!Uj&Ynm zso2=G&IO7_5F?~wesPxF?H2QK!Dh#DqHws>_+>6@5kh$;UL{zH03Apez~orOc0Wf{ z_T^d6Atox}6j!MaR--~O6!?%{*KfGg6VxPSf8l8F59sVS~4l zzlW4`=z=rC0uEolLzKTPJvQYW4APXz$w_*>p0n1{>2`@KY-ng- ze-_TpA&Qcy7FDd&fV?cJO*Yxy-QjZ@+w3uSYL??CPBBJ+NEzfMgVNH7G{!o*f4S!Y%+2^y@Tq5aX(oyjOLdB(;M(;bNi2v$ zK^RKbHwLuYCC85?6op}BHN^_h;n+wrd-OX65^WvlfNQ`#&Jb%@-##oN8DNcJ(C>;~ z5Fi9%YHG>>ZhCr}D_5>CH8n-E*>pQQJ4{bcv%kMDHa0fg($bQs6lGjlmckfAf4AEm zeZ4V8IOoLF)RgOXyQ0}_x+_<%&}cN++S=mysZ(@r-V|xS&;MVySDW!49uE%Re)bJr5SlOvnZ4tI|fD=(te69bDZ%lk`s!V@#;jzc&3!npeqqh_#pGc&`&!os1~D5b~-2v^`6R)KCbM&ct`mZ7yK z3_}KK|BxuF*KBp8MCFr*9VUU{TjO5`FSuH*F*^^O7shz`HER#4LROYvf8Cp}`hV7u zMg@L3EeJ!V=4M7Cz+nY&{KP4qe*CEsk74uX7WrO}=GkMcURt3)z01Nqr%|F(1^&Rj zF90t9jS&#o>-A8y_{Aq)hZ6^S0IRF({Q6V(Gcmu#-@K>GAoq(Kky0d)VzWK)W1Bz` zYDroc5-q7!iDEy^i2}t$f8e*jHa0WDP%<^9nV*e#>ginqEm)Y3Y1B2F+c{Hp&B9ra z=H9r~XL2IouCoow593ief1ekJj48yBgKqpL zq5s&qO6FULyvS+q?+d^!E-t#~o_|)neCc`iuPw8^daz=>6h&Wg6|fXVUvV;cwaVad zOE55wUgp^E8yZ+tDTpISsQq{rz!sLy`V}alo94(!veq@sE8|th1BVC&%2nmCav0|* z3rlKB;xX9oba~-sf6DQx8ofcz_I8(Gwn-$kUw*FeyrCU}bHn!~LP>;Ggi#>+dzwH^ zA;uD{3#+Phb;McecDt;stc+R!=iWi5(;4vs-uaJivbnj*+}s>-98=nYz?8(QKnD(I z3VQvXNVjfr_k7QtI62D~*AtQEF}m8|v-rwI94MPrZymA%e+a2s37pq$G{cS4LsVw0 zg(?A*MM*v=X>WAk>>OKLC8r*IZADiu+1rzBEN?QsFiw#b2>dvD*xQ#`fsO*-$oASi^0s%=ws*KxC5W$;5hPGf3F7sP_K*%jd55DOOrKnYcal^=Z;W&4ujwuaSm%Aj1B90{8p5?~PJ?7?O@7UV-v)2jrH|)f6-_(xN_x+JAeMXi=s$)Hn2V- zE-`$2_&$8Bv<6dcrwPA3CjRoTo}|^@rM}|9@rR4@>-4 zKK@EPKnZ_hXPKoh1hE6*1fg?WH)8l3wva#Bs5!T2HfeO5Yx{y8zRL&uz846 zAx=b~Y8V^x%Imk$XfQrL&NuwbHrBp}K7Gd)cvyCQ+bT}j#A0Tp=iB%zczW69Heqz7>R?$`Uhi&q4Azt-mT$$QwhtGgVi z+kIEyzDh3Ww_eNl{SCiJ^U>dWBaN9Zt~NDd2TIwby#n)Zo9A|geD3ygloU)iBa{$q zcRg2sJPEv|we?8pv5DGNs#;{!j?g4aGUNf=6=d7(w8RdD{UCe4N-9TG;Nf8+2hh$E3di>4&QT1&mJIqm(zr`fZ<6O3QQ;HT z+S;1vcDwHU`SWypJ>hX3hpqZHW6BW`q#S`r{;{Gg$cutOo-@cY(riF~kkU>2boxCy zMMf(Q**$xbOP~MGoIHJcL&6Y@cYWWhe}3-a)Bn}lfZ^j_ zfkzUC0YT`;Z>BU1jHS0*^4z61`@*vP@-4ow-X-fgF22~oIxtQlobp!XMk1{MZA^&#U1 z*nlVudHxI6x##X_w2+iSp-}#BQ`P)mR4yvkuW(bA{;e$$!_&XQGrT@oB@OZ(Ku>X`jLI?{|!B;>t}$>R%5#Q_Z^k%b}afA|0U^#BgjeUBeM&d>bv zNt~4Y`il?n9j|$gz#ixU46B0gdZ<$YFB3$8pM8$iLX;5X){>W&dKgeD>w`Sj1lnr^ z?pIkWjx-BnF;kNvMd3Jmx0-{^AYRGnr+5yzTq*Lx@>n4O7u zIj6s&u zuY$ifNa+p+bn=vTS)wW~My+?^-+ z_QanIKk?-6enksFU#=q1N)XgS8jXmtL{V1)jYVQvJcb|$s9 zFiQnee6WPy+t4XkW$@t(Kb%Su~PxDaUrFTXZ4dvOkD3gL8{NVTS49zwqy9_l9rg)uZ5O{}%d-$+PP&5rFcNor71Fg_M=`&$~c z+ZorV6Ch<|#3u?R(=&a#J;QQuH)l3se*i-s!1Q#DL6KKq+tB|$Kg+{g4r6qIE;8~g zB})_XEWsiOqF4;aRFza{;Z$ODNfavb%%%6G%+ye0z&U?Lnxza<_w1($y>vh?OX=o0 zU2Et|K`EQaPsZDC;`ZOuY}{1quYdexyq%A)yU91#`lTCG!hv}{2IiKoK7#NJ;>>0n%shs?ma@gZAhj>!Vwl} z1=2`l;a=0$l4(n!ovOMgAyN{dKzSBrziW(^T+m&Xz`#BuNlz0&D~#aJv#I7p<<-kVG4F znoy)E!X$V?6Zj4k%(I+4k%+K{7e}bTt!cB?;wyn4(c|`KWu5%nZbg2Agt<5NJ9;Y0#1{b<+f3r?A_Q`TX zyPx4nNiFhF!rl1VIHsWI$qEx_L>@wTeEa2PYBi4o`|7ki8E4OTY1Abu>&RBNuM@{f^%@$@XTzXg#7?uRAp)lM&dIMyT*TNiQwvf8`d>kBOB}BTI?f zJxn{L*UiZ?gC5rIb{GJtT3bSZD9VjVWtm@S%OKYnV~LeO1){{396QzySEdQDvfPv; zU50=M9+KDwsG6u!`ia{ns#f;!%>G5^S4xEug3Jo67UVV{l_4Gtc181CTev}1J3wJ; z7%N;ePl6{DQhIK_e?M-J20gOgfV9`glLP7_ipkLkUt8ubF3_G&33lwEv2B#N5u!|a zehP~isi8F3nR(2hj};kS2#rR-h&I$$+vu+4#_k5oqoeqZ8d7)&?Y(I|0PmN6{sD|F z=yel>6vRT__ZboNz%EFB*1UD2%TrkSgnyu-%r?8bS~w1o@8PqWCWkjJl(@nk}YE)N(x?k zb%jRFWBY_lT|WOzpCmIh)Dlg9uy&$X3PwF2&srLVVN44~P1(Cm#5&35psbsO1N4fV zEOQw^9LGouf6I$Egdc=}pvcSHzR29|pRITNtYrJ8RRBoSj3i4*($vk5=NYNa$*^R; zBn3KYN?5B2Q)pVjn%z-~4EIQ$kM);XzH6Bfw(a)Qhkn3|4BaC=j9mr4icT z89`ut>JuXs$!FLKOp=6pz0SnM1k=;g?A*E2t??3K)67T+V3RZ@$<}{8qF$e1HQUK_ zcbc88e{Htc>)j+k;^=89%=DROg((K)0>Wm4+YjAipMLsj4qm$~ayvlQ6|Kl;i?)m>9qe+B*}j{Lc=qjg zzm4VVFNyAQf@~k*8fKWd3_S!OU=5Jz>i&gpd%(lmDhl~}Y%Fj``) z#Z!VzYeq(!<-$sV@|sA`BdYC2T1ioKF}6VZBIp3S)(J#J8?;UG2=Faphwz=bout88tOP6VVmbh{t zOOVR#r>9)^oo7SGAEy2;<*&Y;W6NcfNvMkhW`0t#J_7MTNfe~dqh$fLnVr7mo89{9lDFcjgA+|Ms1R)ef-Ue$J zZ3ajIXRo&Llw{YoI#NKAc?^=AecS8Ap<PLW3d*O;t7c{b{)`HRCRwb z{Crpz6a{%+lpkGy7(R2W$(5wAZqbP62h==?XQ3uNyjFu^>jc_b{7x4yFCYvk#zs)B z22qmIn3{LRPCp|tmO&|lcHhBwRWjPIT>LX2Am@=ScirUk9jrie5RIs>@qvdoyCT<2c9%#$47mC=9W$sQHR^k^_do_wXpy zg37h(?&;cQLL0DoMX$9|BK!~;nJU=ydc6%xU)O8?4aGc%a$oD$#t&uT-i&>3rNgOp z=kEfr{2lZtmVkTLe_>GDwr;1N=Da+!SlNGDTH0{S^Lv4fJeGs~5x(%kpYg!1J&Yba z#BV?SG{<)B;=$=@w*TM>wk*%_;QOEC^;2gmx%IEbF-I1iqS4=b&ky7Ip4;+Lm<%B$ zzAx}(fDk@m5YbClkw}WnkPH%{NT7=XgQC-4qR0mr68vBUe<6IbWWE$p@bQB&(%uZx zkMM&s^&c!_NT|hoDNLW0PDZDnvtuGA@FiEKU5hCU6g#)nICrf>Blg%a>4u1A76x?s zIrknMW2KWZE4Q-mk-xnG14w@KHnHbi#=HLTw0+(}yV+dbksy z(9W^bWPlJ7f2|G550FxoIFDIt`Q>Y<|F9E~54!>DKUN)s!m0RLiPjD=PmQGz7BSL5 zcnY!FLC6`T)`-ltl&}_Wc@;kl5L+jZflsZ`L?9W=F0jf)z;b>54U|$Wc4m>%DFT1r zeIMlX#c!4E{v4$gc`kYN($}hVc)fGa&P;D`@(1s^f17W;@;VP4fApr;w(r=<`=59R zpF8sf23pe$yz16(g&x`%w$z;?b<6n==k#E#PofP9fs#(2&=XYDaa9Ea5Y}Lageq%6 zDpZgowQ)W5vi&y{>hyiT0{DiG>ihl%72(Z_!f(c21$FLw?8DXhd*I$9!s;$!b->eq zdd1!bf0(gQ>>VHB-aC(0XYjuJ9}%ldH;}$&*X_qD`}oKaaV_t#(^}qBp5I_R5OQ>s z=AB0>`}^PesK{m)n7%&Ei-qCkYu9-9(WCs_PkfkzKlqpF%un;gFZ>iQy?l!Q{4f3u z3!M(VR*O3(CirXbdKdrkm;N5L{rmCKG@&Rme}XWeH|P_F3V|UAV-S`ig{a{}q{s_F zG-PTEP|8PoIad2*{RNcQ#0y+KHfUcX9n9bdV@Mg04sM`zN?hNDBBa|ri^($r|E+|+ z;>v7~iII@WQTI2zd~TVuS60}$r9l*WT$=9D>E|5Y*P;=7oP6~L-F`t`jbhYB9)OAz zf1Xr4Z=tR%Bf`)KHgc`~z)64GaxcJ;%rguC)-7)*iXJzb~ z+LTrJ_t&T6?6FQFX-kNZ`ODQZ;lX9d!AF4ZQ{r#vrr2{s*BYIH-Unjg!T%x?HPOx3 zhxa+F2@-=3_-oXtFA)3PR|L1C#JL~G3kfQqNzTDG5|{wmHJsc=&W^?m?=Mr)gOKGi zv58nTt1wwa5Kf&(RvbNjRrr@n+S>O2RRu`JHnuHz{+yM!rfcu>p;8v zg~HJrxaZbLwB5a+_XlH7;-uePTt1cjObd~E25PVU)6K~pT|p__G)Afy1_U<(CbdUh z>4ZHMbGT36F<+OQvXO@VYmEN>Xq4^y4$phADGa>urBG@~RXi%(>*kAJ@*2NeUR0p| z2mA*|j8{+wUh588({6I413epSY z#-&+%-sWr#nCI=%A3`Q7>Lj=>2)f|P#*j?lI8?y=w)6OBB9A}h`q+S4k8?ESB>T@G znLTV)`@ErF*<@<%FV^s3r@pc%xzqJ|11IXuxtp=*xE9P^k|ef~Ue7^uKVZ`7WwNpn z^nS+s(yA};cY>@VuAFDz^DJ}WEG)MTN!ZN-75bOg0Cy7^rY!1F=egNrJqkU}d|Ntj zlydVfrbd<&Op=p)q;ngTk}B} z9#(5w+(YCxk^u_H3WlRsPQ}vKP|=vNhUSd#9jTTn1?V%kPo6_&z*$MR z*>WRl+57M?g5~r6sr^443Z3WQrq%p_^M=>oSZMnx4h}lJDOJcx-Bq zqq^Vfb9b-Mef-IufPwB2;rIS(Hs>R*FTxL$`tR2=s>C-ZAJ0E#n-$nykC4tzoNdU; zZ(5Vm9t-Ae_yJNS`fB25qyCI(uLhBTS?wsUm zMqV^Bsovo7Hz2YEQm=<1-k@=okhIV(VpjM30tS%gcLlsA0bDTa*WIaZ)ex$1yeA?W zCNd#(652hM!_`=%B+Yr-mj90m`3TBjg-s7clLErKhE|T}5qtS0n#SUi5j(SoxYoKL zh21t}%U_fqWiPuDu^33kYvJWg4OC9a+o^V0^(asSglFn$ks?||;H~BK-gqIKhQGL` z%ERo@T&0pIz`CSw_eLb)Ya>{Z4K{$0C-t$i^e=WZ2nL4|_82@TKm3kObgI{R`}100 z?_K<2D<$e9hDmM|b2Vo8^}lz7B^xZtMC-R|irxLjAN}@EiQ}QRd$LK%FYx2_xcVxg z5J)qLzr1Fgcp5(@&QX!?Pt2&s#|d4L(plc1e}DoWPv)IBgs@omM*a|ACe!mD7rc(Q zb(mDmP~8h+(rKcqh2+#(^6IOsrOqc(BZ8aVo0nUCMDK!NC2^aTrpk<6qCg*Uk&7ks zT-}|R4n*(58Po&&aL85JxNS2O1EQdY&Ap{eHh=BxjdA=QAuiE1t!V-Cm3KjKh3yXU zeIHQzAemrc0!13<_#F{7;O%?tjp^rq_I+OiUVYDV7XPNV^1jb}T(LZ+bYHn&_JU|9 zk-)O{2e4g#wiqQcP=DoiE7tRd5?T!*{*-0q#ed|p;=M;N_ znWF0=q#8>D=Kx&skk$H5()TsUn^|Mi;ef8M-?MBcNd0sftKOJ>|G6V-bUZ_eSW7MN zjK>gSo7Ns%sVjqA?^jb;y4iLD=G1dfRVFLMq_ehdW$m1#7CmzCFdI!CO^T?j?sUu= zo2!6359DE;fBsE1DonZ)Mn7S5{LCCWq4w8MjRb1yPNA6GcM;bcz;&VU+xMW2Kmb+L z;PAEYf%Q&)fXE>hBas^U(JyG>3y|F=9I5h$*feIi4pQA*pLPt6c>N6xJQxGMF!wXv z89wr0?qPIHsLgf6*|E)ig@GXBeRgLYe{Ck^^Vf7`tghhZOx969FemCV|9#dbZ0^GG zLy@9wc|G+^m;xpz`Ehy+Dv|3LxO4a$UOPWdqQMh&0T1bS`pdUODYvRgjD?w*O-M+O zjWdQVi_bN(xnqx6r^6#*K_BRpeGBVZ2daIE5!{5Hu)#6KQA?h@mgtp z?=#MiYwYep7J*mRq4gV>6{QYrU5ob>^RAu?-z_alnW;7iqUnkSxwo5eRwTA%+aFxJzh=MEo3Joh#_>idT=_Jwmn{f|C1VUH78; zXk=*=aw2S5Wc`FF4GsLqcfjI4YaPXQ5<)Rr!WNIW$Vo$na@YXy{}X;z|Em8kuPyaZ z%cnsetNjxL-wgIUr(|LU>(uIAU{9M=#=Ym}rT+f$=}83|?jfG-XQPt9q|btZd5Zj& z(1Aqdc$&uyYVbVVW=KC6neOTt24eKzxZtEd>{1Zr{jQUkd`^x3$t$rrpR3GK;>b?V zff!_@D~Ah{QnfIEy|e1^<%`bmRf!yf1yiL?P|8R=^n}UCf?=E@Jo@Mn6S@uzVV1$k zif!$BB?~84yGcrR8WX2fcZP zbI8gD*k-#fn*4a1e5XHPk$2YDFka~LRgQW*tq0)d^SpRRbivVMk%$-Q%ymtYtb2b@ zBq`dhq;Gc@rn5_Q5eFecKrRPQaa-DJ_XtYGldf8EGj3X&Hw*(wm{dF>zC%L-R$+U1 z%`C_SZV#A?DAdI_{G}@&4kZP#+*&-yQN2ojN!{K&Z!s%ihKJo0J#e~ytR-V!-9TUq zx9VvST)^6Ke^wu@_*S*Y49*_4-`6DgZ^Z3Qk61_y5HC}a+TWUUjaOJm*L$EXY`V3j z>DNRVIncjbRDkeT-`(h$#qcqvAp`oB;@FY#%>byjUdYvh`Cq8VtVUn$((o3k`zr2- z4{&86{(N80AqkGxC@+`qfh|X{hSxaBPo_jLDpIAEY3_%x>Tr8H5m8=ZX)wpPw<$-f zNw&UceDmCG>*KV66>{-mu0a_k0)8R>cls5kN^#e>Bjz42wn;cz^>1IY8L&5SO&T<0)Hp+0&OcRMi&txaplOduZ`r*cZcsUYp_mN+Y(-# zdW{rbEo25QJfIr^@Fo*YED674$xInsXlUGr-iz?t^g)gD3u(~?Bh1X^4PT{d1wmv%Tz4jznqq?}({k95+ zLar@j93>x_K)0PxchL>f-JZyObHp{Ps`a@;(toc%cq|LM*vn+e+D{m|Fx<$try{wX zTBy330qzc#?3r`EAX(iJhB*C@(@fodQb=WXtm^DJ_cQbp}$-a@R$r!GuP*3HI580XFn z2!%9!i*mz;b3l;OSUWC2fogI9Y-vqhTjvJZv))!QAm%G^7QD_hEAe@V%zKJqHSxb? z^pS_08)Q36N6X0h@#KdSCH4G3bOp6eih$gPlbS$TS$ zFcGBZ)+WpRrRneym%p)I^0bUP-ZjJpwe#0^)j&2hJQ~P`yL=!=Gu0M!tKUs(w|Ly{ zc18%MD?15<@EC5KR5{pjz+HmN3f#sJ+RfmS0&a&uvjh0gmfy4!K!3%sJt!_Ch*eZz z%huV?$$j$t;`0Lg{r~_U1Xa21{p}YmK_9P;2TxMD&tG$&cdM`7NJP&~eYVvy~ zE;oZb#wDYM(PeByG2*Sp^EPN>DN|QStiFF^2klBIGTRm0Bp2@`iyh1!v&noQ^)kHn z%zcybBZ+?$#f~b3h{~6(iadJwJ;psuH+|!=bIp*GXp`$;2?7`o)Rk3gT>tsL5AOX; z#_^DywnETr-+WvHe*qADWcF=MFRr*y4D6-~ggf+CUAd{=uVG*O{Tb04zFkh7HSa=d zeE&uOM220bbigjq=Uo#D%#Xm5mtPr|L(u80kR16OUp4mUB3=1Aw zs`MSkmjj>Zj_QETKu(304^aDmr2&5-ndzM^DzeS(yR>qY&GE&J$ldy`dosQ^uLCln z^^bo3$JZm_f|?0UwM1ePudERyw|Q z4oKT0>U8ZXy)H6j3B8(S_wJx__3FBYhW;|8cPc$bVjxKwu|%aIQWBX}+HZTNyHD4B zZJ^P5K|@zpH?x-R>|;y#`Df1&aZW96Jh2L#C2UE^_S43@JJD(3GXlE6l`)YA#IG-g zS~b@PU{3f(s>W$9@m^P-wePF(gD`^{Zdy|_N-c#pS0wi9( z-a|gp9w6vJkfHw{J2I88)y4z&`BOri!`rNNR;N$Qg1%1(EjsD$(aphA|BzogKN!G7yO&QV-Yp4zNj>|#HY`syE7fFJ$ms_lu#6Wj4_vej;gO{w<4%v#qnoK()QwoNx zi8b}c&G1H#={gTL1ttX1L(*Mm987u%)52Kd~_i)fM%bNdleK<@6H^ zKh4_pmDwrJ4Mb>Vmq|Rxt~ouu%T>-{7#c$si*W(=&M-50yPN1V^booRV>V@700*i{ZVh zsg7OBK7JY8ug?>S5d!%g$GB+GA2PhBZ;~9;#@GE|#tS9U@`WhEnvH4&Cl0U??zua% z^m~K{5_J$>>ufZS?;gWGHq&@rwzCD^FZq|2PMjCs-&Va3vIVXdfY98RqmO`>`_sS3 zL3ssLgN^=_^+mqA_xGRtIwRPW%VBrZS7sxXaU>Lpr9Axlil2A*l^=0_$9?e%p28oT z9eJ)-UWvRmDnh}h=Agke4+aJg4L?ivGR(z^56IFMu8l9&S5A;4e)Vn~|GTD;;hOtZ zHLGh?5^0f-^lDMN`D)xg+t_Dc_@{vXK)vqyE6b1jbTTi-?IAKVT8F)rgVUgoJ=X&L zud3ez+Gna4m+!rUX`y@i@?@_ftkj`@Q#VwgmJI)SGm$;_r?-ALgrEa%B}G865E7e^ z0RzFXd`L1-w8f~G%X`%`k)KCZg^XAa>uf82vLE>Dr%t9ptiYU^AmRrq2JzV1s~!C3 z%|D?Vyc6Y899Du;yy}~IarniYiuhev`+sf>(LEJAkUsCHGfZes0yJR6YUxi8%U1oV zz`u7NkZLno)I7x?DM03Bs<01pVM(JSru&X4<&ClU?PO!X&+}biDMkIX z$@ctpT<9Z_1fKN$|7!<=HKK9btGUACo$h4x=8)?(mis^yHCObwk|rAO-&lSJPr4LMhK%b3cR` zq^C{ei=DKnz%$`1Z28w>Da)9+8}W-La$&F6uYk)lr=Fp+3Ayqzc`*OK@634{Y1A^I zw1R;>RFeR5G8ttt1(Gih)E{T5W@Dd3+7qN5OF7oBleZdfN)NnRAiGnB#M>E1T{GM+uRRwRRx3S> zY0cw{Cmb9m+U&@LlnD6jVbjHl$jYbIwsrKYMg%t|NoY;Mh?(>|CKaDE$$I)5u;Qzp zwW@LI@m+ZZpN%gqi03wgd)_m&xsH}^BaK4B#W#wxecD}Lg2}IGoYxvz6lpn`(oZ`7DqH4>_><~n%PyA%luKd|(q8Q*P z04!%^vs7n#Hn@iEc(%-y$R0I*(?N*t$8nEb9$9wL1HD)wRZ9SEp+IUDzxQuaw}l3- z=IPaL5W=qA7hdeQ&!PG|xA0{@`sF)3xbtY0I+d9Cagz2>YTx*+l1hzdHI|JRN-Rio*+G)6ChFLC>bmTf>kn^{J@-K0S1k{NpKt((4T^ozr3` z8T3+qkibq}aUp^y2u}T{;}CisgKr6_IW#hN;1!A@iCIJtdOe7O6A$$C^Dw=Mfz=t4 z)+A?e2|)6+*4sLU)q%$^!@4OtgwrT)Mtzx%zQxuZo4!YwKh%8}kNXlL)$dx*u{pB# z4q*$iqf#&x&BpjD!ag+E!#-;#zU%4=UbxDLmAC>eHvaH6yzoDk8V&6DKl6sKTtpLo6D_*~GKn?L2Z}Dj z2YYGy>kyljWCtW@P{sDs?^e%fR#Hj`8nqDZ>reK<$spTj9Xh-%H#PVM#iCOSgiTj> zIQx&HUq>_+>Fiw`xSNA*`d&lbn3KjJSF)X#aAgoZoQ@BZ1SbraqNe|I0`Nt##P!_I zq%!-Zy6aKm-i~bV!}AF+l{|6%37TyCT6lPR-mOBn^^jxjUbUV+k(*)eoi)ME;g?V#{W0%;C{j4L`l4i^v%iqjr9VYm94U8M6LX5f6S{j}^y$yd*7 zYFfpt&DpXaKr9P@{PG`mzSH}Gz2W1wM0gx5Wa7xZ5+$c^;^n%N^)!L$-jaxt3TJuu zv_EufH40DW7oYwV6U4_qDrjk$QPa?->f80?c-$-D#_hv~%gc8=E1SC~I+1ENTs8Fz zM8vQs&cfKzwrb8bvNRQWDL619H|Dc5jTE$s1+NDbpE5F(j;6+RAn7xE0*V5v9=M-G za1g8l@<%>0!oIyqL}a?8}iITk2^%wMJJ~fPl$#84HIb7>=7b6 z;$uHUE?Xh}_`2rTJW6DYA}hT>KNUO1mV7tU1_9%UkNHdy!Zp$5(>?WN<%ZfNN(Pu< zA~pUibX$Fpdepk{;8p3b4Zmz_Jj(-|d0So_Q5t$WemZK+X=a0}ggv`w&|IgenyZc4 z^dyy)PNW3yKOrwdShHKbBglH$kgNo%28z;_45I`@j;-HArOT9h7kZ4E|MAXPwEljh zHT#OWtrmR!iAq~bS}C#8#7;bhEESL~B~i&{$BNAph-17-Be;?(eQ~vFBvhZ{vMT}% zGFu2wZySHMo6a7*N8lQi4PoAWE#jCnw7eIP|9Y=u|GdJz`V?Yj#lZmKZ4KpP4~<#Hkg_~p4oMYYrT{h06GhyqlYNu zf|9SkQX_Hm`DA?dIVxP9`bjv6eW*bxI6}_7 zddXe{#hk@3DPonXMUc%(i;4oLL8x%$rrpu25)Ktbhp0SJI3K6KMb!eRr9R?g11;R?jpyUUjC!WcCI#)2P(Y*mun zsKq{KXWe<5Ug+ku^$ZW=UU$efuSj}A+3JjDm=aj7izfasflUqe0-TYZZ+JWH(92i) zuk^(b{`SU56e&kXH;r0oQ*ro8?$|!&Q?eX9p`QtbUQ@5_;TUrnj#c7V>z`7l2x4O;@7GgJZp)?&yvKb3JKb=%V7EIp*K&+}HL zFU?1HV%)@nUO1JFz;Ipk$wKwY5E+p5HS$}kTZ_+Af$c0$q~s~slE>0m>}!DIvJwW7 zBd~5yb=C(cUz}*2zoFZyj7b}g-tkmDR+zLM;%npVUej3&1J$GAQqS};mK3^888P6~ zk6GPyKTWWH2kQJOS;I>tU5R~wlS30l^ZU1jcj!-hf3;LVObf|!xWW(v=N4JPN+nTj zW=U%^PD_3ZMl1|Pn)bw$aY&yGBDC#;umnOLrU0?d^1JJ0GWkDPLnVw`YQKUjq^)@e zPb};`oV%=oDO!7`e5#U4@`@kSxLV}V6>g|`Jzj$etQ8`b=-mj2H{s;yS5XkAbCQ7x z4j$lqbSD6~tJP9Q$X)F>d4kDyNz}t+bNQWbjB3Ahmy5np@80e_U0%=AecxI4AV5&- zK1sn>PU3dvkDQjfbIzYDq7k-v4Jx%18eBKShyo4v(G-XGai-)L24#|!X>Yu zMy{{xR#54nwPL>Gs+l8P|5EEKt7%eiGm+@M&(;QH+F&jD3lDL>X;XD5PqofFM^RA9 z_)7h|p8EtPT-4QPiu2YADbZ|jTJ^ooO|pS?(AeF#p%>!*Vv(`HT0Q*B)4WfZ<}rn8!;aj<55vqn0xdR}e$38;tAL;DjPKQE0QmB(3UHfCL#qj>cjNe29u z@C;096t zc=BTbK|Ca}{VI8K)F4)iO^n&09+D#)`QHPFWS=ce-Qe^wD*KFiT~}C7REyUedl{+2 z#qil8Xgd7_gU7hn(Vf-2YCN9V46uo6-jX0avnGLi@{iEP_TY+JQa?Dv^9_{5rk@Ys zm@W~*=pPFeU`er@ftk8gZl5=6=(?XzoBz>I^$&D? zeH{hfmd?gddHBoA><1qyl+D?Ys8!b$?LQ0poi0H`u_ViRzG=9;gSVP&1iF@oUKu&+ zpa&$loX>Zh>C;~jq{S(?ctfF@=e5$pJF3FJ&!54vn&Q^1KaH&b2u%2s1=guX|5Ty_ zEL(gb{20PB5=*}z@?)_8jEzK}Z~{IfBTds$mC;g<_aiaGgzRAb!kKQW)yoS`#8N`2 zuqSVj76{~|p5-!HD*|)b=PosoA?)xh2_P!MJ_%{T;bR7kvn@-N<4W#ru8cm-m&|3_ zA9k+rtPl4+RJyNUq;xLWtj11tT8RwKbt|H^ez!NQWFFwCOj4c)LR~-C*Px5t~-Tfly_=r;B zgJP-GRW->>Y@~{ta&fEs|JHsPYj?y*uA1CGGgbDa5bRvRq|Grhl>i!s5T#AoK6^~C zmt0Kn{&GEA#ikvAEpHzNDD%1LQ_@4kM9LT?!bx zhYh^$>@^Y)|K7Z7oN6>{L@Cucj5KT{hfCP2k?)k&rEN){{Q1F&Jv}jr!oR{C+}K|h z55*a3n*jj&`P!o;~yp?2RnlF--+k79;+iD$h zMk3l}kjM7MST^A!PdLmM8&7IhY;#-?p&xii7Jd1}#DKW~pmu@sUP}Wd2LW-1&5h@w zrVT{P{Jh##Jxi@GKc!WFB8^RL!bl+TC*p*y9XM{US*G-r==^CsHcTC~6kL(yyt(+E zD4mdpEpFCM#OlAm^6v^Ib>p#5c(=+ft#YNw@tRSe;%!!VOAc@U>+L+%Cpd>vww_&5 zT+O)yZ`u_wiR8bA;nUNTRnlpX4MpxNyw9<4mdVA$@5@foGrMjE`q2AH;g61XU!Ems z;8yPCPITvQgab523+XD65p*AfqlZijB@?8ib z;-FUnu{H3H(;_S+C{;LgZpl=;+g7Y1)VHIi)M6No8Ky$}n~JpfB-$_%f~hPjPdT}% z$S@ij^4cmxdFRF(3T08`rM3L@>hoPOKQ{%PV$y1X z$P^D3UjzeeYKYqm*?|ot_ z?{|#yV%}zcIVYEKn$Y!Vs)!-UeV)F%>DLRYou{@e(A3EO3#4J@peRol3ThN>SaRUn zO08t24Dd3A8aJOgTRd3L%)as6t#L)>xNYVlA)5GKQolV3omGtQ9#ZphR4`Q-L{nHr zlka7iWs5l={>sfPcY|wMvHb!mbxMfHjY5?ieq=J?R!g$fuARHJPWJrM3wdMPJ-4$T zOxx1b)ZCgb2IRmK>QN&jh||=VhO-7>H}~^{Y%>6!bd#hVi1Xg?w0^mJg~+ShNbhiQ z=D)I9iIJ+_fv%{2S!jk2L-=?eO6z`N2Zy^$J@6X(57h^d6)t?Y#&T7ht&K&4umJ%e zlw@zSQDwTc`*sOG+^rx49Snzbe+{AwS07TTGHxS45V2en zVOniN5vW#T!<=anH=INb0mdx1R)8^K83`&6(TpYaBhk27oRD@=64E`VHrxConScH9 zu*42XiLCB+?fzlg^`!O=4u9&M&C3>~K-_(CVs$3|Q_wDkNB4M$JN^Y0pd%Me%{E2z zZSwR9P@6$xrwGqax})z8QWjj2tv)-b$+!53%^0P>?3%ufTi3dJqb~mKU1hJ`FgdxG ziEg4s77V7f3|6pOq56{B9Zl;qc!CY%ntKk&rb*U|+Db(s4qECTV#LBl+u0f-^;s`; zjcjjn+&5uCTf|zvV8Y<(d4?2o7SCB>y00;7kXfq3dV-VBCf7|zM}rNMlut|*IJdZ6 zArq;*P7d-q-AL7} z`6cu51maex5v|aKnR0Ccf&jCbXhV)#uUu zJ7ZJAdTxux%)TJEWEhjF&39So{D%6q)C*UsY|@N(pJ2Z_#)F&Fw}KaMZQc4q)olaS zV`VjH!w339qG#=c?0$VaroMt{=%fL3k2N=_dGz&oU7=y9l}UBLg)fR+V0EK4$cf?#=*= zK%=~=^sP-_c=|Tj0TJUyQ=1DqHEp$trYlPH>izGx$Y%Q4g+eOks=exom8#bcF4Qe;!DI;Xh)z?)Bq%Ww`f9^MY`t0Fe2Bii) zPZuBIlpR_*6gJ^adIP_(h7>EO>S#L|k5s;B;0KMM941?u=iPACdiz#9h$72lNmoCJewb6(o9C@f^g?l35v|JDV6 z3ZP@EQ+;H==^?1_!N*(;Rd~m@!NyP4>=pRsNYl@ao*b5~D+R-AZ&1CB>6~nT>iemC z=c{ry#govl74hxb+W#m*PMV^^u8x7AVCB4th}_foSGbxbhP zgEjK0_((+wB;~=n(s>A_(1J=Mm9xiEhP^T#tt?OqQ&$j4ykA~ac1%5DgG(OaPGikA0{4%dNSuV;Pd0U*{E3nf+9h$VD_k;YC&AB`e# z3Xmli;^e4GG2iC(Ck)mKpT!Af2dQ#ObCHK9-YX-a5bVvXz;B48LFoq6>3BDGA4GPILJuYJAq$=w=y@+c_@Lg!+mkfO}ZsOKDP4J=$X+%s$7PB~8e{Upu1_?>y7)7PW(p>riW>2%xOs&ng!RK@J_mGmyVoS4@KJ=AWn!@}cgJB`=%c@4%c z$*n!aPQmaOEV2G}J2bl&WHCj(icq&$=u57hV+r&7Toqk5NBgjTupw z2XN5QXJ%n3nFft~K=7!k54;!CxL$6G=6Ij;cCpt9i9TZQZ=B83b_4{$qf^Ezt)}h> zYklai5!N(R$4f#Le(edOy=XOk8@%Up=D6wbxFc*-NwwFlc7Dh|;>5xqfDFwaa$C$l z^F(>|2Sxd}l4Hwdh9He&)9I6QhU8$H0P<1MxqlOJ^Hpw5a`S7bNU&;&&Pz})L-XY= zk@OjYX@`>viw;-?pf|3L+`JaW(YYYREkNR?a!nfa~ z*ron0$uqQ%^i7oP;2}U`M?6zUj-}yb~kop4hh|QA#ihh z&Fi7_jsLx$*CTH8sM?Q_{WXZ?^0t1muLH80V{>UURrzJlGzOraha>j{_PFjYyXTDhS9y)G<~&GS=m@z6q#w@1ajku!c+?N zz;?@Dsl*G>^DXOu_UVldlg?9!@S4Y#CjrucGEL^@mAadZ8TIpIQhfK4Wo$7Vb_(J* zP4iB^O^M2gc1SPXz8fF7Ub7l98bXyrl7J~Z7_)D)^l-3duk;Lc(X`MxZ@12o?$$8t z{ynS)r9Ei*-vgkzaSWz10n;J7DeSI4&oqw1Iz{ByxBdPl3*CQqeR+51xC89`(UyNg zds5^5eeOvVRB{I8uhk(g*zVc38?n{r9{GeQ+GpF(K1W_xK}*K~aJy*%-pW}~dNcJ` zD5Bt@H$zpAtF3XmhVI=So^eOy2!Jgz=7FacESb_4dV;zr4B$bR1Xx<($eG&Enmj$Lx197-Ra6NM{rhL>qA-0v z*W&PAPb~Nh!DBBZ)#QP}df4;=GhL`tffY(2Mg{lryT)6n@*J)A({40-Th+`_#L+vMG-;RCAdQ$r8nqQDicJg+ zMQQdrFAROPz*EZ9m1ng4?|NOpd}Qp|+FMeVFxw-{>WVgSGHFt0V^h6R_X1tfBAALS znB#f)d->zal8yHt1ymlnVO|1(hRF(_m)y1q30(EU+-`B?*Q|}nL@f~{iT82dtA5(9 zirw~lt6U!DBF3@{YdSj!ScOj8OE@+HRgJ3!kNZtt#VX?c^M5jbB-4Le7?ZH|r+vKE zGYDjU=a^3h;t3Z0yotKtmbqrNt>O1V%`hJ-_ymj%GL)0dYQ)aMqg3; z9Xj)Wfjs_LV3Xdqo``)Sthq2z^toCM*&@3wt^sP@6 z?TM?|TK50OvwLTu?JBa3y^P2*R~Sz@)h}0thT??64;ssUqSe*Ceu^w6h&>gKvLw)H zdDJ{_f5?6vnE%P{6}<>B4+od_DdmX}Na$*B-8JxeY|R!L!BRWhDX-{#l08hiIFx3ZKVd3D-nNp~I)+ zGb_$rG&2}V@cjk(2U3sviUtN7O}Q32)RVaev|9c=9zn@{xWScI2a!0vr!}QKO#z?l z;U}Gn8ge<7=|`8?KaM!a)ULnb-ZX3bZ05dWiI45O3thnpxp>6^n5+16(X+uNP)UI>`IaO z^V;!HF8gvqu~kMa%>N;TruOiI3qWp=3-f%Q(f{6k?T)&v8wNaH(DF9!UNUw=EZ8?a zrNx=e!KeLs9o<0E>{{OfKKeA*uU9S#HOWBB6*pn_EoFZ88ipU!SP=sYq z4UA#7$ta$Eg$u^$=90$aKzG#8VQY%U)o+dADYC_lx#uZo;Ed;kx#}cw+zc_$->+M# zR-^ynt(L$$qV!w!g7{1UBm_jYWy;}y#Zcn z{TSY~lPJiSY;Y%U07~Wo*$}uRS{g$W#tO}yraBJ zc5Z8G735bRz#+nVtbA2)?VzvwReU&v=Nfn$$-N#@S}zi=d4d;yu@ia>#p-?~dk@zC zSPJua%oWV8LhOroYtPmLff<8fnccztaaxs?LaZMV;tHsKhc$Im`#m~bT(7t0gJ=bb zEZ@*5^!KqO>fZu zWvTGc)BBtRMvQ5lanqED(9^}E8;^(GD?YcUGSqS#%J(ML#{a&Ma5pc1=cXd@!dF)Q#{1m}vvUYa02pVoozLvROMTtSC{%NeN<|e|QU>_Il=4D9Bmq`*PVC_ciYc{wD#}Q(1^EzI+M81zC(`GO zl%y7ZKxi}oOg5(HtSOcJELpJJY~@yNPsz}!P$`oLowAHk`aFs!>u4-mmnkPE{QMLF zY0l6Nv|FRoEx3_b6|FK2@)G#5#(HQ|9k)|mSZ9Rd@-y|ZBJ{=k2*m-mE8v-Yr&b+4 z8IRe3P{VLco2%ZG!G~fg3N$ZwJ#_NtMBjOES#^6+o62ovkA=Pc0_Ast=$6qTVVfQJ z{G7AC-mB>}#~HuKtHxn}6)ZY1z-635sJU09F1G!pQOw|GjJ!5#kWv6zJ84YF5%=4m z%r~Z5qhN5Dy7>e`=>_zlX~csuLtaGPiNpux37|$t-Q19@F z?%|LWxRp)|yr*8;_wd}uf#xZaw%2;$uHNqFk)Tyq=_@IH5+HuWM5VH&x%14{xUeCq z^%@M|Eh{T4{rD&=`RaDMXveh`VSnLuy-L^HoQccn*4A?WbwQYyhwXY-Qn9ESrLTt- z#b-llL(Z+18WloWr9cLRflmNE!%48r-D-n7HVv|JoZ3_l79I|ao$C~aX5!o9KZ9?uvvp!f zi4HzA2+eziXKZdaFsF?bhh`Vq%hKDdC{F&M5-XCGsN1<2B9pJp|A9SYWViF#xtzoV zAB4?%OCz_0bsn(8xpOliaB1gQYcKMEb^@sy`J-YDh>q@FJIYthm30L-w=9}gkH@Q% z7{Bp@B8=?^ZoH5BlXbp?{a&G4>$l}$1#8Fqu$|AhN6f4aG9*vQBRBt)f+J0j@I6!u zeP8A(y2vNtj%O!77nSj23cWLQz9**f zir?o6@CrI3pR8ar+3JB((qG=MuC{Ts@(XO0jSWhYNdA2@mzf6fn6&W<`+WE585;gV z?jr+T*b%(PP3WGIxq34!=<_&}_5|d3M0}k86L@bH8mxYQr!57p7oG~Mg+%c~k5Hi; z_C`~ZA%C6z%Q^U7y)XnW36Rj!pm*-&qzym-YSoqXE*?UH>*tT(BjfEdH6I@bT;QWZ zGtY&{6gcXZYzTWlqvda0NDY$1WcZU`LIzmkH}Ko;@9%@lg(#uo_XI-F@$ddJFM9aX7zW-# zZh9rUH}PYPm%~&VW})(fEjL~eDw22wOUvJ8kPyDZv}JW)dP2k!dqSAw%lLP@JVnXR zDduMq-h(7~I9J_Bj=b?(Db1?<*A^*(niu?5BbZ+>kn0n0YGsi*%mxcQtlKKdnsk^h z?hYiGHf52i%vdhXjxQwaPbx5IqZlQvqD=w;sm$B9EQNRl7JnJ`{eNmf13WfMQZf4_ZQ9DC%XI9thpN)nv`K!M&k=?g9 zbG;_JF2}0)kEFwfzO9qiaPo&zK^%rA@WJaYutm#f-A5C(a;*N8=bQPg~%ffEft&NQx6(HkGmMZHy-e&pp?J@OXsy-(j|+L z3--drum6Y!NEV$!0DJbhHjBRa)G&cV7>~0jm@IRhzBY!f&5T4=vbuQGYIP9OU?O3=@B| zy%B|7QMjqEweqCaR>DpIelc1r^!FVF*3*L5;S|BS5ocA~n=)sfLn~7~_Xm1C?PKTv zqv@)m+UmM3?(R;J;ts`wyIXOmIK|x#6f4CG6nA$h#ogTtf#UA&e)Iif+=o15j65VK zd#|}Uuu+rtKQ+dYs!|MA`FR zk9+-aZqz=$WALuin90(0Qw{$_C^AMFfd01s{s33gaU*nN{AAeLM&BmRn^6R4S3neS zXX`Xq9aEmqyK=NEJQRI7T9W$I#)-8x(0V8DyEljIar% zv)w$u@|erHZaCJ+5`{w&Y}ZHO&V84Mi_JfwJ~sz53BN=SVz8p}SKb$l{A(`h%Oq+# zBzcg85oBazv`r)+7-!@szhiA{IQZP zhAK269B7(K(u@!i{=qi`U-fKF=liM7h=DR^Y$j&{dG;h^?*nfA?ie}QCS;aUJW>11!+c;!X);Du?*n9zmQDm$u}IJ zIL&`Nd@OzCJtI*phq{|YNOv^-WejacUYX`6!5~!^Ziz0Koi~Js;~DbBi6qY=1*iHS+!u_3D$Z z8kl(M+gmbKf*rKYe;72Ny)8h-Zi@smB5s3@{R)7`A!F6b*dD`%yKa zytj8JJ>j9CUagd;24~C@-%oKfdp_g!bzF&Ul@$aouIu<^j*z`yTi>BTmqE$>1~-k? z2PFxfyWJLY4uw{lU@;?FSbR!(ez}Y{E?yVMSvdEYl&{V~3O}>seqhYr3Zs+7glIOF zH+M{6rV6M}1IfJ{i$1G;Cs0N7UEOXdYaf~ODcUOM?%zxK*ZG`Rg(@M8+om#YjO$rQ z@+0cU4)N(m%ByQ}3(*Mt@fdLb+jaXGYJ4&?kN49+7-5d7*%`}(CvH8K&!4q_pWV47 zi+Pm~S|AP<={Bvw97->aQQaQ3qo1{iwmdR&Y5xU(2a>kF8jGhA-^}vBQ9*K`yh9|T zIJI~2DCg-&4k+ReZ9+6iB{})85wYwSgNQ1c>kgY}Pb?EEuyn8b!LSW5Q(&(tWs29} zto+v+;JTyzFaXFQHF=m?ad;HI*#J6JBNP`LemV78rjbWqpY*9Hw3RXT# zcoVwcsd!&mRTcL^q;C^zj%TUsPyfWN$C;oDb&So`qklB1RQdbrBu2Jup&Z6C9Skf;n;H@2S*?yD_p#qBg#zACO86E zUzQ=Fli`iiE1&7|LC-r(9YASK?m70V;}WPmY~iO~>>Y-L%&Fj{;mv)l*2r4dgD{ei z+p(FXtSed~g4x3Y1HGGGGNs`4e_~%yzSy~45_*S4Q1XWy%^_`ia8dIf!1mNjf zv@iMnUbG%!vZ)cc?8M8t`oP3UF@|}bm%=yGvg6HW6wVkx1e}}Z4n1uCEMQSnBU{?d<=V^Abg$Q^F19!}vfN!6T4j$m~)0N9-HRV=e!E_`ey zMLl;DmTMjkKl;*qvYXo{A(=~`v5@Kk^O*oopPPNkqo>goZi)RD^ceXH`9Ofv1B#ij zbFj;Q$jq3}B^)#0PMGqkPj$NW!8Uecp%x3W_boa=-_<$rewi(;pclgTI?F!yeDgk7 z0C=Dqf#>jYbyw7~6GSY|Ju_P@)UL`leAP)wUW-&91yg0K361%6<1(gMTq|OW+h+^0mX+ z64!&F9g>1pEqqqViH2iC=%Z^qO&rrF6M29F|LPjt=|{G@XZ>x|MPwou30my0Ig?~0 z_p_#Yr6p)fdW1D|U4%NX8IOmdfPvw8LrqaHq)Pbb2-%r5z{wwB@5hmcB#z zvSCZ{+8ZT&$3n(pwDb3kBrYcc%<9{|cYu~nSbJ3mjNeXprnATHML=R%5gx?UWs$6L zVsvzL@shSiDf$+IY@7d#)92#Mp_{hhPe3Ui$Iw(nUW8r8{m8znXS#A3SJ0s{UtKX6 zB?YTaQ>u@lNr0|MTg$mR!vfpxG02YF(7lmoqjs6{`4zv$ z{|W+?9DkvzNeFn>1MeLx&6moqVS4V&xCtLUd9l(}%+8<=5bpL+f{){~QpKls;yWXz z;UHJa;)gS7NlVOk#K1)%z8RjFl@sjH>TR$Nq%>IRH~e$#hoNwggt>}~`%T|l2>ZF3 z5)NqJ&Mt6pbi95-Jlh7mH)tu}|H1RVqU;}uM3jG{6!l9zoeY}mPUE(2ewh9E;RjUU zt;q|?^1jG~BACx-+fQ_uG_bmR>V0ME!rU)=Xlhy5U3Z&r?H-}Jn$KrP7WjEGLrHgi z31F~n^Q#D|-zl0r;b*_mV%8<%mUchq?T?eji2sr2*bS^$BE@b% zEyzxt{`B4Q59B#fjRqn6$;KJ{N+uDna=itj==>KZ3y7Y7WazZo6TogUjd@e|5Mhw)n zi+G|-Acgl)B`bt|K!Rwuf2r5|F<>qT&NF1gg@c~3;x4+QTY)yQlfxEhyX%4dzNvij zEsWbNh|xJDK9BngKhh=Q$8fXIG~zUtaHlmN5R?&kk*`k9?EUc1ov4tXXu~YeamKp2 z-4TCFFH6h<0Zfzx)!1mvzJSX~)eZ2h9PN+#5r1h!kEc&=DZr{MJp0z!z@u^$Plh+j zN_SBx;cx0^7R@yPZ^D}*PvS>1F;5@0``5z#+}(NBG%zo}Vpk{9G@l<%=GHfgqQH-TAMJt6ibRdz zxR>D?*IU&0U_!Q6Hs+jXx4YMeuALK*SG`+Lo~Z8bS;X4NCgqbj+iT8y>;hk>($~uf zpJyjw|b3<9f?D-> z$baQL5ygpijVA6N3*V7CDQ5&bEJGCA5yyVpG%X*Zd$zTA0ZR_W4Ldv@!`9pX0xg;j zt=ZQ_b7Jzpf!f{~N|T}VBF)aLg6T~yCEUna(NUC*{u0 z1pB-roC<9KecmYIjB3z#IT31Ci91t5N~9NtN^q!H+_e`YY*Nypy{IRdl@eaL%H#(N zZOD!lY!WRRAgc=m$D#Grh37GR#J8~QgE&^XLP45zV=aDjP3q~j#kMD7&F#)bk4DGp z?Sc8f%%Q?sNWBbIyTyp%IwLI8{_CFX-LFO!*@w!k*z$3zs-=HK3vjFkLIR#AIcoh5 ziX)Tjh#U>Y4(M7&0^laGAXv8bmO_se9@$YJh621IUDR_iT0!Dy4-SmeF*}wvMuBjM z`;+?WItP_Ov_|j(fmh~vrQPSe+1L_;!z_dL-TILdzmk8=pr-|1jbsb+a+)U#hpq0c^+(C*U;2bJcS z6acGkLFna0ET`FtS5VZj|8hZSWqY@HutcwwaCMVb^^EG4e_-N?Ix-<}Vs0Q?71K3*ig_KdhSE%hpv=HcDf zNLxQmi*)HOginb46^-eOIwV>YHhdthO29ld4V1$^y_FWwzdbr@7TTs`7cHGi)MA^? z_-2+q6S}E>rTr5DJwg&{#6adzra0yLW=|r9Y}3<&ZO`^}fUbw* zcbGYzx(MF%>>`bHx}2%{&ou?dKaa{_A%)IW4C#(59d1d%h}eWD>6BZGsVIZhp$0PI z0ZyS6)eYL{eNUabMvxU%2b6$K&}`i}OGOMc@YYL^=#$t;Zq5+qc#sflBwVa8&`0rS zM=^FtLmo^|1NW;;^CyQjk&*xoAX$&pi$$yuuAl)nEk&ja8{{FO+d!o1o8T=Y$bB#i5n1yPTOonyEGUW)zvkHTZ@I^_}`W=iwG zwrXX{bGGx0Iwc2fQJj3MEXU^_t$YtB?#b6huLw`&j-| zgclLY?n_D@;2OUnWBm9^i^-bIfffRbimHCbN3`)Q^5{)i&PU>%E!$!^$c0wT%C5;m zz=(&EgaY3_4lSsX<*YjtkAi(p}5NLtR?|rGBC|ta4Sz2KvJ|MKS{}+ZfR<0k+gje^yCSq=Hyqbcr z=$8X{cTmIvhnN>FVm&b#74nOXL{(gW@=VtUPqK8n+Ua4W;K**Q_=KN7(Mp-74GmZ) z*^7bY5a9X#dY+We#;`ND_zFIOuyo*Xq|O3L6+%9$Xj^lmOdjRwTrXKa&nNw+Cc_uI z@6#NJiJsGqs>Y9}Fz4{~8SM#HYjL2~wZ<->g=N@M95-R+{B)lk52fkmx}s1p{)cDi z@S?4fDuhx<2d*(G(O`o-;#0`jCUV66)lr`eScM&MMepfnzS|~LY%qAbMC@4j`hZQ` znGu2YlufXHZi4xtM@oh!qF;bcAEm$-75kHM@%iZdCQaAhdkB4@j^tV&>0OAU@NBFq_W& zN}ekuS{O#W;Av+hm(Xs_8Ncx9;oJmi(_+}Ka6Zub2W5%ZQDjU6k55k|t11z@^U15L z(l$psFVqu`8IC1=s3CMwv!-s`Tg)o~0G$jV1R~h`Ny;km97e+R2mWzIZgK^6+CzRb zci@`cKllq<-+kNK^v869FoAH+wW%DQYNBw?g()XJg4XI&8E6^2e~w_U{M!k-p;(ID z!6Uo!sHTpNjtuJ|NgiCp+4IIhk^mgu+~f)Kx$qN=HFO=V6jnI2CU`?g<%5=zY1lB$iOZ~9)t$dtA+y+$78q* zvH2E;9Yhd>52GQ;h?LwfVa6C%0;hna#N(Q-LV&I*tsA6PX`brFA-Nw_d<@2gW3Vxa=sUSF{F235VPB}8)Wt|Pd}5-_8% zTo^wh-m$y9K5-?xrj6;axm|2fLA-Ge?tH&+6WcZXBU&u66&$#NGdr*#B8WL{F!=Y) ztwkf9!n=CnWNRjgIrmToD5rOB%YM@-L|iYf+kc*cl^ZQV4$9!siE(BAnI-Zln&(Zw z-wu@-;6VE~5O9c(izC{4mhHWWgH27t|9=KREa_&Jp_7uHUajenTk2HGtgz^%Gcro6 z$O&go+`N&@Qx{)jqw_Ygf00IH!>xy46+yB-dcFR@eSkKgt(}^lmS@QF+kabzDV39x zQ`~f!!JSM<$`houERAk-0n$n>gu)>nwW0kJswR_|uf(V}aw0%{`i+W2A*_@G;hiTY zx>)nCvIM&v6$>O}r^k02%`@fv@OqV1$=s=67w&q#k4Y*&3wZeCe|@-rsPrqZ?wI8Z zKU{fgv2+W-FI`g~X8UW{a;&V!do5_>->N%Ap`$Gd|NJTxL*dCbM6QJ&f1879K;n-` zBJ14g-?Govj(Rm)?K*QjXp*GI`>N%*lFNfc*z_ZNzb)!tz7RnhV8>UK9Qsr&DcwTF zl7kfLmkK-U`|7r3XN@$GY7smB4kre_s8pzQ>K4rbYZTm_RslN10w$Gfvr{=I7fm}a z>=xrS+L#|&jFF?bHXq_-XbY4jk*zq==`!IThQH_4k=k7oUAWaHbXo}OP{JOaP5W99 z!96H!!HfTZ|1#rzm!!g!#*$uKw{RX^1YM$H_JA}iNyAfSNjT#W85!BHTY_z#<55>)9Ghdw*5 zEjM&*cqoicQ2AVGWVUb;jQ_GAF_m{7_CE~|of>JH)yYf|a;GlpY{b$cWl-=wWTj37 zcMi2I&mhf^1Rc_=EDm^R1?(z*F9&_uNu9Y+r_IUiJ zKfZUUl$2_?UL2AyO=~ZZ#@<&uCSW}bQr1ml;6?)N?U#f`XYHJHZr`+R14hmhgYbnn zBPsSbzRRhDjuh#fEb(mNjimCsTb##^l?C)67+gWF9+aypS*CE7lt%1G$bC?vNEe{A zGlzmgiuHR=cbcPR$o3h{Q&qG|?DgYm6)R-RFzE=IR%{~-m5|?ehXGt|V)6BBOk||Z zKELwgR`k6^sBKLydL0v1+xL{GNykrud5mL`*mm|{$X4tVT}&o$`0?sd z__?^mg)E}s_EyVo>8}S#6~Sv@PFfjbFUJ@AwpfY02%Pm>WHL+u*x14}lvs`mmG(ea z2G8(-czrp!0LTVD&O0Eqt*w#&g=ZUsNN6n=Gs&edJ~NHbeo~E=SpJ8qu!2thgi98E%K6PWGE@CxSkxSR~vOrc34mS zuCJHm&4>|%AMhr2`h!{vwl(ci@^hlbEx0+dFhhh(G8ntCJe-#;RfdU(V=t+DR6hW0*($Jj`vL-U>^O$#cN2hQzcR|j@4ME zTrF+|P)@lz95Vue409je#tbTnli1`97?BSm{;5_4;`K}Yo@5K)?F0)qHx_nwx0n8z zR7?6pPfz0%5oj1L&S$n$updHZb2fW_ZwtTrL7~p3mFj^0o^l@o^-(>KbL}5~&hLHuy0J*-VPH z%S;ah^@*s-2sa;XH1d+fa3rBLq!Yu0bxyS@L%)|+QNe@(5F`1DlzIOTn%l9RB{ugr zy;$$OrN5`m4(|TOQ3#D_rm#=jH^uuT1{OhOZB`A}PwU8 zyW>Ca$@xBHa60li-6`yUU^&S_L^Q0 zTE0{`{hC4$aQ_amk)^Y1aDP=P=y_QotKN2g`pd|Z2caO~ufjq?;X`(!>rEn(DNp6p zuENd_OaH07x(*q(wJ$%pJ}3mL3UyYW&IXuNQFI?n$MsLk&IPM)gJno!X7~LR-TWf? z&)54#pNA+r&j z)9r-!5|v&GA4oOCa>*opnj5r#BaIN#;dPp z_hTp%pi_g5xb3^v`XTT#Ufp+c>jin{i)AKM zXyh0tq9b8ZK$e*4jjzWZp>YVC1cE2*P>P?cG3q*Ld;^N@17J%uB`?rvhk@1>z?DiRl z;#@yB*jPhTKb#e{5JieXlBZ}GRk>sL09nMuy(1pfFxEGfK6A?hTFM3Je0^J`S^(N6AmUf`$pB-Flk(2P+GADraw6f&xRNx5{JX%Kr4D>`Arm)QE&-!G+4 z&zh`oVq#dxM^yW{h9)#Ob;=^0Zdpi(KQ<)qSZ*%Y$#x4@XR=IFCXFzJO*#)1oFa!u zr=ED8^vlek6)#Cj(hNDK^{T};AgzjtOr0vkF#N9jV@iGh5MOmE*z{sPr3(>;22iPw zD#nut|68o!-YD5_Ole_;QY0VVXzIJCi`S}pGIWW67S6}GLpW@uz`q7H$D+xi42?5H z$|2y9x>*~R%nB)e0}r-`(3t}dN{$2CNF(kn?QpsO=x0DaJw)2CwM;EJM3q=KyvyR- zVetGI!>{pQ@_(Qvkvo6~sRe+vjEwDP z3S?>7nuMeoaKX&}D>tcmmYnY7Ji%pYTRwiW=&v|=r5`?_3pq1b|KM2_S^dZ3S)=mF zz*8NwJ)8PJ|Mn&MC&ut>bnnkEC(Y7ix>U0Hp}ZBh+1AZ5(NzJ z3H1%F<~^o)(qj-56&2xJm^NG4Ac8ab^A0d5kl5JuC)8H&OFb9-?@Jbt(-em2Ns~Cz z=sY82j;gusb^^z;dOD=~rRN^U|1*(Hz^jGLOO@DWl`q_SMhX@R3?4wb^t+zs16ka_ zN!yUgn)msQ@3w1z=JupWKkNE9Qg=Ycz90C+Xo$IT#(1y3LFdwM{qp#prpBMVbM8~u zsfYhu#u{yo{}JQqj4Wj`%6Jl?%eIHU>(zw zZ)vsg0q-NP^ysV_`#&HyQ^~;sA=}i7Y>@(iHA@teD4pyyY(eRCJo@*J-@2=KU;s9!W_^n zpk#WALlZHx8yrFgr11rP z3;AH@mp78iD!__bL7ukL=K+x|Fqx2)EF0C06youK-8`&(4Il8uqQQm37{ zHzZv#&uv{&oMwUOXHpb0UZHz~Ht~fFvE3uPVe>S117~;?A^V+ePkH&`+S-`~^Z+#j zXONqds`o{(aysi~w$Ns8Sa*TR#mgRM%ENfVFUoc+0S`n&y@&#OSVA^7?kauWh0Vt8 zH`!Q3Q^4`}GNSblOv(F$g1AA_*Jw`eRfboKIFM)G&F-zl^P)xEWk0SeM=?8E$MC@} zC{FaP`H|zsV1l=%vvHz`nRQNYXx@Y0&p2U>+t^pnR*?U73+*B^fRDqT_o3&ycGcT6 zjKGp(bzre&@Vlp3?Y_GYzCHOuYs&`{Be2{X3_u(Dftq@dNd0r!ab)3QJ~kGzdcXcy zXTWpw_5<&f2s@7qMC?C2x$NpG<6>8J-22sk=dV#VooA*njxLq+GOIzm2bJ@I*v4bZ z_@{*Db>fUGz<*QxHQ^CVxk7aX6x^JxyYIc$rvI5v3Gpj1+06xro+`<=W2Vn@A8Qo5 zfM#}!;&zIFnZ^Hpna@@v{njnqLd-1iWIHxnooO+poJC#RfU(eX%Dq_6&gWNb$CCb4 zayhtu<6SAr1OGEf59#HYZ2No%DtRwYLta;qHVSPPcLmcXQ%aN>|M(={6}xT}u{R>=vrXxrE}y-g+BlA4X5*?NFeTq} z{Cy$T@lB{nha?epW2E(JhR<*Nmt`N1NKByBGvNwPfXrD!02=eOTR z8^L;!>!#@Q{(ICc|HqLN_NC|~UOa5`!FUe3&)MNNQ0^Wc$tDl4>sv)&P!m~2YJaRy z9O_g~u<8oR`b)O!`fBXH$<2yKZ=LX^!>8Ed&lsoZ?E&%+VeflKrqyxJkAzXt1kaDa z*R_)O+MBbXTiqP<3R1p1uow#6QzPNa5Lday7!B?YSY ztuwq%z0WWbsqT||twCEGD@qnS<>+CMVJ$4=a>d#RdRFz`HEx~>ZQj^M)xD*o^fai0 zH?NMesTM!agI_4}&*@(Z|K`O0#P|^(o|9x&O6Mhp5Pmr3l+7*t!~ysp`z82^*!n!i zbbpOtU4Jp&So33L?;_)Gp1K%Z9wnsscFPA7fx*=E>_718_1I(huD%KFzv6$1+1nl^ za}zn%e7P%8A9f@EmN*iM1(VY%@&8t3!b^ zY0N2nCANdej%wmRe7!~b>$c)Y`KIQ*hhaN|sIPDkV5Hv;ko|Mnc_^4(|IXe~x|t36 z-uE#I=Y>YV%0Uj~&AR4O7SX%RA>nE;Y0>+?_Zyvj`^^ipF%~$-7U}rNU|y`xdPdd! zzPVdB6|6(5Oa>Wc2nQG0=}qjP$YAIaEz@T>=BeQtd8>c7w<4}LfRTdh;)zh9vAH?k zk)Vv8iD7^~?@#+=HaiCtHviJ!pBblEhmv61k_abJ+lnvRYV;|5bbamw#u5xRry&<6 zTC8cjM{=UORFp|L2y-;_-30FUTGX42|6^S^J`N0o8q*1rR-S&ITda9@H^rtbB7X)Lk6a4G7x8yC$@*Sm&ju+pwR8 zDEy)oGd{@pTzlk^geEBd*KNNL&(T%_G##={7cMzv~)3|%*D}d33Ul&>DGRC5Fmsg6*hOK0er{|1LCKvwidb_L4 z7pLbk5(m|nk0Xvf{M>4xK^1nDZUKCou4l@13+6HMM&AX|S86$!gwP*fHCW2pFcm~S zQAL?v!JWRe)s;-g_L2ctqmJJ>En&6H{J2XtS(JW-S{c|1m9nf{-UA`!>E@Nv{Tt;! zs=t0;yFV0_rW&O9*qrti8}N^i*%f_51sLN%nv8WpTyO2&#T9gv{b}Fj3Q-ZTXLffj zJDsmG{4eu{`MOH{FU7szqBrjfAW2AA0bUw+OS$tjb?x&8=p6w|?^PfVdro=jb8(^w6;$ zo5lJ|$aI_uBoa%@`5(>F?MaLtcg=qZ%^MBs-HoRcTIH=XJlSh_=^S;fMt>m>#RC1C zlAYE%?`ppe&0AU++<@6>eKVi5Ru!EmztO}U!i~6EXZm9__JwQnZ%1usneYwc<}*7= zPP?Sf^|xC4oQv^mV6^Yvr}L7$`8afUqCR+=KCC3WLHH_YKc;E#lY35qHD2?!2{%Re z&_LxI_UvFB!=Eig^ukV^54A6KbNlV8=^ShjU+&VI^La#P*c`? zhS9y&jbBvbp`*xNo9gz?J!_o^<R^9KiBQ_1^Ujj8&|GPOtLe!y;cL?djANy-v;14Wvm8? z%KRFC_LvNq{=5IIM|*D3(vNA5efnkIpXh0cz+H3qMCg~0Cw!xXLeWl>@Rn>U>>%w6Y|M`;jfnNP*Jr=lBp5{P zZu^osMkDa8c-Ob)cE5Ya_InmpYDbuJ!^V^4BLCyZbXk=~;rDWjbBcJPXq?AY~j zYyl$Z+_0?0L*Qbp%dzDh7Xnz&0`3QDlq;D4tEZ|ZQtgt%LYMZNPT*TIupjKxOp8|R zs)eg~lTiFsS3jMWsN%GEsF+!<0=Pc}r>X2m@vO+9L=Zi95q2#s@Rc1aXzOS%HaW2~ zS5&aDvT_@xYs_mJel|1u#0TT+aCVcOC6B~8SXkCxU0zyFq9agQhYZa}vu`ZKSv(D- zi`eiG#opxNfjVOIiV%c51Fc@k_TIc9-l~5=%G?%yehUT9Bo?VE^p(|T=7MP(Zccum zizb^Izg`;2elB@FqKB5305>drG{wSBZ`_<6h{_c8%5GwBpIBJn9UB`XYuV)(a_mSh zFZbD<*YVj+)PX zTXdN|yPwts?}h#Dv-cNg(0?&wLJQ)Tlf<4OpVTB*q4(W2*8axR)6;03tZQ^^ZWSmn z7U*3q2@Dq!y^Tm?IW4-j{qquK1m;UDk;T( zz3>sTc@aN}nE8pJcK}V;?-+UvG<0X4N#&khBkI*6Dn)|(%>$_n+Ah71G^g2;5ZDoY zG7!ERW~9~DwT?V`oaA2Lcf$lk`ipKAwPv>NPWHwyMMmp{a9Cd1-xGmvWw5Gm3rz^9 zxz+Zb=WAIU(6XA^gVDglg&Es_l@kD+`A4R-#AnSAv5LfMIYW-E>ZBDzXTI51c~Qf# zdL2Vu&q!|zbJZ=>vOo@;zvSN5+Ls#*O8i*OyL^(yQimS~T&@_{0*<*d-|j;ljvm?2 zaj|JSC`;^IgJi4mp*Ztp)PyjTkQI2S1_B5+>JvGz`=zud$b!E3ROOxzt|W@cY%3dC z5-0FJ7gD>Z$g!Hw4W<6j!I?u{(4(a_6xF&kQcMh3Bch@B_#}2Ag5T-Bl<;|iLtodX zSK$AL-HZ|xfI5$FYv~_lSWb>I@`^D<-EINJ1AX3VWBE6a16`x+X@n5n9xZ&wky>nC zZ@+681G5ZA0jzt}yb!B@t__`|diZp@ymy@;sl=y0U452n58*<-Ngbh_NG-W;=-`?3 z6^FF)O6?z%Bd=x~)%pi{(UFFp?qmJ3Eu_)Ksw(YE0&FwY;G;&|Xf3kY4?{|hVF+ss zH&>5PT>ox1+L`;PM(5gYB_){$m15yVVk2XdCKCyz(LH!@16nN)D`7%VrwjB2W0 zAyPaB0K&JVK$In^uD+g?pMA#Xjh32sW(T7@&fiPj?^j-LL{Jsa_g4$&Z*dMrdfW6A zuTjmt8&Tt3Ht0!URObVCLFIG&J{AOXZpk0TW8?&~vk4dXz zRR!HsW3GFIS{wT&Lze7&Tdq?cdpnvgPg5W|6uZx=S21%nF3(xa!tbL(E6>v%hAX46 zpX^hJKjixy*$=O8DaZa}(w8yg=13jR9VtL5=3tBzm$;C0k$Zm+wkpLS_3wXc5EgYB zzp)5s6Q{$LM;sfz0LbCGQ+cb(kb>ij>D3W*eAAbrtL?9$@GodABt9b>g*T7VfD!ak zf&HyVvE@dddSV%xwqM08pE1NaNtT*jiQy%{wZDb)ViDM}tKhg@DhED6Lfru^M+R?b zWWM=9`SAP*NyhK+WGKYOO|ic5Z%yCozcpZ6<5?%87ib}j(_(t#i#vaJ(dCA8a@174 zF86M5oF)S^2*y0Cc<7LWYz@s*s%uG70KFf$4uATw4qIbSPl-u0mMg2AoGl-jE4WknRzxU<$|b&Oj(u212wo1+K^?3XdiMkgG) zk6JAkV^9ZS^y^~qN7cm=PSsq7J)=84SIEij=Ut@SXV1@nwyLk{sk76_+zP6^0EB8P zulEL&wabUobk+~1%;$Jobb9Ll{1Gmh_IXu~=3McZ%BnQ!OkxS@U9qS#A^30665@^= zQtWf*|5K&+sF2Pb8r?{n17(nl^Vh=ujS`fDc~^5*xIk&~+R@TNbX8S1v_W0Rsemc- zn$faU>#ysS>RHE1x3evh&Bl;+pnm3eLt~^9h(LaTwAkiRE}F_#=p0wjVIj6Ib^mwn ztD8@W6jeG;c$>{X3N%+LCBdNs8Y&Ja14H^o{c655P)go53x1}JXjKWHctf{VMD&*o zrCF^(1(ISM*g=DsA_Qy309ldg{PFbps<(TVvi{fr@wQ|tX(7hkaHekrpW)WrCVI+D< zLy?Ac;!jap!^0%5py~)!yZ;aOeju$YQ*CCJ4&*ml93+to@V@- zk~4yT=)Ydl40QGX{poo$@(&9h6XJSBZta~u(4R)n-)EsI-sgby z_cKwy(DL%;(}y~W$5Qt1|B~bLmt$C?8~U-lZPKLQORk=AXGl{oH#O}s`}@mLtKy>9xU`Ukic8I^JF_X~1ALh8Ld zvP+U;71oMA(64}mnG(Wd3HN3UlKKrr32BLLn{j0hWbx*gXqZM_Z)#I`kKjpZe|#Hz zRZYZyqjU4nCVmp+(@bLcSo_$791A5*kwh~uMs(zi;a`}53>@o`Is$8&1zsY=nXlY# z2^H0w<*QbTf?8;bEcGd?C)Sv4xU}Swvf$TyDDyJ3B@~77o40N)1UiQ zu|c0RW8&#A@a6IM0v+6Gw3K0|v7aTmT(t~}mi{*vqV>CLj@R7^twfSfV5Y)q+n-Pj zN+zM*5GNZw1B30}Fw~A>M1KE=i%hZ939G-!1*iV8Kbc4bixZ>Acm;ixGm5LeH>3)u zdA9NlSU>E;Hk!A6zEjnC*qi6E-M`XSoa1?YU(d?g24)=+`D&`&{wxhfOj{h@E8$xF zK=ocnoY(rq*~BskMGN*pBk>-;fbENg>z0e+CZHQO|3cLzV*W5gqCsM(4t3B#098Qs zD_z+04;(V#9(ect=6*Vg`p_usi^fil3l>y}v%Dm)(j%aUdbmNF^kJk2n2cETg$V@G))7bTvVQECt*^h8B+%euyd&XAk+ma@%_IFht(D_AcqoQ{=Kv(}En=>gE1zg4rg&4FCvS-(%-<-l z+QO$QaWj{ebf)V6WYW1TkLFQ1?~NY|8NWY7F4qoXeH&W97rj4!FT;aPRVfKDt+9Ei z%P|RL9~Zr2lt3b~X4qY%{)UOo{427|rk5AGr?f}EM~iI$g;oz`QXixGZ0nHQ`Vr!y zx&Z|T`+dKJbmi)J%a1H3`u#MeU*J&IOKkPfB&l^(l=0rVGTy0BYqsOQ-Z^w zvaJ$8H8q_TkBZaP3D0@;`y#$Qrb5u2`&h(Imp}pAWmA{^=x6rl1Kf|P9MtI{HZe{x zs_sCun=)6}7XkA<=^0aGJm~n4;8(9V10G;6M-T@G+k6}>w_7VmtI(hRos)u-+)nV@ z;RPG=x5g{?&$HEa7&bRfTRjYmVt>9hjgG_dPDHcX zM*66d%-KpZuX#6~^70zw^)U2E{bibAvJ1132Xu0c)oZ4AUv;(fBYEg(3C+#FFKhtJ zd5OcbPu;@{!({q1Gs0=5+4}yWO^xX-A}~SVN#nh_oaI&fM+)B+Sw|N?EbJAYv^OV* zjyZ!B%MT;u&nXXzU3YMAy)}1|$`&$Qov*QprB!uxlEFGA0)4Yr8k3y@yjBVIHQ7V> zgY4?B4Gj%z@IFo#aGP<82xz74Jwp@1UA8oo&+f zg7*1#PFwTf!aurwHb_ea_xU+h?DBQ&xbs$iE{ZrNjAYz05<8L#y*7xdH!!Piii>{~ zL^zT!an6cReY;*`=6{I#e^tE&P#sMZE{wZ7!QCxb(1W`}a0^a=KyY7zI|&4r0|a+> zcY-^?A!rB^oO3wv^ZxbSx^=f|x3;=xyLM)0r>1-Qc}64Bwf)fN>phu#E~@W7R242m zG|ThHkChP_+HT!QATp^5_4il{iEs%1by9>3N89me-Zhwc(uUf`Pb}SA@jsfY1FQFq-gM@eGK2i9bvo1Nu~qe|3d$2j+uUY5JZ+ zBp-a-kheNiyv-~-b>H9;rcXn?D>ISh) zHQtd~0d<{4qnDn>E%%*cd~=}jj34QYGhrv2Tm9F@DkH)~fDZ$`v$J!Z*i8KKX3B8> zmen6uKGt_N0Qxbgs0N*N^H9iz13med;hGV94)3(KiL^Zal<}Nl)|t!Dn~kftp!-zR zhmn(&hxS_WzLj8T#Qyb>;cK}6#r*=BejjvoXN|O_Uh+|7fgwd?36C}ME6(g~Mz3(U z=d%wvdiax%>oY$)K8@p*-%9^qTDVEChym7Qz9?rgpfz%UE=$L*B8EI*H=PTS%dQE> zwyNZN{U43ce6%mQ;WCta$VL<_@ObEN>VCV5N5bv>TV62Iw3gUH3JqsWW6WgPBPvhE zQ|kXfHL>-cd@W*lB-1z=vfN8iTwnfM=MgUSH_;}EI)_*S&za3ZhUm`-25DW z7FYMj(?B5#^J-s;or%LU_K+HX#mA8@WVD!dde`^#NUA(euVjbgWvJ=p;Rmsi&R%ByecYLXpcYo}T^%rcTi`y!#52mp^$7VSbPyf}B&)zwqzVY$Ik(HAm3 zQdZ9&EN$6K;|pw;i)CFtqRN$!RG2nhosWpRpxSerA5K?xwrvbclDM7!VcP2Im@fXs zd{I+OeaTPC<8i!G^QdQ}+<9BRzCSwh{o`?_&&Gz?q$31Tk_4&SdX9gq>k#aNdT51e z_YD|#c?J(h=LT@exADU<$&Ep@{PGU%%OtBj9GQA;tje>-04-ma z)`QMomo06@W4AIUho2^s5rYQ3Gy}InPKm259APx`tdXV@Vs24>RV0y-;x&G`^dEXS z1@})mKoYGqZIN13VHxWjYgPm*X~|ECUqe8!Ns2KcIeWP=PX$H_h6{1pRpd0$G+NhI zL6YH;J-q`p!j<=||BT#PXIJpQaa6yn&C<`UnkO<^=M=}5==PRD9@#;a3wp0a>k5|T z$>wnJ5nsme7`uM&6FG4i)R@{_)G)xL2pXOJk-IXixO-szFu?%V+^e70UtZI z@g=}lbG>Qs@4)oTXpfvjcI47Y4IPS`#34`IyU%-awXh>AII|SoHucHc$ke5MC+8Xq zWZe(LT3ki~7-kFk3YjkcGI}}9uTJ&9Cnx*I_8B1AwKwo}tLG<{$EAzBL)CklgUs~l z>m^+l-`(bkr^Tc51E*~u6AXP~X-5)|>pMudWHrU>*zTMeL_8Gv7<`*k-y0I|4WH+4eJhry4u`+SVHV2ob}7 zlgpLa^l$74(kQ1($Xy;@>8tDreE<%{5ZY(LJ%Ty`cwyCbzVYO{DfE$wRj;^7tT}~$ zU>}vkbe<7Z->V(hepj^YB&49LV*7_Z7u@S2Kay!B|J;i~)o-M(E?!q0>p@Evwh=;|%o6$%rZL&@YVM|ADksH!i`K?tlXN4x;c~oC1Ox|?mr#Df0z=yZWvKEGotXSR+aQ-eX3sbRlsRLQky0P%u{D$z|aF=9W zWXdAmsgxol*&Npmc&bdivb1UfE)|R};Bcc!43WZLM;erS3orY|uL#n%ugl>bf2}bU zhzZrL`dAsJz}0Z`FR|8(KlV|y2!EMhIcu8W%`9@fr*Uh-Ag>1U`o=BPFb@g-mCsp)Q4Yb zr^|?y_Dj%%-|l#6o_ah0y|~<8nCas~ z1^Zk!fftUa`)Xol)4y{e@FHAnq>peR*b;6wg3sxlm>$*QC z4CHaD)XOO*)DZ3Wm=bWg`cJcmp7JLrzW5#y?0>rpFt@NW5pNXylHMXXt*8IQ9>798 z1FJWBdj`A9U(+RfB0!+#^-Rn`{aQnCGvw=mysi?W% z!K7e%7Y~9o06@9A+;$0)f+5`8pS%Lkw+Kx){yc=?ZVhHuo<0@m-s`+i1U>!I{M?Kl zUG>2%qSDD(uwPHmN>^Nl1dh6x@lK#x72hg4oLdl2{^AI^Pv#qTyJ1A(Emej}U2;=U zGQJ2!K9+V6SE?VgZKJik0DLnWy0uMgv}_rEc|)@$peQYM7FMl-W1HSvEc=g^i`}IG zPDNZQQtT`Bg2t>vAClbZ5bK}1xt+pcx$JN$aMG+f+V@EI_tMDm3eGo%F;!=o{}wgP z=YjilpYfWJdLnvnroNI7FD(bFk#!v;?OGh5C+A{CfKX&^iE}+G;eB0HRnBuN#~a}1 z@s`g=V6M{bwnpC%-B3nTqT9mT!rip2<#E?wrTsQDh_bUQZoJBB(|?kip%!*U@rF9* zScRWB7mWh6)Zg0QMR2?C)H?Q4e`@LD2nDXIm8NT>roIRPMp2CMw>Kuj5-8F zo}OkDO2#HCaNBiaQTQna!@yGYEaur}r7q_eyXBi@83(bfU&~skZW8Lfx@)daS$5X| z9^z*vWg-?7dnaSCidsU3UMV<^NZ|HqkDT;Qz#<_P^PZt+ z*+vOAyygLX&0nsT(fLNMZtct-2|1n$dRwz$>nLJzPiGcVm4Ii=%otswcOo00>a6}T zc(ceidu@8?VaS|jF=Jyt7z&wh8q)G1gSgfO6eAP6`jNn7T4P8!YAy`JJ4fT`v{3|QU~ zVL_c9hCvH|cqAL62uG6;FM+s#nR;l=k81!BeF=Jc*ZVL7KAah?ghY6QAG)b#z-GUP zSGIPif1_T~5v%2j1VpU6ZUX9xN3X&6nN$SCr`qiY6qb99M}zIo=z1;n@E@qm628ju zY-6R`e9MfDBP`K5uD`xlm-EI$6&XWcK2Cn7??ENU=SVZjS5e1eT<(q8$Ed{_C>F2gH|$!L{EsF!JugN>PpmyYLP48 zz8(}b1xfg3YE<$-R$i_A<-+&u*@Xw@8jj!1lxiZz;h>duoGBWG&~yDTKb`Yqpmgg& zMkV#m7l)1exAVvNKY^Ayzlh>p2c>u{hwBKQYpIr9>rw&fu=$8Z^3tpt&<@>xhMdof z;LW(6`u(=wOp*Ig*E3n879d>t;KuCz|p3P`P-n^JRGrB!GUjQG}98n z@bQ8tPi6CuQn_I8g%0^=Ab4n2{Nb0=9d1g6xppz;m!C#sC;hylApLOARSHl?BeZtW z%TJb`2L^DzRA?Ltdw+TNhmTkP-OFE#_1&jzB8MbD*n4w;Lg6WesNmGKBV+O#k>WI& zlkJ<27)?xcwAWr9j{MGdMhr;Ap}4Yd*gs-?H%fud+SV9K!~J&7JHmliKI{5%$^zNv zpfJ)Jld%v}hfA7$Y$?U1v#RPhTmY8aP|949-fRN^nG~zwJSH-gyf>G&5){#aEhQM49UF%9TS#H;}W%KLb-Dn8$YcG<+df7NL3#~(*LUtCt`Dh%Oi5SI<( zJ(P|DFe_#$@GE{6zehgCGv2=S#gQCBs?aeivbFh=dU_;u(e;vx;j$io2P&%HNM-Wg zxq1d7D4pu)+uUJj<_ovuxruZr@ygGxq@7I$D;vNP*rGOaL^vb&+yW*DWl0XR8LI<& z)Y-K8O}F(USIq;0)lgdT$(Jv}G$n|Wky-_XhD!u)Rxa*m&`KI$JN;#mvn6b7kwxzk z1T)yx#s7dUDD%LT$+!A>7Julp7(pO=7hvs09}0`Bc;~K#mB3cLv66w?exj3PKC3l! zgBDZX{$){$E+(egR*%K-R9Hp-|C_zB|}cb^Mf_c09o>OZXAS;R==crz~PGY~SH5 zPnZz+ljfHTqE#s5)5%r_)T+2i^R*RWw}RE_-jsg#wPyY44HN8B82`el{4gy=RR_ zD#N<(^$k{-0U6OS!~bIB%l^lSmHLh90`yQ|A%ny`!st@?$SC2udU{s6 zIn{bkw@JJB|Ez?Xl9;Y34vgP0XCJ>m@aI}U0h39kIv!*ko{rAls(vdGL^-;G9SI82 z;aU6R3_?a{dW!@xsf*N~gSnBMpx20mM;T=4`4jFjP`76$YmUQJ+2Ci%NTi~|$Hyc5 z{g|;ypgEU}L&>(T`E05T36fl;Xi$24do+_V_oynf*zuJ2^wjb6H2-YE3`4s?T15=y zH&RXAdn<4!IsFhaTo&{iLc?q2Lvf-VGR+}bhzOA8gM{NX*}t6ZPI5%&NU)+L@oRC=EjP`P1{GN%)TS zw;LG5<+Ym?VB+geYpO|K44<}&<-7nL-WiMfqB!BIt_tL8+;LRI_7lAHB6caNlYvq- z8I&zM{}PN<PE)ahFcKcPxQYb}OOmhGQTO$41Lv+ZK^C zH0Ab^1o|`u^P{{WN5v{eY89}sI1Hbv3+6{)XUk^qZvGuaOK@~zOSJLxh7Jm(6)*Qi zTVjt77`63CT`9kxhdF&*oujm_Q)n0wY%=>ZipP)RkW4OJcKw{HqO3KPt1bh&It0cx-T zm(qx96+X>^sa`di`55Geo5Jt7R%`L|v0lbO1{aS)5tUUTA_ELqoKyrI_8r`|xX<&pQRC5(RO8hNJ3#&%!)*s6p1p5t~UPBbRH*8}x_1*~@8L%K9xJ&=9!``HfbZ z)r8*7F~30C$}lLuAKlH~eRE4kP`wv_ib$*Namn6#W1PL2`fi9?Eiylb4_@K>SY09o zvMrv%{w=9ywIPU4p->x3XvNEZ4Ub>pi_Mcz3SxTJ3K(7@j9!SDjyG1ltb`Ik@W#t> zf2lyy5g&qAM|;Pi_pafU?{Q>^(u%Qk-E<8^19^}?;1qKDYZ>u#ZLwWH{Od}O+D$MW+|6m+3#d`Ri7fk{dQ-}PzS&9pwA6^*Jk4YctnhYli#tD=?B z7Wg8$lfyVvh6k}fy3WVNS0?s1%VLx24Nj@0i4oEGyx>wjUNSViWc8j!~$Z_C>xPve@^W&pI!JkDc?FyA{8^Kh!i;OaoA;qR_w1ql0`p{ z%{bY^h(;gl%{L0Px_e4sE&0UorPy$3nY`{+UakKAU-c-<3G#?dqlJGp{|-K*Zq3Ak z6$ZWQ4WEdslDt=G} zv9rf`dHs0ng(!Fy9QSJjTh}YuWMQvjMVQ6x=Q z9D*1tMCB3cC&h$>)yEXuz5>4>-!EI*Oi=+up z*0=h%?kNCYw-p5#j1XloophL?n1r=>aBY44NSVjn6Fu|+4Xr{CrwZ^2(*MyW$h_A!6T7iTZoWNxAL+pCu}^%t(q%3WQVt+MVhD^g%k zQx+JAiqER0QCyk%mw_iiSGyg*?3x>)pVC}9oJxLY(R?H2o5d%gm0d(d$Ba$BU~Uoc zJf9b7n$5$V+pb*Vs(7U7?Hhd3g&ddzdeMl?_imuYti(D^YX2iBxRQF5{y3Wa5mjMk z=KS(WEjZZhJ{`~8smNa1G0&f`4<5+p~6)4pYX65lXN;f$7T`v=8{;trLsdQ(_c@?&mGSs{#zQtP%5XMz;n z&$Mc%7+<;op;XwiBWx=`FW-f5fh%IxX(&`rJhy01`ZB24q;;; zwSm&>=V;VU41&5O=-@Favv*ov-DTzO>mm2iwJKA=eYuIw^)t4LVp;mtV`lSLX<7B) z;Cf6pjag{pvk*j(n<(X`E2`>mAjygDBzM(bD@VhlzNB%3`k@A%5h04 zz>CJ;sQPHZB;42KkZ7p#=ZkPR{w%6C#;klyf|7P~u?z<$I$L!EQ{CI;E~ZsdWHlTl zJJ2vR9@&B2^n3|-m~saGog74<_~t$@!jw&$0^a-kZPK?86=$g{d&cfGocA51uhmK9 zuM6#9#>L*C6sWX-P(zf@H z3%U-I0|kze$s(|#wbn(7mw!=|Wb-t?0M#+&iNqE)5pnC1Hy z@cFuVndD@?$G_Af>Hc(GxaA|}hIZ1WK{XFOJA!|KsD_I$x-E-TfSRcN44n$OfmHahK*6z2A5U#B2#{Zur;_N6&m&Hq zjWo4PZa`A1pqev<*pHj^lQ!pb50+H7DhdmW|K+k)gIfxX!4| zFm`Rsv@u25aVsHJWHzwLjA3eV`55W2E+Cu~LY%G**dgoMUSjemrIuuQRMXwXGqw}? z81^#Ct&fR!D|5>j_bSFb)J%*F48S_WN318?oU|eCA1Dx{Q-wUqrtZN6vYC<}aN;kv z53}H`vG<8g)`i+P-dQqrdf+>|%tJPLxyEf&`_-_T$~_ugvc$i!YZ3b+n=nQ5IXQE) zATqE4zv-qwtf%GA3h=A-1k3;A%@55*Vp-W`V zU`NbY{Q%SFG*`TNB~HO13uU$`n9X{A z>}Yf{7s#F%D1J+Jq066sAyqK7asf`Adirexa90*-e_OLO(Tv95F3CdzNrLbv7a8%& z@Vf=sE*(lpvR=J-(R9u#8f1gg>lDimO-PM0=b08{?sRO;e0luoLz(2r5S>Y>Mv#ac za&c|B#>yB2^V-v;f?H7it#Y0Gp?sDUlXw1#(%azx&ZmXSnHe$k-d4aN`>M=qlO0mRen>iWm@6uQ>9-O&a_HH6g(hQ@qh z!7HIz+*Kpx;!IzG?e~+=uCfCN=vV%N5{oqsc zAhyQJdQ+GcEh_vMPKIRT4`UJ04Ds>z~A1$^R;6#bj?&MkE9nAz*m z-wAK?QFkQLCV#vcji6G?H~rXR6J5~yx&5e9EZyI+8qt=lpwW&@==wk67&^zpWx zKL;W9l)0eZ*?s&|cKC*a{K}bI@{)Kt^v|BblTsGJ`rKjd#gcdyu^@$ei#$-frW9sK zJbZ3PD01o>Z^&Q6;OF2WkUohC)@;Z5{q~z|@V49Y$PsvB|3GN+M)(UK!PtS*p*^kz zl;n8}cGm+w>bU6w!CoPAlK0<^XSQxrljH!}FS)@E5Nq&%qSi#%jbb4P^6O=nVUFg7 zLo<*O5+DhkN@@WDo35{~R=my9w}Rjxsnsuc9XG^xuoF$#kfQNRIrupu$vc?ld7UO^ z%XSYKfdW*h!4#`xu#3{`nd}?k6W4hF>trebuZkP57U03_-Cj|L{3iz{Pik4<&S|yt_KKK)UvC#U}v1+s5w`29Vo zl&?m-qAy@@bEE%zL$%{6=mT0M!(R6VgYBpJ|4h8_{SdzR&EOm_>C2bk_K5gE_FrAL zi(dFje2T96mhLb4NEqUN7lsCjDP{d%GoeL>u#h2x8V1MzW2Vpt^Lb!IhIjV{2e2Ew z{fYmdmH*$qkC@W8tHa^YFySp0i0}U@NZyU;&F@K^&`Z5WH|wS@_Tky@e;T@O-6cg* zHdId=k?i`j#2Bo1b`|i#-4Us>Ndz5U&dsPx_+61VQYiM;4tSqON50O*e)!3Rb44YZ zR<~=}!e8G49yvvlf7?AFj;SfXm)LB48Az-L zTjB&0^_KJWK(X)k4BS=|H#0Ufx6W&lzh@!^(vI0wd|dH?Lgjf?1SQy&GxrtY!b3{8 zVH`gp_>K_rb3b3di+k5@5uG%ekDaY$DnBTuK`#u!P$)3s{}_L=?z+SF#~k|ad2<3g zWuFGnYxZ&XG?+XB?JT&yV6Q{q{UG99&#!9z!J;c!9jdjT6mNqg?4JlR%)ec3I9)bV ztmeIRZ1FkOtkkZ|c?9;bKf`+Ma~gMT=Zqsz1HM$;JuRIpje(l%cwL@tq2x2`7us&p zS5c3`rZ2--%737*(Q&MY8}x^NiaY+uc|hLm>EXQy!HfmTehyG}HfYlBI#{X+zI;U@ z?)i7`x{J{Kj7ge#B^ewR*8~+6+>n3O{t4_H99Ym^q1yonyxq{}T7yA>aa=a^t@1T$ zrvAi<7v9WnL94}fl8i-u#@w$Oy@)qh>*j?wX$pQv-6wWtl^l9bVd0DvM3@95K+YvU z!KYO>6fN3M4ubw83MRvp$po=BwCZlTJB|b15VQsKj?Gj4LeKYHIvu?|E+#Ja2|BLH zE_fX8;eHw;=L^F(cMBQ?^pNX(L{{hyPTN;1MPLkbk(HMJCrsMz+`9R4W%R0Dw? zP*n0CZjl(Qho3j^ZOQ$_na!YyeooHL|8cN_oP1lBchK#$kibRXqXS6ne`bT6O z*#YdmVohpt45};#vxi57>^#eB{+0zF-dx)C>a<`LLR0r9woeBW$geZF?oSk2LSx=h zwLUw~7;F^cQ@3I1&F3=bgU}>>3oAT92ce?zuXeIo!qFt(tJB)jY~~`EJXtvlz9T1M zrC`c|5KaP=Ac9|mQFpL-ESydN7Lgx9!LFkE+rUr$5DqzW+DDH08_f9=mZHa`ke+zG!ykmtRhHmWJ-2f=x`(Xj~cVHgh z;NX$#DBOqhLB)N?fiv&8^QHHUA4v;|4pxv$7to7MKinbg@VLE@+kpzcgZlm=)6>xD zSl(6Nb*)x@rDL+pD;91!8#X|t8tVq2z87CPQ2E;=KZF+X3jiS+;QZ^_{6_{k%}teK zY^i`^u`layTCHWTINqA`jvJ^wBNO&We^#vgyP{$)b|)ELT~Oc@T1=icQ+E>jR$}l9 zxul(3Jg8~S3Ga)%{0Bq$7UETs2mdfmVax8p384(NPPCS*BNDq@hqDEiU-`OHC$a+m z=l!^5;g;1XCOjml=`2z`VaNAwFu{BxF_n@9-3jUO4a@Nj zp(li2&SK6#{i_ZFF(-BjPp|wlgyR^7;9JdPQ7K7L)ULyA=)~Y3U4<9)<&funNC`;x z+CJJ`8=5|+^Gd)rxoqyp=TEb^tl!tN{Mb0W2bhJp`n-Oo%LcTx>g{eA2E^Q}{$cIz zLtl;73(9S+(lheMZQ7o{E8>!2xZU+F8AN#m&Uv&){QD;e;vo2R%vS9b;I&Zk$p z*=2Ce%|^r_{M?$FzQO(@2PdIynhspcoA)S1%`#=X!P|h9#@2^BHIrxz3c0FD856PC1kY7e?*w`fJtm1%$-<5#5k=G zLP`jSgjvs(+D6)>>!s>t>SgNWy&hoREyLiH0r?N2@9~vbe6uXyoQE8)od)t|?{39e zlsMKf2aEg)aVeM4TCPJ=p=##2%SQ+hyZlZ-i}Sv+#Ft_%Qc)KL^k8uYIZ&>&rDu`K zlR@LY^_g_bgm)B6r_n>8g3n5q(0d*Ds@E0Io^3wAXq0z9V`rILnHKnm{gE&aNLab| z?YYMpJt|La&!Nqr3l4pt>^U~JV%cbH z>A5|G)%>2F_XPbCJ5+4QRjXI#3FRO1CGsA}kgA2}*>m$=LF30}_SfHJsxL4U(Dc}Z zS&v42Y$oVfcj|WiEk3h}ka0v_`WWt*_3f4A=IlWoOQn8G`0C^Y{Ty?{;=>(rap0F< zn3Lv%RBgk(7Z=-wyJ&Ex+-t)hUfMB-x7pE2s#}~+Y38uLwT~j?^XC)N>fW2+a^-Cl zoP;+7W6}U&mI)EPp740vwC3LMz~w8qYb?}Q45Mu^!p1ntDbndSvwMBhAFobe%CNS! zzE9PRxTPN&&E6`B;&!J~%T~OWSLK6r)v+@;88I@jQouGy#+pNP?-XMuG-?IvKR_DA z8lzm{!M(8Pz&d=4hn}W)gpCu#btj0)U4(G&2AFu3u8L7<+V|ha!81t%E#=&I2Uunr zv$sf_8nZ6JEB8L{G*04Ooq~eC5!2sCtym0*vd$Te;eMIFE_!h1+C^ZD)_kQ`T+G_> zQd)E;iT|QMy5Ko*bcz`(BIHqpQiW_7XUT8bZ0z?duy$4)rGQ0Zw`1usDg#&|HiWDC z2Sq_&u%Nct}R2|`3=YEmis2|1SRj&%f#8JCaE>n;+xv%dv z5Bv1e;X9Pe)baSQpozC+AQoj`+L}RZ(#no_s5`r{lRBX~7N~RLMdiNTNWo;X<4>>w z(2d-t{wdge7U2~10J{B6){Yv1X%LL`OTYTYb8 zv<&@rdBNht6;!FQsP)cBa{V17b+_9vo)0%_HzL8w--g_=y}0_AO}_AwmG1L5)`4cr zJMf=bkgaR(fqUK9cB7_MJq`zc!0F{2wnI;GQ}tXW?O(gz3vhq~+HR74Kv3$0Ha`=D z5GO6=w;S*_M!$CpN}TLdViiz36~e(46P?wm;2X4p)*bek(** zk=v4oUs>B#COTXnJaR@bBu!EB^My%-u$OgS|Fcn^J#QIxk|&K2HNM8ujusON5Cb@^ zs1N`7I;eE^wyY>LvEq7f;@LZT%v55s1m~P?K>-b{duKh^;Tt8w$QI_pO@qd~ZEyz^ zOhE1poNbm)HF*>Jn~LqyFKgq(^`cbYvl(GL8{i~J-+2c?WiIMN{tb8mL5AY8+c(eI zc0?vo^4E1CZh>Bod-Gr(R{ahyw?K8^2bNhzmP0AldW#tm(nS{J$1i^BREMUDH}5^3 zfGTT>%a$t$V?2qrEk{)L{qt=~@X8uD=lRzh?Uv#=dEw9NGIyv2X+PkO8CTOtz;$#Q z_3Po*s6SfJvZ(|eM?Ox_8eZjL(Rgb4Q~39PFA}Nq><@vsM~_A+#9Mni%M zA7B^}VMz6NSPIl4+XGrbvMGjqloLQ( zm$?Pqb18YCcA}7%TH>7{Jiia{G*6t_NxH@v+$NJR&V%DrjS+;c4i_QA(+y$=gYeoE zJ6ve=al{_8OA7jS5O&-ME2K+S?}J4$sLpCVN%Ot%KH)zLZ6tO!jqTcdz*ED3>jK!^ z7VLz|Yr_ogglpmHv*+n?zZJm=ci$Fb8GDPc?qZY^>pN}%X&?C6tf>r1eKXG~PLudz z_we$ihWq?(#yGVC_MaHVPL4U@X^pHyr7jbQx?h(Hw``=ID?v02DgUvr-ukSw7Kh?7 z*mEh&?K46hMTI)tUe*UH1&Q)i6Gm$gyu-pTUF;mA$aSPvbXHyLp*0P-wY?SMytFJ>y3j)l&~N(@ds4L2a|;>GmzZ)wqq=cIbA3Kw^vi+hxL#4*X_h za1b zxaIn0ImTO*#kf%Tv^hCUN9ZPOf^GF7$nX~f)P?0%u@woITMF|K3xq2+Xu{Dq=`VKt z5uSC!s%aFqop_xO*dllnQqtv=DQbBQ-8%gW{1kO>(ZZy*c~kdb@0+=68=77Yy_Qr9 zPeVuZY9sMo+i{FIKu#m|HMXQfdQbLuD)aKAs>RbKQqsMpP=8RUQKG<(fFZK`7?RwK zKwa>VFD1##^Rk**3-%f*KoMD#Sfr0EU1bODZj5nh!Qm?eNTjAe3uOPk4`K<*0oL2r zla}qtf%BIn=s%e2`mzU-ienrw+_I$ILag8N2|r#Nl7?=`6^7Pi9SSu~`Wh4&K#VZT zJ;cC8x>J3+PWXlT-pp?l1Fg6b`?8r@;sL>s>JwK(byzJ`Nvg(eRYT>c#9?qJ8k&0% zLX;Ta1E(^8OwsimKzS77;`JSyd;M$JYy-tz-lr`7KqK5ZGX?y*P}(s|IUJWdl?Yx`n5hkqG6=pV~x#?%L+Uc|4?Z3(lo zzGZd@Lhwof9bSQHJ)ez`^kA$q?YS66xnW*Mu5rDKqs5C0tV(Kw5*HxF1}%Q5>aRK% z6XFm+@B>96!uq|-A1hprzn-B+Xl~p8?AyR_IVgOq^t|h)>~Z2q@FN#S;)d<*Z{Q`> zf?p`ULEDTZ4dH^LJmJf#6E@PbMqQCv zp?pLtoOyH^-bz@1a1QHEPw~cY9g4*$rKv$c(DmbJ5yr2^I{zzEv%o#vx%R^b%Qz|k z{t4%yJ8Mfa<8#Z=cie)kO$1h5PDq-rTjDTH99sY-VPZZ0Iv1ST?i9k9u%Tps7P5B5 znDV!GdFvM2op9mEJA^}(Othj)7l!$Z3wS(X?J>e6QgIPYzuQF1Tl;B}ERTK1=;;uE z*j1Pl#W`neAr!x0lv6aiJ-nH@+*KwCQD+<6SMbdHvi2>}&*JF^S`%23@)dKW7Pnv1 z;KJ(i&wjXL1mAMqvP6Q+x9tTD{<1s~4}O$Q=zwcONzQ#aVB#V70^zT=s|5S-*QFLk zGg-I+f-(}R{T2*Cyu!tjk{$%0d$C!bfDmqwm;BQEb1^`@ch`Y*klDhARY7Wg=x! zv`@%G@1az>HoD7wu3fI#rCyo*lLbgcr#mLk)=0x9~$NHr@8k-V^TI0aJw%iIk zl6MlV`Pwy^v6?caGEc@KCQ_?!$B;%YLzr9SZ#|zmw4uV{`VQ%%&_{Z~E?S&)e}a&H z;<~^}ptk4%ddpufVrL4tX^^6&z4Q8Rh9tf+De3epe|=|EOpUVf4R@o0Z;7byo~)d> zh8!h@jup)9Ws>bz}c{u=blgi2p6rz)a(!tP_aLK&LBiT zyNZB-fMhQ&EsQjA7VQ%4`P(FME}%%kURc#$#KasWG2xUh=;8-?MQngo=mg3U4vS83Pu+oDwI9XVOTm%GeJ|}BkeKWW{sUF?T!mGdN!nTvZfqjvVhdMvkx|ljG1KQXAm`&n;dbHz4OqbKbxEBp%q{J> zoOsAT+vNiDpTvyhq)uD_sAF%&L(cz+NUAC=M=EG#3nzs!Fw^TZv9OWC*chPfZ0t}b z2&uG{C8-EpkCd5{6w1WJP6~x`!I-$1I7ol}Bj-f{bKJHDhFl6lBELexBOY>NdwXjx zMn*?RM+Qe01}j@5MrKYPT$tV+TH|Y ze=@AAXXRkeLr(sQ^yTl@?&(^8Az9k}>O#<&j83}NjLZy7j9)B+6}dqnm!K_N7qEv5 zfg{8VWnzZWGjY;0F)J}MaY11>n3%bkn7BVx{;c<_+V9-Y7No5VObnfWGr&sE1f^$& zDlx;jU|?;S`Y+YLQu=dsxILf?28iyzSpY}ti`t)TeCmX~m93JMl{xP(gD7WgWp8C? zY-LR!2Mw&0M$d0Ds_|4#hX`21chW?}~pk~8BM-~Q%w;J5Jp zQu2*n2Ln`E`l}9o)t}!2-@@XLe*avBOWe}VUe^-Phl>mGIyjgZa0v@=2(qv@Hl$#0YK&R$^s?Kv~(r4+r?+ zgh1J#5GXqg{D3kJ7=)FD3H&gFc~H*50)cX}L0FiWAuP-s;D-~!3I#tbP*4WiVP}Fs z0d`QC{gZ$dQ~*CLFc#=d5g|c#Wvdj#LpqX1{3A2LtfWvOlYT?KXgyg^hy^27xhgvN3&5!NFo@ zhW?U5KTCc|SwJ}}^DjCu$fsKDpHpyP!7&3RU8HA!9AI4l{Q9KC$?-{vlk>9@C-dk0 zCv%*i&2e&mLUMjK%K51&;N_YP0){UH40#9}gdM^G;e>$BVP=LfLm|v85M~$zjAl@Y znH>VgKDd5?f@cJHLV)KAD|p&~K@XlF5Eg*xCciKTR74QUDk97*%*4(D6BcHH3W~ru z*oB1I_(6~VI-p;V+Ly`tw`u$jv-mHk0JsJM7h#NFR$;%@`EA1c<@?M0_eb&fAN?L| z|H;O8^1qRCdQ<+9|I;Y{$p3$!kdmGT`N#gB-t1FKPNSTn4vN2r|Lv6T;r~p^seF|0 z>Hn$LPAm9_uKYy)KTu9<*msQocTv8X|C1?y&;JDZiT?k4$f;-kFX}&w|Gf_THvacg zPI1jC{{Q)uzv2H1`L_Q5jh%lM{cBf#3jbdzr#JE&_&-4T2LAtq@@M|F^;r|TEzw`gMlwbLO1NjmEpVF(p zp`4-#iocuxO_cBE|0K%4@c-wOPyD}!e7FBk>C)d*PEiKM-^c$}%J=bq9_63-{~wf7 z2LHSLe@cJ8qbuJr{@+14rM>^u|DQ@ZjgRu3@qe1VznA}0SH8ple-Al5#7@!wMf|P& zf9lIWf=(&?d;ZU+{4M-5uLi@=g8! ztC@e1{6;xl?Pu`+o$@pIKSKHM{QnK*PyDYSKg0ijvi{rQSCrpGfBpVp{(qwUmHV6I zKk|Q&@*C~1-+$o$&nRDW{|Na5|7*1$%>R*cy0IVQ|5wV7@qe81U-|2+ldp91+_|DV#MQz)lsgW~Vve>3H~_&<^I5B&cZ%IT2r^8YE_ zIh}G!1yKC${O_TBJOAfWPT_-)Z}0ypwoVuSV^@9}{~sx*H|`tx-%0sK{!gd;9sd`| zH}?PU4E>|*-@5X1`2R*Zy@}t#|9;B1@c$Q-zwp06zNP=(g*v98cos-egqXWEqKh zDUppLCLorGGGuSv__ltstm)!KOWM4TRR#J!1rIgWx!PCeI4;SUKe*ZC^>)+pGU>$x zZMBaQBO@QWWccicH;!!#MJn%naLhH!jg3O0FPih{IvSmE1#0y%9oAo=g|X`U3BIB7B4rl+LeZ@VR0LI8!*=RJoyPDYoI!L1Qq^K35{|)J*kX5?7EW z^KP{pJx(Ec(?gS)d11pk?vd_Q2n6yxGt)Z$fP{CqI)2b7gjj8?vunn^jb3BTLb0T{ zm`Qp3;hbyJs6)M+=ssyl1VtC8gMm4DaC+nOipom-t5<=^<&Ai?_3HR>mhRLrqcrQ| zopa(`(a}CpR4Nu9XZe6Fl#MVHow79%kInTCwD(j6*B;Rm4#*es$i(AQ5eG~<6I<0T zo5neBw{kn}+}t~?KH%WuXnE*Z`&9PCCA@x&vCr{cbFm{Ug(s=|CeE<;rK)p^^MqWq zVI85{Quk?rC8D;J5a~C_^2J&Bg2H#UwY-5@d?La8*X3Hk%dXLXJpXI)8TS* z?vk?DA-%R|d4MmS=-Gv5>3-v3I#Hvorh+fiwO9Po0ACL=C5v))Ekp9T=nw))qX5*j z+t}%^=JRAJdD*(az$QzyLDt`TN(W6>E2fui? z5Bl65?*U{!mp%A4Iy$D+r6Pw$7egrLa7@fuO#jZaBaEY+4>9<N~qL4Vrb!yE}!mSjqk?5$$+VRaO7L)_TY zvRp}Kn=`Bp%laK)WNV=U4b1Im~4zt3nDK`pQ*b@r(j)BSw=882YR`s|&Ri_qW`~+>XcH-In=0 zx^PJjRYZt~8()rJBCn`lZ-eU1Sv{x3n_E6{;Z~J3T6{nFA||=y_<+jQwCuzHs@8fm z7^;QWjR;0)tmAllMD5`Wmt08+LrV5L=9z`QG#f2;nhC;dG`+NwxJLOo+{6e&TgDD~yrd5gcji5v%&yuE`lBELl3fc}2-Kw3zS2*k6zrVh*u@Tw8awhm1$}H?dVWVob`d&hGczR9ZK8oZouD|0zCL@hYTw5`B1u+t zNAbY%p2H|$I_AYM;i!SJa)Nc(?)@CN#uagCn3XY>qaLxb@o?*CCrL)ec4PZvmCG#J z&e&bT%E!X9>y$1xN6HVUatvnYeDMj=yjz`SUdyk0oz*$&L%?>PzE(R$xMKV+wu2{k zsMoiDw2^(hr=iyU-EF-L5t*?a!b6|-TphlqcPGx#T8|#>J(8VhI|1hCrKDz^fT?nd z4_w@xxgdP8pnA(eSblzKDM^loiHAoT8kJm75UdLEp5~~%vZJG+(-~=cRmA;Ty5g8Y zk(xXq1o8Eo%hA>kqD$-{wk48pWB7ZdiAGvs%Ck^-@e`5yEirGU&?h2v$-0Ylc45yS zr_)GiWu{z63Q-s+*f){aU7qO!ic<)jxnki{V{=Tfu8{39y^StOW_aW_<0 zR){Gxa?+BL9@=wBL+}LUaYRH#GnDA;9UOE=*kt)OiNJ9D6o$tJf}zqk8k3_NJ5xG{ zuF|paar;-z612p-g>;ly!V@%SR}%!?cw^v@Fg;0b0apz|4BmYl9w7E3ckL2xi8-?M z<%dQh<$ERF`89cjS)3f|$9u>3XyNWU?D5B}ngu4D+g=*Z@C}nfJ~uDI(rik{8Qdxt zJ-)+Pd-pdta8TB=TDRA`mP+2JHN=gw)`4^68aKwo4(CeM##JJs?CE_%0s_?66Mywj_f?cb1%5Hl$FVY#f~7E&F5aEO>=b4Y|P_UY8yF~lL;}0*A-{qvmGxH zKR8$=r@UkFS~P!fu;@&W&jKp~0x5#H5WiBZ&0^U}TpaPs87T1d>C>iZo7_>nx^}i4 zG`l?^iMG zeLX$(l8n{G23itoI!KF44%^)|yvC;}Bx zw5%p5)cXBXI-jJKp z>`XEtF+cqlXj5$tjhT|v##*a15YX{I*l~}~nt8aDeo`k_UV~}MhrTDX?7Swd9TS@( zE5UoT=E&k^7!v=Hvsq<)hquOkmy#>`X_LMUF|dqCS0d=BLajfIJ?heT(`hXwexr80 zG=O?r<_%C?H@W5Va7;(!5g0QXocfa;8LO)LEw_!)eB4P=A-})O23wDz_U6VBB{RX!D2p7Ix#7# zleJtn?eSY3XkP`j_uxM&jhkqh6!P{heiaySO^Pv8yxC#dc@r0<&pA=crWmqogQQG= zd@(naL)N|61FbV9!sTAtPN&_>$i%wqAl&kbMd^;+Vb>tX90gBuJQ2StW*oTM8R%Y7 z6Mz5(y9K}www~ePb?vR;w+!=scibkGZ)aEE!(C!PnVh8FIUd-0xqJ26g1!}(iuI~L z6+;Yzc=yI@82U(wiKQj4qz)2V)sh}edV13!I#=mjs!3udU9(=W*!6~mp(<;wAl;7Z zwaAHAf?9or$c+=c?@E-@c8+hfhj9ytJgfN#Si$GIVhgRts4kJ*RGu3{ebne9;q}Bs zpxj^0p*uQNK0|4-^%f0|fP`8eqR(egs+4Atv8+pit!&9}2dqZ!?Yu`yGj zl*2KVd;M9pQzcm^{>O2=#2)h=+=Az;_G?;33&tEUZkq_QU16VS z0nk?fw0k#7W3^=OHYV{w?2aY?-yNTOCsX(9wcoPnuzO@EsTX1<24B5m0U(L)uv@Rc zmbrdbIT&YSBbn9z(DA|m0Qm!IuS zb)aeP4Y)Mv9Pnl+p$N-!@I=iX+PSE;MF7@B)X1HZmu^hkgr_7r`D$}Dyy|@Q3S2lW zik4kI`$|O$t9tG!{t)9q$wW(6?9C`yKC&*~OYPJOOeSvSU@lMlG9`S_K@$N!VOU|d zy5DbJ72RIZy{qeYP;+3#ebgiq$tje{d8iRU;=e>Z)wjYIL*B1_vbv_{epJ1}?vsp` zTgI&fxU1?2y~%eZX;wIM@{ye>28bh5PYJjYA=$4jhRdcynTjRw`gOmkhn|m|AcbYQ z7{`!Ef~niR3}3WnH)mg@bRN?ci$O}FOM`%8&Kt`Swj0Dih}iW9i8MsqoI;A+g`Nk;foMlf+j@&QpaP$G6CCPR8Yc4Y`P$JVi0r12}WJzpX$O zGIhKAXjn#tHAg1nw#J~tHR-;^F@DhfR7tQGtZOB*I>L$?*g0A1uUT=E_E&fYr$e@0 z*_WPgp&bcP(xgr{$sVin3du{@e;~miIk$cZXM|z^k8%hnWA4Ci!S=|3o+aJ=IDkY$ zsyp@-kT&;b|G@i(y~nnG43K9&Th-y}_gId*!s!;o2=X%ql6cY;ywut9C47k%hkozLlKdcxOt-%Sg9>^c=36Hi9y z#LVW!PrSS$t1U7cveB+-%d5lfj1L?g-p&PpO>}QxZ4XYRpoa}ga-~lD(;A#M>$`*= z!$tf{dtK=Coyyk&GwL;&ohkx%QVB^hnS&Luf?Ahe(z3Q}5@-Q6Ceh%6efAhmx-tmh|Pq;hsAqcgM~NCCN*%>{1N7+zz210@t}xB?eE`?Jg2B zR);@;E0$bS0;J(C37ytlL7C64ZFv|@oJU37@N{VR&M|v!fuVw&C_-_v+7C?mNiuS4 zY-!k^f5Tlrb@O=qrt5Cq3;E@07O|P-quG(Jt`nVOl$@YA^7T6H#0fqT%9TP}NPQ9? zLmcaV;`DRkwm8n0J$d5-=|c(advDqiF*yY3Uf<-U@Ze zR;CM6-D^_BdE88?rP9dM_TDeFgTGFdE-c@IP+9rnqelK<2A<9jA0SCdNuB};q)b5~ z3kwVU;3AYX+IU5a0?p#S8^7+(@ws)`<0(`kCvd5qp_Ck2=zW-=L`Rm=WT$nw$dHxO zs#mZN0q#$8T=lMJ)nG8(o3+Cy`Jm@9C}^Ku{UEnST4)5%I%Tq%n#91oC9$&Kh+8Wm zjoyEW%fAy(wKUN;)c|#+;vLWEfzC<0@D=Uz0+c%98!-`aDP>G8-Mj^c;u~qV&x|%L z?|U8AU-PA0A}M22@4kevT$5B#Q)7}c`2rXgO$Kgj?B?xU+_1{?)^Q7Ot5BZr=g3nK zw_DtNNBT-~4s;6lJnp=rF8RU8%KA|1`Dkoh)Np|TcAEVFp~u9pDkLMcsftang)Q8J zLF2pa-WN(PUJrkPE@xJArg)!sTCvE%DrbqyH&-SQF5sm7BynY|GUA2VAi3xBf&xr% zu>?$zQ#TVdG^><9&-0R_X;RFSu^y`AZGT_X?K7@&w>>oBsSVM3ZtH`k-eeO4t)S#w zoAyV%lF6m#%=GYX#@0tmV4GT{LV0A=A8Gqi%LsamhRHv9#aThFm)Ca$_6N(jmot{178kj&_(0v#$=##8@E3JVGu> zx>H7$MWt))_~?MsNSLpi?*Q%T5R9eI5%K)sk|6g^<}1V{*riys<@}A?H=6XQCJvg3 zZbU?xYnd^HU0NRAHVnup?$|lW;t@;B#C@%Pxuk4X8(hm+R#LgEc=Z&S_R|&EOpC+; zPE)=vJd@E%5}^aRy5(U;eXbLftu54Q1#bAcOH7=sg0eem_uC)Jx;;9^wdjw0)tbJ} zJh&Glizn>1C%k?iiTHU=P5>B$e$9zhd$Tc7QBj!c!JY^P$psq88)_e@n18d>TR}-6+EdJg1&gN}cn`Uc4YoR+W8iVhi~NJ2r}m19W=O zZY(;reRH!|wa5_tUe$c!<0e52o~GU1vJW3Wh8=8w#HQ9sbF%5?*-?rrb=_;1^=Kej zA{!286huMnKi8TwsgBzad|4pqu%&&eb!H7e-<8?FSz&s?@&p^`B^637GaIHy}fMdpe05@wRv0(G0387}6^Tdszhf#`@nBZ@}1 zR1hWFlB(78?FWqP2hyt5rbk&92_+_23v-4iXi~E4XUytVd2X+}$9KCg+hs54Xmmr~ zRtB*inU$~9)^uZdY~C|BHh!K1yucr{!|cC5Fx=>HO#*&pWXnb~uVzms?oz71ihY`s zZMToPi3w&=Q4tjHae;p8CD7>$i;Gwo+^Yx@{paMKFu!xoqzO${wdrz^Z+t}Q5RjkQ zd*xD}>D6TWSUkZr@jkHyu7s}Jn@;{Mr~_CZm#9YjM4W`FMa)9l*1KF*0S-RC?hIg; zfRNo1O)N4iC_=|WjSA~x&&bG)yxL=z63a0|7owwBcjvgf*3iaISSE~tIODz8KVg>bkRx%Rb@8GCe(gA9+g;<9TMBzpy6}2c8pxFfvRSNSJr=SI3p8k$sA1 zjx2mjNLdc;nk$*;@ha^zDdHqnU*ezyV*+)ELWJeQ(vo1-@Me>55y4qsp$Ae_iaT0_ zZ065vYvWZRBG9PNyxQq2d@io8@}9Q_?LFnzQtm%`{Mhfw{Q}MAX1e$CYjSRK?zqii z$Vj24Fs+gEWPCs-4bhEfv* z3DrkckbNl>bi9y^(86|vHPYxj_|wYD>~QX zyQdG1L-e1QTm-b;)|&S*@2F%yH^>xMl1e@szM?N4@g$L==Si+~&kN==(lq}5GJ2la zLR0+hFRImX7IiFN4_(RXVidU=i*iBgz=ZV(R-?XMtluyFe^ z@@LJa@=G3@qaoz$3l_bGNlVGfDnjt!8XAPndh)j^Jv{HeE>|ihuv_o%WlO-p)sD0^ zHZI4xRTF|?mpeTrF5bSg0F`cmpy~*;Z#+chVSc>HJ?eF~z~M$4$+fdOQwHm0DNv*f z4>UQWq-@)@0G-Ln`iDdu*3Uf#KTXzAQTPH0mq$vit`w+Bv9Yq+yl=x~hC&r;`^@;P zYLD*PmTS773-$Drh>{Q%e#(I5J5?cudmZm=eS!Wt)!s8Wm*TkjyI%HS1ty6<-41Py z4&x8iD#ppyj8nqWyU?V5tJ}1*bEqkapjmh;C5xda3W(kjzmCNbNMRNb*?i=zHOP#1 z4!pbKP#tKNp7Ovik;w#BWM~(|K}IxHL8`Gfufa$w_7L&KneH9%5m0JUQozE38rRKX zYa*mUJGGkZM~7=F;7_#Ht=Ft!!R?&jxz|6TVvjrMKuKCrQBk(pD>;*uS3{SYnrZ+e z5H@#N0eG;m&2Rd>3!Gd)-{rhd+%8WS4SRHgNs+A=!2{k)E^ym?^1$q1KGkn+=q}dU zdDIldXU`t<%-u=0f98B8No|^Oj_>5=5<*{J-_)B7#nIIojlB-OV~V}qj>_itYS(mC zJjUuxtRZtYQZt$ewQ^g^45eG6Fc{3!@dL8f9ybu{bykA4=5iiIS$IE7;nW^X+m;#q zibaz9K}tG}YD(koIKL;yy*bouzw0{dzTWj{7e#dJ@NeFG)*bdb>y4$2U`lzr!Cf*A zUYXf&aNQRkYG$TYp;sW5AeY{JPGE40OCnQ_MvUw{xDI5vcI_G%O@m|(;ABx!!nVH0 z9RQ$Xu6?k(IioRQ8)a;6UgtoBla&dxPOIs)~aTgt>)P4(cX4i$$9~R zqBJtBQqqHcyV;(>2VY&|!A0v=5y=~8Qg7WDA|POsN%2>)>3Ksmqd=5J)Ur)v{w`_p zZ0q(#;Vjm9AAunxisVU184kJgGsFmM4eMZ_fu5>2*i(TjL1Er;;0!oOs;>2T<2wl$ z8*cb)R%6~P2UYgnwS7-z`a)!;U5KM~?-29&;a!||<*hE~?k&8iY(9DmhqvviS#UmD zTaKyVesBpMnluG*;PY9@tL-!{*+{;=p>vZ5lnuIK*Ks`W`M#6a9@{%RjZf&tMDy+d zcpd%P_yf$w!q^fh%3I*X{CHTjq_-%L2t(HNj6ssfUjGWP2}5TAz4RjIM2v1@hTbGp=~V)gJX+ z6zPZ)!l>$c+i+;*OPDN>@;t$mss?Qu;Cdj(@mP^f&J8tf3NtWE$&a`fsqzCEd=>Qu z9K*4TtQS9#Tbthn%j_jDDoSkbn=LcHW^z`PQ1FrGK9wAf*LYY~!U4CcMKgDvGX)2HJJ~{&*Cv%Y}hz=?tmd3r6%zfIu{jU!-Pnc1k1it=;+c3Sn#@y93>J=m4eRPT#>tz!aTH=k7KTuUjmq9K;_MHB z&zI;W5h%hWQW$hKc$S27)>R;QYEptVE?cIUmma}oWibQ=1v@)CA@aAFrJu^Q8tHe= zIqh&AZ)&OW9&O#(5TnKCQpW9Q(*TNdDsnHiSE2<~PGGNMqJKoSMxWT-buo35iB8yv zII(^1a%6FZ=)RHi6OXH2pJWC*JKwioL!8<*dZw7Qy>TL z)va*ETq3j(-yd{*{bs-?6ERM0p1?0b-&3F|NxH1$v0_HP?FNc^<%ln=*;s5@$k`)lC!Cjs8J`Iw_C6masfx?nlL!<(~QkB4YggINYs*KtEzGLt8ng zpCDdO7@5CNJ{jH{#DTy<-U5qvgNLe*6Z6%30@qan1nEPT&T@95+CrZUJ;3Jkw5 zL|i9+?%E`MPKVV*q6q=1yN4F~?ZvJ2$M+lJ0O}XlhVbZ#q z?3bak>W0i7@UHy+L7yOsz{OGCTg*$BgAW4mjlbonGgy-EWaz5fo>iTHHMFzgS zMr4x`z%+m1dKa z`VBPnOP31oepFXdhFe?b=i-pt zwHzPQdI{SZ;R}xb2`*j$1A;`)z)=R(nMz@ zrJEwMDAdt%b@lPD|7Io!wZc`b-y_*jNK?v_=rwJn3X zrf`t4XN44j9=hZrfRLw5NdI^V0f9_7p?vW|w6gK#=gCr=aQSB;4_6KvHZ&7xGp$po z2?!|?E#N5q$^{?DYnD*2s9g19fDB@KXCPO8KvmvC6u_=QJFX`8d?JAPu8fLnfA|SO zS#R@J%99!#zf_dLET0zd^!a&l(zOK>Hr4*ITcdAO#|?U)X8``)!^NyuHD7SP;9ykA zEQms`s!?d1Z*N{Cc?@?5BH?2g86F02!XuNl&Dc6vwhX&&984fhR$HxLB^W-H^(bS# z=PXKil^6TGLpSdp%?-Bgq74lo(1O!##@%c;hUC2Cq3;z8yTvz{1DYO|&!S2FX$dy;9jk=YiZM>_C%HTZUew?yWT*ub0`4 zRqR13>%OI}Z2?IAH`!O@Wx^LZ0ch0w`?ZzW+A2s)(%3T&T9E#o*Lnms7zI8e&1;wa z9$>((lfz)5^@?I%q?y9ZgEe6b`cF3x4cVIoFmp%idujk;8RYu=I(&id?+spXP^@vc z<6bG*5M6)Ya;{-AwGiq!KXGqyCM`?zKhZiTKuIRYQ575Q88x(pNfB`tD z{|Nl4a)|`sg$(3sNx}$PUfqC|-nHK9pL-`+|7P{_M+<4Ug~6os=$9HNQ#a=`TVi)G zE?c0ymKtHG^jAy^d`(I)w4pbN$W7bciNlG_>wCAa1X)^|;c_1D8G_6T56%`q|1vY| zW#A*$1w|XgRI2ncly_?NI<0oau$J~+L}(-U4^C^T16lz?{-RllMRx0)RLun1S}^x_H4$)vw8>jgv_&^0#=Ux zLgaMSxhNMCo^;U`;*#8#;J|8*P|&PNQdxH4M0QF`O-)Xux&Blfe6T*K?MmNc92y*q zDNloAY-~&#(UCxd0zUM~eZa=TBB-G;LM@bXm;>DJ)!@a)q&_o)?d7(tLBEEaOWpkD zJw(6t5u6*Brpl12RqgILoz0+5?c-;iFZVJKp*OCGm9Xm?b)=6ye%otS;c;@j&gwaJ zb1%tGQWA#;(kiOx4r!$}z2L!Rdcop#egd?1@^Vl_RE*>N@})C)vDe6m1`~7opBJe3 zw96X+-3}2xl`Aen9gS90$Tm80~z##{&Ys-Uu&ebPxo^0Hn!77HYX`t(|Q}TlOxwOihsQ7RrAFX2A z=Si=&neW79>tTmCNLPxVKLYovLm*QMEq949TjT*4tZTD6h(j8i4Do zsv&AIzqStxkBfwe>pUyX5hdp0l~IV`!1cB6D28QaYxYBskjN9|XxhL%D!EH;T9rZF z{s3uNuJW#%nc0nxA3v&wD_ao`Uf`k#Mm8JF6_(h`8PdF>sHpGRNc((~{@&dV;KWnN z!|bGvBUg)z#X0<~i{71Q9qfol_Xcq3uZL0<&cY(O&=Z4MBjQ9K8VhA?jc$2PV%+Y8 z^6QUV5^_lIblj6UlRp4LhnVRQnr)S?TurWBwTM%dhaf!$jIU+H3oVO-(?46GBNwO zZjF;knE?l#meuJXyN;PsYun(pGc9zumgR?dcQscT1jsCW*Hl#YC+c>6I`TAzPvx4r^jG<@77J;ZzzL~&-Oq5<0 zMCaW)j?C2FiHYvfQKFzxvfZ|(tu61t!50USadDRn&)ab}yvw&I5=9|P&dh|du@xG= zistgD&0Jc|u^mDoFyl}9pdlt!+$?TyZ!;7SQ+|xi9y~vvm{5Lk@NQ&$q~7c%#P#m7 zfwL?hOJmV9e4h5hw>bE~nVDmtT7w4f@o4YH<9*?B=Cua$1VmgxWiep~J+grG1T0o% zfeL{)N(;v9$Wgj%afB&pH-sG1_>Dw;loZm6ScFWy=nyLM%Ed<4hIFi(@f3^MA5+fb z-x5iZx7Uj3Uz?|dT0M?bg@YTJ5)$rzTsaVQi67ZYO&=ERwd)Vr7`j;ll;Gn5$FVxq zEqTQ5fhrhMQ-sz>f$&kcnerx$Mwr+mCo#VS6VdENCeP3Z-nSoWjJxBi=#&!$+pSX5 zXZs0WH-GLkY1NA!X2-@lt z&9Wo)3)&;HONDp}V>ytOil2D0z78Icte4d_*q{@3oKHEs1275u?Jd3~pRp zK=D@p2;4YZO~-yPoPpJxC`p%r4Q({eB*lS7-ux(juRQH;JKw=39N5)vB{X~&(w+?d z`V7rb^4r^UM)7LEx`mvlQk82ND3Gw5O89&PrZebjT>vR1#&|<~Fsm$2%RxRTR!|`; z+0w$|RsCCpo(21(TyRr?>IclgZt=j*T@Kv%d@33o zb1Lt&Hu%fV&YMyIM%PB~4U-lsKQWR*MOOSS;>5?Lm3UF#J; z9CDVGg8ckj;2t<-Wy>-RC<{xY;|R&D*$Q`OUEQr~YfpRUge_N@r)(vhl#?oQHAK;y zrkc*h4i+rjaGq~gnPnmLKJWMKPFyl8dHJ$1T!rdKUWS58F?Y#_o*xrj_`Ret=glvZ ze(Xf;lQc$_rpAf=DXi(*Awy$J%SOA&7uXDWL{YQvcph@^nZ|iNYfP82c4{$z7|GE( zrRxeStp~nt%)Cm}Wot?xBYR&N-Qqgd_1$9$$PG;^jaFdVhPa#}{rG6@J^HA1X>v*m zVylfYT6rD*OdmRL6KakAuB)IhAvnc z{GqI*oKut=sf0$h$wnY$o4K$ z#~UX7BD@W1^HeC?$BPf65Mu%{pN{v`KJmFQzSUtgbDvSOwW$VQy>zd3YgF59c`%wP zI#a<$Yc>b#X*1FE?fZ$Tg&8NB%Og8jA}W=}6(@kMVQxiec-mQ${)~;mp6#hDw7^&7 zp0xB?{w8#u0?b_tRX&4MclniZb^;xr-M|R)&)<4k%Hp`HHn2^_!CfN<04K-t0%YfC zAFfQf5D$}g0_ZQU+hNJttVt2-zK!HDyoPf7W=lx>b!=>G$@h!WeW76zUhR6J66@qt zvs4CvzJ9tkn(Yl|G9ig&msw_JCpVG{mmjkg+O#^X?;g(~)(vkkMhsmczS7b1uyW+u zKs$pDwT|4K}OUw1e%n`r1QmSUidtKZo9B=(MU# zu%G_JY2C1wPPq>gy;n!MEAY$IUWt*XJTim@16{)~A=X}0wvOROWZ~CiSPg5}V_%WY z&gEgg7kxi&#)zj;vl~ft^w@#iK}PCQ=r~Q?s!NXvE#)rno?mm+2ku5M2x@OL8%!Ph z;sw6D)O-xG`a|FrbVCypafQscnkAOl50_Ln{JGn6RRVkCG-XmbUY0lv+UU)PEqVnh zWB@ozEf>Tr+-~G?AH5FQDQNXBPi5V;lqQSKsA~1|6mMVKZI2?oVJ62o%7u>~wV(nzPhH)Mwvdje8Jzn>mnZM99LZ_logoNe_R=|N#TY7^ z<_aWn(!R}(kTY=1v&MdUC`uXfe{lH-3OKu{(YuI=-{p z(!Ww~ZZVVQctirDrQ8!Z(+4xQFi&HWZ?JP$!nGf3DlmHe3h&uV*yOa5;nD>=Iy?Wg z8`&THnP8Z59q6)Q!5+6ha&arCGVXXj!!diizT2_hq+<1cRq){b;spa#$=_UF%l!F@`V z2|9$mK#g&FZ;UFTnWkd5rOG_)dml6^U*w+Q*gAH6JpPceV0*rp+ogx0336%P-{=U8*4PKAt|P1ZN6h~?&HKAxPsV>2`n7U zi=0&s!1Bu#l7DEY#uBm{=auL^Z^|a#r#+w(bk~0v)uS*@Xg&VS%9|G0??6m1^kSF zy~wIf9+Eq&yEm}zObZY89#8AMd}yW9(dKu3kk|f}Ospf>(;>{g@*wWk3El&~QTx3Y zoj8xV*WWPijfx&W7}|5DD=IS1&At;&*OM-8QgTl@<&(-a3s#+9y90& z1+i0D1jXLSZ7Asgr%)wUfu8m!{x1}58{d|+CL|awot!jIqiWJo#$M?JnCne>*OqKN zs?V*n=u5^ZvA$VZ3e0MD5%A9Rdj{`_#J^fxRP+?wtgh|8)n8Gt^KnE}QW7;FAi&{a z?a+RBX_X4X`p1<@`Da|aSZUgk!6PRmJh!BZecp#BAHGH6t53_VeP9uPEO|Ve1T!za&Jp;vA@2~GH zTC&?~XU`tgL+B{v*m(N9n(OtDa?lxsm$}_eJ;KTlmSSxlbmOUHm@3!hC$tYZov-CO zRD<9}#m2%tJZb{BvUyga9do9=ba<)GTnMTqH`9K8 z)LI)#aU*1XtuzmQ1mvFMPmt<*nNZHjYjd>c$(A>>|8bDnV-Y4@fV@(*X*%E;Vw^jj zWK3qzOo;`)?R6_pl!n0D@;N?AMey014_9#I-XQxCG%#uOY*KN>2tv&A49}>=v_#4X zD(Ne$c;@0gU0)N0-_F)Ocv?B*n>W_BdwizcwxjnBV|;h41v+p8#g9Bc8>+Csm7y_G zBJV|t8&ptLbdE7*X3y6|ibX(>rrCZL?Va^A@UEyaG9{<=V!3JlPUWB(bKU$Vx1d#} zWyb!F074zI8461?N*W6>nbx~4sP5VObZ41N1~M-X!0fj^+-U>%TTw4pJVwgg2uDGQ zKd5(y#5wOCYUu#)`1|WuCokB0>_1$&0JRweR!@e`*%Q0@&I+=uzfPG$y_IXqr&8tK z2X#K!sX^jyXiuqSe_6o7?-E82aJ-i!mUyqu@2twZpRgn} z=X)_RYr69qL3lQbH#Ia$O3VCZiN)<4^=5D**peuJ06-Jbp{sWLa?&pEpr$K&rpi>t z747E2v-28+>I`eVy=jg?(2Eh*e#=&%>kp=c%*VEFmr`LTx~qE z0R{~G@^{pJlO zzIN@I?)}=2)y|>UTiqx2eA|+`a+en?T?2_by&gv5Uq%2fqTM=6${$QFJa(Bj`n?>M zv~zXxO#kxBkPk27AO}1>H^6;eH`+r~uyPV;2=MGx&(kV!OWiBGh&GFGp%o!=VIgXH zp)#v7mz!Mg#HaJaVm(5rSLw-?QZkR2iq)#&Qf)^#YcRd?>Au+ zyC3-`-*lo)0p-*|1cU5C!O3Gt8NnRM^{t!K0LasK)5rc>Tm2A151Kuj$h7k z^5V7ftaQYsmBw4>Lh{VQBqSu<+}i3HHkQAZzMhli5j>d5_dFC!-3+|lOnZrliw|_uU7;ul&ldkn+WU*}vtXXBT!uK15mySL_69gE!Ygv> zQk$n`?ORw6d_R>`)mpv7qqUT}^I8qQQP2b%=O1)msKwK`Dsnu#|t+U#|m)Gs< z<$v>uCGJ1>)4x7{R%c7Cn)y{)c6ozB0p1AT-L`8NQFjB^??;$1);D5meJ-tbNTtuG z6|UoN)M<6s85kIVHRvCxp;r}s{T0IHE^gH&T#hJhFTyO8CX1M9Lvhrn*1lWJRW2I6 zS`x>;`T{{;neErTWs4BK<(6AmUtbsHa@jPSO-`Ra&E5NdzD9faUuXQIM~`yk$PwD@ z_7?vA57=4y(6fu1UAvN$uf|5e+RC>nmwg^M{=#Mx==R0LOXst5w8oi*2Ky&GVr>wv zhcU3$4$yH3LNZYHS#1Tc+X2;)f>>!>DN)*R`W+E}_x694@$a5_Hv?;fIBgfBAdEx8 zc1T54n3UUpI8-@=5F(2Q_~vul`P%IJ8LLy7U!|1};`vLoHp9kw!+iI`%yW32kLPtM z6@1Q3Kfv(NwRmok7tWkwJvv04I;+7&%&K86oQ1U=Xk#56%Wji0JD6X;#OU-G3$1y^ z7`J%=7X#M!f8D?}?7071=5xuI-(K%$7w=3{oCRQi`U)GYt||(J0_CND%Uf=FJD>j3 zN4a?MB1euK$s9+Q^Y@L{DDK>x@x8O3akzS7c*~6M{oA&YTPKVa@x~%%K+vsdRth2K zDlN`=Ef%{S*4q(btT0{h7A3MN39Fj<@3V^X)3(Aj^lAH!!EJPL*9{1aIEVP^@>g(b z&^ZHtayyu15Cu@DfcN*q!7^MhZ~<61j0V5VxVeG(Ra!x?Icu}b=y59NFVT9Ve0Os4 z8oKQUu3zPaGmml2{=0bL<)?8S!-4DH!&f~+vCm;!>l*xugI-be57Y=-3cunoq>Fep zm+d>Z<5nC-rbj7F7KxiNZpEQLe3zIjTriJ+VED!V`d^uO?m1d(^8zqQDwXLsPl#Il zccxSLB`#gM#Q6BX=KjY|322&o?zxAfN00IgKmHPDMIqz=vwwdd+qP}v$uo;vX8h$6 zAnckgGaeRcx5Mo7j*&jvLCl%rI*q=VjjCd?7I1cSoeP6ax^9dx0wWAgTjI|+xQmj1 zuwcOH>8IY3Fd1iRVLVW@yQovK&?l4`z7tlS12KY7FJp?|58eL)yuB(olvE(yA>c8q zV=UbGX-s95`qLj`=eV84m(S|n!Tg8v-L=LX7`X8A1B_3+g+{YU)Lmk7_w6*+mylwV z&U(yz>nx-CD*6g_ihT}ISL2r@A`pass}Tzq78sozr7-N{)m&6Z;Z__Pe9gc$ycNN- zk3UYSxxuBiXUtySmaVIu`7fI5Z+ScCo_#?S3Zp#w=%eQF;lt)|;xIaL*K_RL`*wcg z-&-AE+qP}obI(0?Jzqcms&)U#GmG53ZzPid028B=1VNXT#tNs-E^^?ikxT-AREi!a zw=J_U7_w1TG)oc7l@4K9^%PzaDBsYL0irH3+CZydlNe$Q9)fiT`jw$A1tmp1P%^AH z1qE1|hT>s}=P-H&g1VNw>2?r83I@{oat8H$q2kP$||} zYcJ4W7-6n;hKb5PZuSC-BL$-M7=Os4Gux#&R$y*sj)@%;93T3MIPK1udUH+;IUU;N z0)1n97}tolhU7S02j$ONU@p}Ac9=Ml(#zsJYUm=qK zsT62z1neEEQ7-$m+hNwbC+*);F8l1691>r;VTLchJBg>8^?MTMVi@ny`U7KI%cV3e zVMW52Ygkl*2_SY1BcY&R48{l^Y$Gp4MlXP34Ywe8tq~XFtvVkK}fL1Hpw0$JxH^7QBK(7#bEAX6Ubvva~cyf8knc<34h+M!Vaj z==9-N90ubZ^o{xyeXI0|WEbF8UEHe6$lxf&u>z~+s|K#2R&N{Wcerk(%GaKHjFG)J z_u5g+;lqbHefqSm%CTz~D=RBvZf?#z`Q($_bI(0o&cE+Iy98W+Ne9Sw13O`AXqbsn zn}0C3Fw0>7;FjIM{k*^z-(v^=`rn?yv<1(8EGcXqyYNB)R|~_eu>-uN|C~Xd3gM*? zGv#1b3I-VojDQ^mIu7DeMD3g-)@GCuZ^xK#Lq)o@h$%j==JaXF! zZhPbqoR8qGE|)8RbiJB<5b%ci(sebH6MI>0oTcCvaOl$ME>iMcMn^_z1dFU)3}|)N z85-*+*7oUk)doRJ(VY)yO?L>FBdS-G&|RCb88>6%mcm)tB>+yov?gABxh=lTK|I1}{%_uY4YU$z}gLGk37MIL%~kyGc_ zIdf^9hn`*J%%#o0Pn})lTTh+lum8uldHmUnJaGI49)I>?_V?bA}3b;|>^bZqvv`uXJ5Kf@24xebnW`0V;F z9=Y@+pFMdMj~su3-;FE0_5NGMW~n(V%F|bH*{0+l$`=p(-Orn;?KjhEc34__mhIbb zpxX&qT0YJG{de-tKUl!+8zgS7p*k(%);eybX5XuS13X;67g-%dx7IL03*BBrmIpB1 z4MeezJ3c#)-@e4;K$Vj#aLb`-r)|t8Z$7Y(O6xiP@VEXQcmLD>$VYzsUA+A5 z`}yi~78gJJbH9*T%hJ9DBT1h7`Sa)b7ys+^Jo?RNIQ-VVG}>10=`UNLH`*=!GXq?sMOAL?h$f6n3wt8Btq#KDn{zrcNC$lQ6N&n?EL>|xc z7}@?7@y^?Ko3B5*EG|r+M+n3Aom0H?@R0d`(vu_N$)$I{Av=NGzU?5zQXfle&$46N zO>{afmX=Smci&rBT9_klH_<^G)!x9X)p08|yjmTnRKe@(M|Uk>ch(V=I~WiI_~;Waar&7#PCqlpu~X+ccIrH* zpP9?5c%?D-#bR+wDHrcT1;J*)YbhlHTljHjYb*=RYBd`+J4tDxFu?UZ)*DL*W6v}MNk{taO6e+Acdv$8F{lbbD$S|N%sbquQY&Nr)$2g8zTU+D6wYLbs+;#KYMCX-fndpRgZ@L-4Y`^JK z;+c~%e?)(1!_Gf+Xo&Hv_A;qLe(PAwA0D?|tZupMeE|GFN2a*p{r`l*7yp1SH#&UZ zkN))58Uk@lv)Sa}!GoMQaU%Qf^fPl5N`6wX!s;izpHu6alrk&MXgg-1Zk3MLA^O~Dr#HH{Df6DQ7YAJ;>B~ApoJ`L@`YF8rh`{A?6i4>QM&8vj15#+j!Rs-$L7ra z~rc!x$gQ2_Uswr##{Dt z_^o@n?)nLWPRO1;LtJG}d3@P1oMd_~;IveeUbj`^SIK z;VL@l;#K<*j*~3`-Am^wj_;6-LhM(c>X2avAuBNc|QD(H*@a;Pw{)l zB39xu|NEUgiPZ`Z0_x>&@bULt!=HWq&-wCthjV}M4!-s;ZzPOn`28fSrdq9X{``54 zA3vUn(^Q#z`Q>GTPDr7&oJjy6`#ygil-9)I;c(yStuj@B3^wAw>p5-16y_h!YzPT#HnvXluym2!acj$MuQAE}maZfTqD{z(K_kabzWxkWSVX zW@Kc9)z#HZN~IY=OXr?6@clga>@jow{$ZYvBiMMJyMVdln-YJZ*W`O8dM&=VW9Qzi zFJPGLb!$}{bkS_L_~dW@1|vg5EU&K8Y&KbKG^qFY)7aRc-rrAk`LuZF@>dXv0*G6{ zgdK$I^X2DP_{vKyzWm(smW#?Hv}%8`#C8M+W6Vak!`Y%Mq!3(hT(i;bAl~t2@l*fq z<7RDbhOx1|EG>Uupxa$x$M!dIe&!hl>pLj;{XKaN(U!c1OS7-=r+@aOc$3Ocx7dg z^{~r@WZ(MA$|6h6b(X>|>&+&uPKUubS_#kD0jD zWVElw(*1uA8beGJcUV|Fi|_f2Ph7+F`IGG2d59qBq6tt&Q7ZfF*fzyLf1Mx-X}8*} zt<6)fml){p&-VEP{r%ZK-%SQYAgI-9%+6W6LCTjxvc9&2(K_1-+Kk>}wvW%Wf7gba z14MzV#DW$17E) zT#staRtq&j$V+QBDs;Bd5Z||ZiZ9Ph<90Xeu-UKSUoaivGO zJj{Q}${ew>O5R4Z$>hW~e7``e6;mnIX{@hOE)5`9qSgV|)oW>G z88G;swFe9g4B&b$)!JYd_S;_{A?$V$jzh6jq1|lYdW8%K>AUL}i8ofWng4orfOKgJ z!!YY4;<_%L=Vi+t=`2oN1AhX1X-l2Ge=vVvE`?U~FRZVzu)fA@dxJ2JSPHu=g* z2dR`w?78YH#zsaM8X97Fc$k4&jgg@t94T4&`a?YWr5AYmSchj$8)nb?lsv0Bue6$` zuT(NZ2s6Jt$4aNodv{-r(+N4-Xqi9!_M5b1%~knp~QH8Dms3OJcM(jE_z5@+-&DrohW*pQczIq+TDk4_?Tuc3-(%v1{yQ z_4~poLMBBbJ1WfXSlcA7SN8i?Z{oB63S=s3=n z_i<2&GX|=HvB!hp471?|cPJ9e_pB>0I%6Er-J2PuN?_nH~e(yOB z8?6@SFI-^9wrvd5YE+U=p`}8BwbN%fckdUhB`Xe@sMKgi0V9<`&aTbjpn3W1IX1#& zyz(HvWB9XE$0)?>cwRv)g1J_^JO|WMr%=5@d2SJ>?Bf=E3c{gU>0@?wnp!3QaF(|a zhHYXKu)eX(wO7A|W^;kPdu|{M)@ild7-4MryCg(AlL(1U0ZWrti7GCfJIBh}8mu(3 z%Dh5p&NPGBZlzKwGYc!NsU|I1 zmzS5V!>L%L*=pIHLvxM3{vkFR%dDiSVnX02W^j<%EZ4^1x>nT3aR8$F9qj;VA&j&f zOqv~(DS`KHitrPu7{9mY^Bd&5${2qs5p-2d>6c16%}JO0K%@TBe_Wfx^K9RLfPuQi!h||ln^wsNfacPm#;1HcKL`y*> z?9vD$q?BT)?8^&{Cc}dRG>oBGED$y}80st24Z6Y@Ew$FX^vV*k@_~r$+lGIrlp`F+ zDuOS)vcm8G@iF~lKX|u{4zjqsD*pNlUy=Xq&;LpT{Pf2@Bu9pa5kgWd7HG_Wo3qD% zPlr_(x7np#Eg|NcFj&SIm)n1*+T8G?PurxFPK#o>N)U7iIxVDhD3+`A_xESz<@@{l zv;4?(Yxq~cIYiOdw7P;y(eOgs(099_Qc|3q@i_D=%h^8vP|p@G15S?};7WYg7=tJl zD0vldBwnltgMhwdO;TEO{*_lyS`&0_u3ouPp|4h>nq=}0Tzw7gRvUlWH^5q<%y565 zxZ7q=Ym|;u__Z1r?RG~y#>f~L76#&oPPa>;RHh+a5JI<&kp~YQ;?Ti^AOzoh=q#&i z%Y5U3=P(9+ayFMRPBfc(oZJfn{sIl?y|+2o%*y#P{bKsGiu z^pPV+IDY)NTwGbv1K?=^k^b%|9SMGhfV{(#Kqru9^FpLU1KxJx*pue9(hYrzOF7?3&A7o== zL$0i>=&7kGdB+`haN@)XPM$o;!Gi~xpPwg+BDu1%q5&zS)W#Tj-(Nq(!Gi}G9UY@s zEXt!tkLp`*y%m2D8jSqH7r&hypYr$Z+sCe5yRd|l1Gmo)l*Yb9654? zqeqYG{rmTG>#euS7hinwHTee*9+Vd@T(}}Xe7eh0QcJPh6F<7GVEg?2z|VxZNib@d zD44}^71#6Wwwu{bAl(I|PO31puIyGbbL?!5C(oeVB_-g)O1{>hUk^?Tm) zo{WFP4L4|GjJ%vbJw2@f_V3@H4epirXU?3_Cr+Hmj-Q^M*6)A+`!oLZ^t3*H{J6a1 zjyvQ74?KS$AA9VvEAkH>JSdMIJ<7?GCtt;X@x>SAkG-ubf8vva{O~7A-1QSaAN!QY zNB(JvPy8PqcYmVDCx6|?_3Yp`8!H4s8^`mq?~3K>)?`$r2*N09?Jk6%ziLn&g;EA7 zV5F+pF&VMAqHvuzZU>NRYmc4mp~XRmxU+!?+LwRxv;UECfG}H1ugbBpG1>d@Q+nWm z2jtk;*cJIxQ&aN(`|p>7gM(Z6FTVKV>+;jUkd!|)H6;fJ2j$e%lss|b1P?#_aN3Jd z0$g*=HF9!tQXV;Sghr#mgAYE)^z=0Q_U(HWe|~ERSMisZm#OalG40l3 zs{KeVW44GlZqZ?5-QHeD_15>VB-TKy1g5W^0$B(tGs9839o*;?kRqAAuIAWTN!XR# zbilCIlvm#8lkD?9#&_hqopu|qR(n;GgON5Jiv0Qcd78~;)~P(@udJ+an*yXvT*cwD^SEYz zG-mozfwAF;cZTDWj+ZH;2FNU>PtSKocWx+aknss%dj4uxWY z&PEF%1V^7;dd)#h`h5ulI9>tA^R3HN2wPVpDXW4Ih{TSYR@zM8Q-G#11b<)JxpOB2 z0|WH;_jCUIdDhm}wtz0>Z`-zw;o;$b-Yy?%_e{Y=j_n3}9JJ-f=(WMZ0MS>zoDhA>9+;OSM2w&Ji_hTUU*{MsLX16LM*dE%*K z?Abja11(*>1@OliUpeo?-y}o z(sH$GxNY|+kG!&wy}xzWIG=rHp0wAN-2-c+YrBD^zFuRDwUVWS-jgqu;3WNYSw*H4 zGCjQH;S~yg;#G@STwFlu7=uE8IuJ)Ol}Z`kcNrS0Gc+``MgK`lv}ZYnNoTLi`BAip zFb2mT#Z&V{v7qd0+JT_xYw$*qLJ=!L++9SJ#%z|c(Fh?~Sy|1VLA^deqp>vzHQKny z?0SQx)fTtkyn`@`nVhgy)V5Dn5z^tIC(iNyTlcd2+7W^v;K3=`}5rR-jfiPut2>74`R9xVlE{01Jaj+?UFSj;4KcA z#CSSmY>j{hT=kU0$RmcS$vWH01!7$wQU+IAsW{&an3}Bfty3@YuA7pV6b@Hmv_@%- zSMU)CUOw|OlOmTV2fT7=iv)O~lTeqT3}g0yvp=Hg4?U(IT9f^kD1US#FFo=wXP$qB ztM*@wQ4y|huXp<`@4_t>i}=3J`uciLVWn>NGB_YL27y5%q(hq&q@ zu|%oTN1<3m2#87g=NW@hv3+TkECU83El)_0ou3=pWq${Uz?#IQz{S|>#s(dL(FS7*NF<&BQERi@H_uCh^DGXv2t9=p zf$T!46&rrQYN3fLM1aWlr%eZDoR~sU)9z|m@m{BXfCdp8beSvH2Pli!DSQ5E3D*3DhXN z{mfQCEkFy5v5KN}4ARwD8;L;(gOo9@Cn)$ON`60{Q%aTti6KTK(V~lz2JHkmG6bP* zcX1OVVhzecgntG5(jbh38%sPDp~jkg>-uM3tzBM7b~8<&D_>PVAn+jQQ?~zBJ5K8d zz@mbZfQ0al_AA{Z+caHPme zSEQlxi+Tgv8%!1kakRtucAuBe&rnM;oMz5nfb$pFwSQ};4S_EY*?s}(nqMpysnu-9 zuyiTVN`lcy51LKe!nE764UUo#;jO#IdE(rq1OyA&XA;eQaAb_y;IK`cFeX{k9YkUS zPn98S{*<;Vhfc(&NOlX79=^g50}3gfcnINw)CgffsHB{mz(|dj3L}*5 zF>F8>+keYhxr$1wz+1n)oqzJj2e*vBW34$)u~=l>8(>FygdOFP%&;^p3mn*g4S$YwxccC=OzqvrRl9fL7W^c5wTbBK z>ocj?=ytnV3U#_A{5S78Xp=<4E}r9Hq=Vx+=r{(g`QuXy2tX&=xiAKkhBg_^@X(ML zn4C(sdz-QO7(;7ynQmj1&f3ZrCEp~Szr8+*Uz7NK4nl7B8A|={mBJL&;x771S7mkz zA%Co29s{wQA$Dfa?uA!hAE-6!40ML+?+hV@uv<-&hGZEWbBR~>yuxpO@|^kQ-yIOw zowa=fPj8F(^atAJUwnQ@%vS}U-9BS}xP6uQs}D{afS>yOUh!W(^pg4HZygjDmfC!2 z;Dk9?zeYUuvol8Ct2o@+FCKpP1@pcyZhsTrOvry9pEI9*+ckXjr5E|^-u-;^q38MC zfquSu#ux1~%B0)A>DkpSfSj7F(`c^nw(Iut&}m!$@cNy$fz~tUt;gtZzHy4>#YJ8| zKf|7#J17?`bXCCJxBnntfA|ZCeWL@$q~%T>iBcLV1zOpMw15Bmlg14K=}ADuc`DNwNn0Yldo zQ&E89I;c2Cx{i&o6|jHuXR`Bqt|U|nS4tZq26QX;p^U-7?hd+9M8S3G1|hDLTz~%7 z%>Yhmg;o?QVr@&lmE*4@%CLi!0)HVP3S+d%vJ zO0y`6>{i;5jJ01(u5WiR0*E4o(h5g9bPnE_*g+f|D;!a=LTQ5|1>gUDcO}tCPO^If z6)LncNJlVt^4IL~jy+x^_m_s9yVeL}_v1=gWx*udwxj^MHDDNxijw38V}GMrtY{^R zeYbpx)&}XMd}|6aN)ZJ%`bBAj<9bM;dy2$pbey_Ilk2C)C+X%Y)=24Kv_VJ*DNK)4 zFodzfb*#DCI##UVPYSyQQb9<;b&0jXD|(<}6ao)J6vwziplt6qeBZ&Sm^ijNdaM*u zlPx)p=U^g5AkyO_q!e5DsDGGP2nq?`NCDCT>ENaOWDgL<3P%WVBsdb^mo_6ySfy2I zmCOSPLgM;hltw2?t%_o#BM`=JnH?X96>)NZDvmKiARLKsByK@sVr9*uLL^=&V>Mzc zPEBIRv%T|Ahj$J#H0$0e)-YcYyY<69%e?+myml6|cj1p9QyQJBj zfJQ5Y??`mQuX-M?>!6KQRFzhEu0(~}wzlTdFF>sp2HIGD&_ zw4ma-xUNk6FdCyY1%GLe*Gf=y9GpZ~$^u9oiHYqpSMZW&ZvbU%uLoCR!sPtElbqig z+_cj6{z8LM!j5%%a*+(YR>>AEse)~f)tOXKv9@Rv*08RPNq}PqG~=_$w<5<%g(y-; zM`pT`F-Z`Lu-_?VQvK5E7s+AIT_IPEi^6E)1+2UDAo2WWy1wx7}J2_pZ(dqBA_vdHV*Lbcq zQdk4EFg<=3v43fImz!;!4Vy}sbi`&POLDx~ob#4%NM`M2d?9fiD{Z7>rGiC4VhR?5 zwEMcXjf>12Y_i%s_V_d?Gu07vq6K>C?-vd_^D&6z`ogA!3xUuUV+xn?000W%NklB_T5G$mX@%BS0{Kp|?h9f29V(Sv z-%5y*?_xDQh;)ofM4}XeV!>KDtyGdk$`)?WN?E?|K?Wy@QW45%Ou{b}e9&<=31Ssn zy+bL4gpyx?)YOe6(h({-zmuNdsLksqzgs2Y;eWp8CVUHarL7`oltu{fi=Gt)>10qU zc?Q~^zu+bJXZf*86v0HpvxB0nW~h};lJdYL`(q)kcIr416>r83n8fKXWTMD8&L&?7 zj84w)KsSu=T$d=a7q_3s==P-;wxOf7(L6q$blrcC0qA&s^zJMSxyf{*#jC~Ko z5TuI_S!-9)_Xw2CcyBO4BGkMBvG%+8@>w_%5!)@R!4POG$*g3sd}5W^IXcSVITEE47quf0afD8+njLNMJbx#f zxzdq{*c#1@F?5sjE3NHP;0R=LeH&P6C9P3b85dH3Qpsd7M8*P3C&0AmR2V7H+7Kyl zJ(*lT;m489+-CFoTG{KnO#ugjm^d&leY2RAle zmp^&^-0Sk2lRxyj{E3@>`}O#>9e=-i)H*?eE&Mc1v9|xFhf^oX75S5V;C1hW6^p^eluIH!rl7Fj#)4eg9 zzzaQ}zZ>~iqM7dyY4%;mPXX{k&x{%9nIU|S@GqyUzgPJ33Nxnn;rQRh{2j0HaIQ=K z_j`gb6OHgnGhzS;zl-@ZJ=$=!=i!|0Su4Nm`Dwb~4}J%c@!igU2as+T_axul@V&qn z6B83#LaKpTU=pA-cr&H?O@9;zZcO+JW8zsM+({uE202Zg(+ni~l{Ok}%&Zh*QVKzL za1WjOZn^_kWf?I>t63qPNg*9rorBd`NGgpRo0&8#gqRdUP#Ww~s&^?4bhC^Zt<9{I zVp2*0rCXtN3l!g)L@&i?70*h?os^DCY48Dx^>0!fc);>wgN~V%E`O8Kh5G5cs6Trr z_0xByk085ufWCnz=&L_Ywf=Zw?%c{Rv7ZwADY8E`XKvxYxZv{QqJ3TI{Kfb*rT8?( z_;lKjcnhE1yEk7~IDYr;-P!9({BHN_bUI(7+x^nMSI$0D`n!;D<;rI3zNK4`?HQ)2Rs;DHcP$~QS(_>xT^We8s(T-ch;VN;|z%?4F zlbAZEfK~x99$ix)5FRBHpp)PX*Rf_-6L&G)4NTBN6%{5)B5^z)71@T2CW-GiafC2t z)Bdg$Du$>FZhv5KiV7*y@N!8UX-wRNa2cF6TPi@>2wm4N5{F&lph(#2!zq@Let_dx z--1^ZL|sGVY|tqzQFa^jbxLRyv5vCrT%1LuJCBj;7}-Q=8=RR~zHvnvK_40)Wvrtp zR54C+{8~q_+7`4zO*^R}rA&-S=bTzYsAY_5VRSolO@C)`45boOtKfMU&x53BM4CNR zC=@7{%eGim^31|8O!5LCj^~J?3xwe+QPi*#H8doS&@9fz?VWWgDzenBUxP6)P@PA4 z?JH{qB1XurjRn5~86z>c)}wx9?W=w(!5&Fs(1rf?zen)d#iZ7`Ycf+Us~e>+jaa2)IP%6!1Rmkn6DevLGAB$>yO2z!j53sZD=Z^Tlia&*p%N z*L|*n|GA83UIQ4Hk74FcXX|>u$=_TCc&(es22XCr|C2=>%PfY$R_sn5Ofs{3agwl;@64;8&Z`FKA3BI{Y;fN=30`k* zXOI8#?O#scTO{*GkOPy@s$7%6s%(?Ms#OF43f6zKSp>UPrV-(6#xJL M07*qoM6N<$f`kYyKmY&$ delta 27859 zcmV+EKo-B1$^+!q0+1uK;yJiDf5*vH-uM3R=hUgYJ3HH(%1W#Xs38eagfJakz}Ugy zxWowwZa2xbof|ub7(2M-UMKne9NWQ(O>l>}5E~F33<4w})GMo9X?vg9>1R%R?jL7n zv<|5O)eaDqtwEjjpHuJO?e;Rq2NEC_% z5TE*s_aKxvlNZNJ$I&%~Ouj5LxgY>aCc@06OSqmS*$`rAEX$o=`e6-?qN-{z59fIp zhQa*&JgTY+_xbZJhb8|D3rM-B*N6cLl40X&N!uGPn zIj@F{O(YUE7*tnR7ybSHf84wA*+t*`nY}4CEI&7e^S>Tyq`jemm}zqLmM;F|*RPT) zm-)iYH}m6HUZFobf$cbKUblv#?Q!Pp5bGtoSd8##bSX|0}nGjcMwfCBbd=fl+d}tt#73f z<>Oe6OEM9ry(y^ae<#|aq$dlt*ZJ9irliW!S>?j1)�E`fHO3lrOv;zWAu*y_>|1 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 diff --git a/Minecraft.Client/Common/res/TitleUpdate/res/terrainMipMapLevel3.png b/Minecraft.Client/Common/res/TitleUpdate/res/terrainMipMapLevel3.png index dddef61516e90c2b45bccc8fe084dc602471b0f3..8e2fb5e202224377a790a21cc2a7407bd5bdb731 100644 GIT binary patch literal 27399 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 KQz2y%`2PXLTYQ)R delta 11913 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 P00000NkvXXu0mjfEmU9H diff --git a/Minecraft.World/Boat.cpp b/Minecraft.World/Boat.cpp index 157f8842..b8e138e1 100644 --- a/Minecraft.World/Boat.cpp +++ b/Minecraft.World/Boat.cpp @@ -48,6 +48,35 @@ bool Boat::makeStepSound() return false; } +void Boat::checkFallDamage(int result, int onGround, double ya) +{ + if (fallDistance <= 3.0) return; + + if ( !onGround ) + { + int t = level->getTile(x, (floor(y) - 1.0), z); + if ((!t || Tile::tiles[t]->material != Material::water) && ya < 0.0 ) + fallDistance -= ya; + + return; + } + causeFallDamage(fallDistance); + if (!level->isClientSide && !removed) + { + remove(); + for (int i = 0; i < 3; i++) + { + spawnAtLocation(Tile::wood_Id, 1, 0); + } + for (int i = 0; i < 2; i++) + { + spawnAtLocation(Item::stick->id, 1, 0); + } + } + + fallDistance = 0.0; +} + void Boat::defineSynchedData() { entityData->define(DATA_ID_HURT, 0); diff --git a/Minecraft.World/Boat.h b/Minecraft.World/Boat.h index 55586eeb..5edf64e0 100644 --- a/Minecraft.World/Boat.h +++ b/Minecraft.World/Boat.h @@ -36,6 +36,7 @@ public: Boat(Level *level); protected: + virtual void checkFallDamage(int result, int onGround, double ya); virtual bool makeStepSound(); virtual void defineSynchedData(); diff --git a/Minecraft.World/Zombie.cpp b/Minecraft.World/Zombie.cpp index f27a1c7d..944c54b5 100644 --- a/Minecraft.World/Zombie.cpp +++ b/Minecraft.World/Zombie.cpp @@ -147,6 +147,8 @@ void Zombie::aiStep() } } Monster::aiStep(); + if (isBaby()) + setSize(0.3f, 0.9f); } bool Zombie::hurt(DamageSource *source, float dmg) From e7c7a817ebb52b745fc3647c636290a554ca5296 Mon Sep 17 00:00:00 2001 From: qloak Date: Thu, 23 Jul 2026 08:49:25 -0700 Subject: [PATCH 11/13] feat(xbox360): Enable Xbox 360 build configurations - Enable all Xbox 360 ContentPackage/submission builds in solution - Map Xbox 360 configs to actual Xbox 360 platform instead of Win32 - Add Build.0 lines for ContentPackage, CONTENTPACKAGE_SYMBOLS, ContentPackage_NO_TU, and ReleaseForArt Xbox 360 configs - Remove xbdm.lib from Release/ContentPackage_Vita (debug-only lib) - Add meme.xui from TU56 reference --- Minecraft.Client/Common/Media/meme.xui | 699 ++++++++++++++++++++++ Minecraft.Client/Minecraft.Client.vcxproj | 6 +- MinecraftConsoles.sln | 318 +++++----- 3 files changed, 863 insertions(+), 160 deletions(-) create mode 100644 Minecraft.Client/Common/Media/meme.xui diff --git a/Minecraft.Client/Common/Media/meme.xui b/Minecraft.Client/Common/Media/meme.xui new file mode 100644 index 00000000..2070e174 --- /dev/null +++ b/Minecraft.Client/Common/Media/meme.xui @@ -0,0 +1,699 @@ + + +1280.000000 +720.000000 + + + +BeaconMenu +1280.000000 +720.000000 +CXuiSceneBeacon +XuiBlankScene +Pointer + + + +Group +520.000000 +510.000000 +380.000031,120.000046,0.000000 +15 +XuiScene +Pointer + + + +UseRow +381.000000 +50.000000 +70.000000,444.000000,0.000000 +8 +CXuiCtrlSlotList +ItemGridVertical + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + + +Inventory +378.000000 +150.000000 +70.000000,305.000000,0.000000 +8 +CXuiCtrlSlotList +ItemGridVertical + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + + +SecondaryPanel +234.000000 +210.000000 +262.000000,24.000000,0.000000 +PanelRecessed +false + + + + +PrimaryPanel +234.000000 +210.000000 +24.000000,24.000000,0.000000 +PanelRecessed +false + + + + +PrimaryText +230.000000 +32.000000 +26.000000,26.000000,0.000000 +9 +1 +XuiLabelDarkCentredWrap +FJ_LabelBlack + + + + +SecondaryText +230.000000 +63.000000 +264.000061,26.000008,0.000000 +3 +XuiLabelDarkCentredWrap +FJ_LabelBlack + + + + +PrimaryTierOneOne +44.000000 +44.000000 +122.000000,66.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +PrimaryTierOneTwo +44.000000 +44.000000 +186.000000,66.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +PrimaryTierTwoOne +44.000000 +44.000000 +122.000000,120.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +PrimaryTierTwoTwo +44.000000 +44.000000 +186.000000,120.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +PrimaryTierThree +44.000000 +44.000000 +154.000000,174.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +SecondaryOne +44.000000 +44.000000 +324.000031,148.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +SecondaryTwo +44.000000 +44.000000 +388.000092,148.000000,0.000000 +2 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +Confirm +44.000000 +44.000000 +403.000000,246.000031,0.000000 +8 +CXuiCtrlBeaconButton +BeaconButton +false + + + + +Payment +42.000000 +42.000000 +280.000092,248.000046,0.000000 +9 +CXuiCtrlSlotList +ItemGridVertical + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + +control_ListItem +42.000000 +42.000000 +7 +0.000000,50.000000,0.000000 +false +CXuiCtrlSlotItemListItem +ItemButton +22594 +4 + + + + + +Emerald +42.000000 +42.000000 +70.000046,247.999969,0.000000 +4 +false +7 +CXuiCtrlCraftIngredientSlot +ItemIconBlank + + + + +Diamond +42.000000 +42.000000 +118.000031,248.000000,0.000000 +4 +false +7 +CXuiCtrlCraftIngredientSlot +ItemIconBlank + + + + +Gold +42.000000 +42.000000 +166.000015,248.000000,0.000000 +4 +false +7 +CXuiCtrlCraftIngredientSlot +ItemIconBlank + + + + +Iron +42.000000 +42.000000 +214.000000,248.000000,0.000000 +4 +false +7 +CXuiCtrlCraftIngredientSlot +ItemIconBlank + + + + +Beacon_1 +40.000000 +40.000000 +50.000000,68.000000,0.000000 +2 +Beacon_1 +false + + + + +Beacon_2 +40.000000 +40.000000 +50.000000,122.000000,0.000000 +2 +Beacon_2 +false + + + + +Beacon_3 +40.000000 +40.000000 +50.000000,176.000000,0.000000 +2 +Beacon_3 +false + + + + +Beacon_4 +40.000000 +40.000000 +358.000000,94.000000,0.000000 +2 +Beacon_4 +false + + + + +Pointer +42.000000 +42.000000 +-185.000000,-9.000015,0.000000 +9 +false +CXuiCtrlSlotItem +ItemPointer + + + + + +Normal + + + +EndNormal + + + + + + + + +Normal + + + +EndNormal + +stop + + +MoveLeft + + + +EndMoveLeft + +stop + + +MoveRight + + + +EndMoveRight + +gotoandstop +EndNormal + + + +Group +Position + + +0 +380.000031,120.000046,0.000000 + + + +0 +380.000000,120.000000,0.000000 + + + +2 +100 +-100 +50 +380.000000,120.000000,0.000000 + + + +0 +120.000000,120.000000,0.000000 + + + +2 +100 +-100 +50 +120.000000,120.000000,0.000000 + + + +0 +380.000000,120.000000,0.000000 + + + + + diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index bda9453c..d97166bf 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -1,4 +1,4 @@ - + @@ -1004,7 +1004,7 @@ true $(OutDir)$(ProjectName).pdb - xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xbdm.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xbox\4JLibs\libs\4J_XTMS_r.lib;%(AdditionalDependencies) + xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xbox\4JLibs\libs\4J_XTMS_r.lib;%(AdditionalDependencies) xapilib.lib true false @@ -1058,7 +1058,7 @@ true $(OutDir)$(ProjectName).pdb - xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xbdm.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xtms.lib;%(AdditionalDependencies) + xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xtms.lib;%(AdditionalDependencies) xapilib.lib true false diff --git a/MinecraftConsoles.sln b/MinecraftConsoles.sln index 61e02755..13f786ce 100644 --- a/MinecraftConsoles.sln +++ b/MinecraftConsoles.sln @@ -1,157 +1,161 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Minecraft.World", "Minecraft.World\Minecraft.World.vcxproj", "{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Minecraft.Client", "Minecraft.Client\Minecraft.Client.vcxproj", "{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}" - ProjectSection(ProjectDependencies) = postProject - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8} = {F046C3CE-9749-4823-B32B-D9CC10B1A2C8} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - ContentPackage_NO_TU|Durango = ContentPackage_NO_TU|Durango - ContentPackage_NO_TU|ORBIS = ContentPackage_NO_TU|ORBIS - ContentPackage_NO_TU|PS3 = ContentPackage_NO_TU|PS3 - ContentPackage_NO_TU|PSVita = ContentPackage_NO_TU|PSVita - ContentPackage_NO_TU|Windows64 = ContentPackage_NO_TU|Windows64 - ContentPackage_NO_TU|Xbox 360 = ContentPackage_NO_TU|Xbox 360 - CONTENTPACKAGE_SYMBOLS|Durango = CONTENTPACKAGE_SYMBOLS|Durango - CONTENTPACKAGE_SYMBOLS|ORBIS = CONTENTPACKAGE_SYMBOLS|ORBIS - CONTENTPACKAGE_SYMBOLS|PS3 = CONTENTPACKAGE_SYMBOLS|PS3 - CONTENTPACKAGE_SYMBOLS|PSVita = CONTENTPACKAGE_SYMBOLS|PSVita - CONTENTPACKAGE_SYMBOLS|Windows64 = CONTENTPACKAGE_SYMBOLS|Windows64 - CONTENTPACKAGE_SYMBOLS|Xbox 360 = CONTENTPACKAGE_SYMBOLS|Xbox 360 - ContentPackage|Durango = ContentPackage|Durango - ContentPackage|ORBIS = ContentPackage|ORBIS - ContentPackage|PS3 = ContentPackage|PS3 - ContentPackage|PSVita = ContentPackage|PSVita - ContentPackage|Windows64 = ContentPackage|Windows64 - ContentPackage|Xbox 360 = ContentPackage|Xbox 360 - Debug|Durango = Debug|Durango - Debug|ORBIS = Debug|ORBIS - Debug|PS3 = Debug|PS3 - Debug|PSVita = Debug|PSVita - Debug|Windows64 = Debug|Windows64 - Debug|Xbox 360 = Debug|Xbox 360 - Release|Durango = Release|Durango - Release|ORBIS = Release|ORBIS - Release|PS3 = Release|PS3 - Release|PSVita = Release|PSVita - Release|Windows64 = Release|Windows64 - Release|Xbox 360 = Release|Xbox 360 - ReleaseForArt|Durango = ReleaseForArt|Durango - ReleaseForArt|ORBIS = ReleaseForArt|ORBIS - ReleaseForArt|PS3 = ReleaseForArt|PS3 - ReleaseForArt|PSVita = ReleaseForArt|PSVita - ReleaseForArt|Windows64 = ReleaseForArt|Windows64 - ReleaseForArt|Xbox 360 = ReleaseForArt|Xbox 360 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.ActiveCfg = ContentPackage|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.Build.0 = ContentPackage|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.ActiveCfg = ContentPackage|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.ActiveCfg = ContentPackage|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.Build.0 = ContentPackage|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.ActiveCfg = Debug|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.Build.0 = Debug|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.ActiveCfg = Debug|PSVita - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.Build.0 = Debug|PSVita - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Build.0 = Debug|Xbox 360 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Durango.ActiveCfg = Release|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|ORBIS.ActiveCfg = Release|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|ORBIS.Build.0 = Release|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PS3.ActiveCfg = Release|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PS3.Build.0 = Release|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PSVita.ActiveCfg = Release|PSVita - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PSVita.Build.0 = Release|PSVita - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.ActiveCfg = Release|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.Build.0 = Release|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.ActiveCfg = Release|Xbox 360 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.Build.0 = Release|Xbox 360 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|Win32 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.ActiveCfg = ContentPackage|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.Build.0 = ContentPackage|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.ActiveCfg = ContentPackage|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Windows64.ActiveCfg = ContentPackage|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.ActiveCfg = Debug|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.Build.0 = Debug|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.ActiveCfg = Debug|PSVita - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.Build.0 = Debug|PSVita - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Build.0 = Debug|Xbox 360 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Durango.ActiveCfg = Release|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|ORBIS.ActiveCfg = Release|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|ORBIS.Build.0 = Release|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PS3.ActiveCfg = Release|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PS3.Build.0 = Release|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PSVita.ActiveCfg = Release|PSVita - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PSVita.Build.0 = Release|PSVita - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.ActiveCfg = Release|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Build.0 = Release|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Deploy.0 = Release|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.ActiveCfg = Release|Xbox 360 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.Build.0 = Release|Xbox 360 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|Win32 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Minecraft.World", "Minecraft.World\Minecraft.World.vcxproj", "{F046C3CE-9749-4823-B32B-D9CC10B1A2C8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Minecraft.Client", "Minecraft.Client\Minecraft.Client.vcxproj", "{1B9A8C38-DD48-448C-AA24-E1A35E0089A3}" + ProjectSection(ProjectDependencies) = postProject + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8} = {F046C3CE-9749-4823-B32B-D9CC10B1A2C8} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + ContentPackage_NO_TU|Durango = ContentPackage_NO_TU|Durango + ContentPackage_NO_TU|ORBIS = ContentPackage_NO_TU|ORBIS + ContentPackage_NO_TU|PS3 = ContentPackage_NO_TU|PS3 + ContentPackage_NO_TU|PSVita = ContentPackage_NO_TU|PSVita + ContentPackage_NO_TU|Windows64 = ContentPackage_NO_TU|Windows64 + ContentPackage_NO_TU|Xbox 360 = ContentPackage_NO_TU|Xbox 360 + CONTENTPACKAGE_SYMBOLS|Durango = CONTENTPACKAGE_SYMBOLS|Durango + CONTENTPACKAGE_SYMBOLS|ORBIS = CONTENTPACKAGE_SYMBOLS|ORBIS + CONTENTPACKAGE_SYMBOLS|PS3 = CONTENTPACKAGE_SYMBOLS|PS3 + CONTENTPACKAGE_SYMBOLS|PSVita = CONTENTPACKAGE_SYMBOLS|PSVita + CONTENTPACKAGE_SYMBOLS|Windows64 = CONTENTPACKAGE_SYMBOLS|Windows64 + CONTENTPACKAGE_SYMBOLS|Xbox 360 = CONTENTPACKAGE_SYMBOLS|Xbox 360 + ContentPackage|Durango = ContentPackage|Durango + ContentPackage|ORBIS = ContentPackage|ORBIS + ContentPackage|PS3 = ContentPackage|PS3 + ContentPackage|PSVita = ContentPackage|PSVita + ContentPackage|Windows64 = ContentPackage|Windows64 + ContentPackage|Xbox 360 = ContentPackage|Xbox 360 + Debug|Durango = Debug|Durango + Debug|ORBIS = Debug|ORBIS + Debug|PS3 = Debug|PS3 + Debug|PSVita = Debug|PSVita + Debug|Windows64 = Debug|Windows64 + Debug|Xbox 360 = Debug|Xbox 360 + Release|Durango = Release|Durango + Release|ORBIS = Release|ORBIS + Release|PS3 = Release|PS3 + Release|PSVita = Release|PSVita + Release|Windows64 = Release|Windows64 + Release|Xbox 360 = Release|Xbox 360 + ReleaseForArt|Durango = ReleaseForArt|Durango + ReleaseForArt|ORBIS = ReleaseForArt|ORBIS + ReleaseForArt|PS3 = ReleaseForArt|PS3 + ReleaseForArt|PSVita = ReleaseForArt|PSVita + ReleaseForArt|Windows64 = ReleaseForArt|Windows64 + ReleaseForArt|Xbox 360 = ReleaseForArt|Xbox 360 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Durango.ActiveCfg = ContentPackage|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PS3.Build.0 = ContentPackage|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|PSVita.ActiveCfg = ContentPackage|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.ActiveCfg = ContentPackage|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Windows64.Build.0 = ContentPackage|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.ActiveCfg = Debug|ORBIS + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.Build.0 = Debug|ORBIS + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.ActiveCfg = Debug|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Xbox 360.Build.0 = Debug|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Durango.ActiveCfg = Release|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|ORBIS.ActiveCfg = Release|ORBIS + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|ORBIS.Build.0 = Release|ORBIS + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PS3.ActiveCfg = Release|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PS3.Build.0 = Release|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|PSVita.ActiveCfg = Release|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.ActiveCfg = Release|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Windows64.Build.0 = Release|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.ActiveCfg = Release|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Release|Xbox 360.Build.0 = Release|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|Win32 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.ReleaseForArt|Xbox 360.Build.0 = ReleaseForArt|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Durango.ActiveCfg = ContentPackage_NO_TU|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|ORBIS.ActiveCfg = ContentPackage_NO_TU|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.ActiveCfg = ContentPackage_NO_TU|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PS3.Build.0 = ContentPackage_NO_TU|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|PSVita.ActiveCfg = ContentPackage_NO_TU|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Windows64.ActiveCfg = ContentPackage_NO_TU|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.ActiveCfg = ContentPackage_NO_TU|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage_NO_TU|Xbox 360.Build.0 = ContentPackage_NO_TU|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Durango.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|ORBIS.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.ActiveCfg = CONTENTPACKAGE_SYMBOLS|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PS3.Build.0 = CONTENTPACKAGE_SYMBOLS|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|PSVita.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Windows64.ActiveCfg = CONTENTPACKAGE_SYMBOLS|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.ActiveCfg = CONTENTPACKAGE_SYMBOLS|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.CONTENTPACKAGE_SYMBOLS|Xbox 360.Build.0 = CONTENTPACKAGE_SYMBOLS|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Durango.ActiveCfg = ContentPackage|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|ORBIS.ActiveCfg = ContentPackage|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.ActiveCfg = ContentPackage|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PS3.Build.0 = ContentPackage|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|PSVita.ActiveCfg = ContentPackage|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Windows64.ActiveCfg = ContentPackage|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.ActiveCfg = ContentPackage|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ContentPackage|Xbox 360.Build.0 = ContentPackage|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.ActiveCfg = Debug|ORBIS + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.Build.0 = Debug|ORBIS + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.ActiveCfg = Debug|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.ActiveCfg = Debug|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Xbox 360.Build.0 = Debug|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Durango.ActiveCfg = Release|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|ORBIS.ActiveCfg = Release|ORBIS + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|ORBIS.Build.0 = Release|ORBIS + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PS3.ActiveCfg = Release|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PS3.Build.0 = Release|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|PSVita.ActiveCfg = Release|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.ActiveCfg = Release|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Build.0 = Release|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Windows64.Deploy.0 = Release|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.ActiveCfg = Release|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Release|Xbox 360.Build.0 = Release|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Durango.ActiveCfg = ReleaseForArt|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|ORBIS.ActiveCfg = ReleaseForArt|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.ActiveCfg = ReleaseForArt|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PS3.Build.0 = ReleaseForArt|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|PSVita.ActiveCfg = ReleaseForArt|Win32 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Windows64.ActiveCfg = ReleaseForArt|x64 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.ActiveCfg = ReleaseForArt|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.ReleaseForArt|Xbox 360.Build.0 = ReleaseForArt|Xbox 360 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal From 61b0c8add6f53b5511017196f9aaee2e09f6636e Mon Sep 17 00:00:00 2001 From: qloak Date: Fri, 31 Jul 2026 15:20:25 -0700 Subject: [PATCH 12/13] fix: fixed Xbox 360 build issues --- .../Common/Media/skin_Minecraft.xui | 66252 +++++----------- .../Common/Media/xuiscene_DLCMain.xui | 1338 +- .../Common/Media/xuiscene_DLCMain_480.xui | 1206 +- .../Common/Media/xuiscene_DLCOffers.xui | 1864 +- .../Common/Media/xuiscene_DLCOffers_480.xui | 1548 +- .../Media/xuiscene_NewUpdateMessage.xui | 58 +- .../Media/xuiscene_NewUpdateMessage_480.xui | 60 +- .../Common/Media/xuiscene_anvil.xui | 8781 +- .../Common/Media/xuiscene_anvil_480.xui | 9803 ++- .../Common/Media/xuiscene_anvil_small.xui | 10355 ++- .../Common/Media/xuiscene_base.xui | 4036 +- .../Common/Media/xuiscene_base_480.xui | 3893 +- .../Common/Media/xuiscene_base_small.xui | 1851 +- .../Common/Media/xuiscene_beacon.xui | 13005 ++- .../Common/Media/xuiscene_beacon_480.xui | 10419 ++- .../Common/Media/xuiscene_beacon_Small.xui | 10419 ++- .../Common/Media/xuiscene_brewingstand.xui | 5787 +- .../Media/xuiscene_brewingstand_480.xui | 6277 +- .../Media/xuiscene_brewingstand_Small.xui | 4631 +- .../Common/Media/xuiscene_chat.xui | 448 +- .../Common/Media/xuiscene_chat_480.xui | 490 +- .../Common/Media/xuiscene_chat_small.xui | 490 +- .../Media/xuiscene_connectingprogress.xui | 987 +- .../Media/xuiscene_connectingprogress_480.xui | 997 +- .../xuiscene_connectingprogress_small.xui | 987 +- .../Common/Media/xuiscene_container.xui | 1911 +- .../Common/Media/xuiscene_container_480.xui | 3209 +- .../Media/xuiscene_container_large_480.xui | 4937 +- .../Media/xuiscene_container_large_Small.xui | 1913 +- .../Common/Media/xuiscene_container_small.xui | 1803 +- .../Common/Media/xuiscene_controls.xui | 1439 +- .../Common/Media/xuiscene_controls_480.xui | 1445 +- .../Common/Media/xuiscene_controls_small.xui | 1397 +- .../Media/xuiscene_craftingpanel_2x2.xui | 5199 +- .../Media/xuiscene_craftingpanel_2x2_480.xui | 5792 +- .../xuiscene_craftingpanel_2x2_small.xui | 5355 +- .../Media/xuiscene_craftingpanel_3x3.xui | 6651 +- .../Media/xuiscene_craftingpanel_3x3_480.xui | 5782 +- .../xuiscene_craftingpanel_3x3_small.xui | 5849 +- .../Common/Media/xuiscene_credits.xui | 566 +- .../Common/Media/xuiscene_credits_480.xui | 568 +- .../Common/Media/xuiscene_death.xui | 94 +- .../Common/Media/xuiscene_death_480.xui | 94 +- .../Common/Media/xuiscene_death_small.xui | 94 +- .../Common/Media/xuiscene_debug.xui | 116 +- .../Common/Media/xuiscene_debug_480.xui | 98 +- .../Common/Media/xuiscene_debug_fill_area.xui | 254 + .../Media/xuiscene_debug_item_editor.xui | 260 +- .../Media/xuiscene_debug_schematic_create.xui | 436 +- .../Media/xuiscene_debug_set_camera.xui | 316 +- .../Common/Media/xuiscene_debug_small.xui | 44 +- .../Common/Media/xuiscene_debugoverlay.xui | 689 +- .../Media/xuiscene_debugoverlay_480.xui | 318 +- .../Common/Media/xuiscene_debugtips.xui | 74 +- .../Common/Media/xuiscene_debugtips_480.xui | 74 +- .../Common/Media/xuiscene_debugtips_small.xui | 74 +- .../Common/Media/xuiscene_enchant.xui | 6299 +- .../Common/Media/xuiscene_enchant_480.xui | 5289 +- .../Common/Media/xuiscene_enchant_small.xui | 5729 +- .../Common/Media/xuiscene_fireworks.xui | 4707 +- .../Common/Media/xuiscene_fireworks_480.xui | 3935 +- .../Common/Media/xuiscene_fireworks_small.xui | 3105 +- .../Media/xuiscene_fullscreenprogress.xui | 1005 +- .../Media/xuiscene_fullscreenprogress_480.xui | 1013 +- .../xuiscene_fullscreenprogress_small.xui | 1004 +- .../Common/Media/xuiscene_furnace.xui | 1289 +- .../Common/Media/xuiscene_furnace_480.xui | 2787 +- .../Common/Media/xuiscene_furnace_Small.xui | 1683 +- .../Common/Media/xuiscene_helpandoptions.xui | 1062 +- .../Media/xuiscene_helpandoptions_480.xui | 1064 +- .../Media/xuiscene_helpandoptions_small.xui | 1064 +- .../Common/Media/xuiscene_hopper.xui | 2861 +- .../Common/Media/xuiscene_hopper_480.xui | 3771 +- .../Common/Media/xuiscene_hopper_small.xui | 2685 +- .../Common/Media/xuiscene_horse.xui | 4551 +- .../Common/Media/xuiscene_horse_480.xui | 5856 +- .../Common/Media/xuiscene_horse_small.xui | 4666 +- .../Common/Media/xuiscene_howtoplay.xui | 1651 +- .../Common/Media/xuiscene_howtoplay_480.xui | 1657 +- .../Common/Media/xuiscene_howtoplay_menu.xui | 216 +- .../Media/xuiscene_howtoplay_menu_480.xui | 122 +- .../Media/xuiscene_howtoplay_menu_small.xui | 96 +- .../Common/Media/xuiscene_howtoplay_small.xui | 1659 +- .../Common/Media/xuiscene_hud.xui | 1888 +- .../Common/Media/xuiscene_hud_480.xui | 1888 +- .../Common/Media/xuiscene_hud_small.xui | 1925 +- .../Media/xuiscene_ingame_host_options.xui | 306 +- .../xuiscene_ingame_host_options_480.xui | 304 +- .../xuiscene_ingame_host_options_small.xui | 304 +- .../Media/xuiscene_ingame_player_options.xui | 322 +- .../xuiscene_ingame_player_options_480.xui | 324 +- .../xuiscene_ingame_player_options_small.xui | 324 +- .../Common/Media/xuiscene_ingameinfo.xui | 152 +- .../Common/Media/xuiscene_ingameinfo_480.xui | 154 +- .../Media/xuiscene_ingameinfo_small.xui | 176 +- .../Common/Media/xuiscene_intro.xui | 453 +- .../Common/Media/xuiscene_intro_480.xui | 498 +- .../Common/Media/xuiscene_inventory.xui | 2850 +- .../Common/Media/xuiscene_inventory_480.xui | 3700 +- .../Media/xuiscene_inventory_creative.xui | 14913 ++-- .../Media/xuiscene_inventory_creative_480.xui | 14029 ++-- .../xuiscene_inventory_creative_small.xui | 12321 ++- .../Common/Media/xuiscene_inventory_small.xui | 3274 +- .../Common/Media/xuiscene_leaderboards.xui | 348 +- .../Media/xuiscene_leaderboards_480.xui | 356 +- .../Common/Media/xuiscene_load_settings.xui | 1014 +- .../Media/xuiscene_load_settings_480.xui | 1026 +- .../Common/Media/xuiscene_main.xui | 1076 +- .../Common/Media/xuiscene_main_480.xui | 1076 +- .../Common/Media/xuiscene_multi_create.xui | 942 +- .../Media/xuiscene_multi_create_480.xui | 1022 +- .../Common/Media/xuiscene_multi_gameinfo.xui | 566 +- .../Media/xuiscene_multi_gameinfo_480.xui | 580 +- .../Common/Media/xuiscene_multi_joinload.xui | 1944 +- .../Media/xuiscene_multi_joinload_480.xui | 2039 +- .../xuiscene_multi_launch_more_options.h | 2 + .../xuiscene_multi_launch_more_options.xui | 904 +- ...xuiscene_multi_launch_more_options_480.xui | 890 +- .../Media/xuiscene_partnernetpassword.xui | 96 +- .../Media/xuiscene_partnernetpassword_480.xui | 94 +- .../Common/Media/xuiscene_pause.xui | 172 +- .../Common/Media/xuiscene_pause_480.xui | 172 +- .../Common/Media/xuiscene_pause_small.xui | 172 +- .../Common/Media/xuiscene_reinstall.xui | 174 +- .../Common/Media/xuiscene_reinstall_480.xui | 186 +- .../Common/Media/xuiscene_reinstall_small.xui | 186 +- .../Common/Media/xuiscene_savemessage.xui | 84 +- .../Common/Media/xuiscene_savemessage_480.xui | 84 +- .../Common/Media/xuiscene_settings_All.xui | 168 +- .../Media/xuiscene_settings_All_480.xui | 166 +- .../Media/xuiscene_settings_All_small.xui | 160 +- .../Common/Media/xuiscene_settings_Audio.xui | 158 +- .../Media/xuiscene_settings_Audio_480.xui | 148 +- .../Media/xuiscene_settings_Audio_small.xui | 154 +- .../Media/xuiscene_settings_Control.xui | 152 +- .../Media/xuiscene_settings_Control_480.xui | 146 +- .../Media/xuiscene_settings_Control_small.xui | 148 +- .../Media/xuiscene_settings_Graphics.xui | 220 +- .../Media/xuiscene_settings_Graphics_480.xui | 218 +- .../xuiscene_settings_Graphics_small.xui | 220 +- .../Common/Media/xuiscene_settings_UI.xui | 300 +- .../Common/Media/xuiscene_settings_UI_480.xui | 310 +- .../Media/xuiscene_settings_UI_small.xui | 310 +- .../Media/xuiscene_settings_options.xui | 284 +- .../Media/xuiscene_settings_options_480.xui | 288 +- .../Media/xuiscene_settings_options_small.xui | 292 +- .../Common/Media/xuiscene_signentry.xui | 216 +- .../Common/Media/xuiscene_signentry_480.xui | 216 +- .../Common/Media/xuiscene_signentry_small.xui | 214 +- .../Common/Media/xuiscene_skinselect.xui | 2322 +- .../Common/Media/xuiscene_skinselect_480.xui | 2321 +- .../Media/xuiscene_skinselect_small.xui | 1681 +- .../Common/Media/xuiscene_socialpost.xui | 172 +- .../Common/Media/xuiscene_socialpost_480.xui | 170 +- .../Media/xuiscene_socialpost_small.xui | 172 +- .../Common/Media/xuiscene_teleportmenu.xui | 196 +- .../Media/xuiscene_teleportmenu_480.xui | 198 +- .../Media/xuiscene_teleportmenu_small.xui | 198 +- .../Common/Media/xuiscene_text_entry.xui | 54 +- .../Common/Media/xuiscene_trading.xui | 13771 ++-- .../Common/Media/xuiscene_trading_480.xui | 13662 ++-- .../Common/Media/xuiscene_trading_small.xui | 12906 +-- .../Common/Media/xuiscene_trap.xui | 1569 +- .../Common/Media/xuiscene_trap_480.xui | 2579 +- .../Common/Media/xuiscene_trap_small.xui | 1487 +- .../Common/Media/xuiscene_trialexitupsell.xui | 249 +- .../Media/xuiscene_trialexitupsell_480.xui | 257 +- .../Common/Media/xuiscene_tutorialpopup.xui | 149 +- .../Media/xuiscene_tutorialpopup_480.xui | 149 +- .../Media/xuiscene_tutorialpopup_small.xui | 149 +- .../Common/Media/xuiscene_win.xui | 105 +- .../Common/Media/xuiscene_win_480.xui | 107 +- .../UI/IUIScene_AbstractContainerMenu.cpp | 417 +- .../Common/XUI/XUI_Ctrl_BeaconButton.cpp | 33 + .../Common/XUI/XUI_Ctrl_BeaconButton.h | 27 + .../Common/XUI/XUI_Ctrl_MinecraftHorse.cpp | 7 + .../Common/XUI/XUI_Ctrl_MinecraftHorse.h | 13 + .../Common/XUI/XUI_Ctrl_SlotItemCtrlBase.cpp | 11 +- .../Common/XUI/XUI_Ctrl_SlotList.cpp | 34 +- .../Common/XUI/XUI_DebugOverlay.cpp | 6 +- .../Common/XUI/XUI_Leaderboards.cpp | 4 +- .../XUI/XUI_Scene_AbstractContainer.cpp | 41 +- .../Common/XUI/XUI_Scene_AbstractContainer.h | 2 + .../Common/XUI/XUI_Scene_Anvil.cpp | 13 +- .../Common/XUI/XUI_Scene_Base.cpp | 6 +- Minecraft.Client/Common/XUI/XUI_Scene_Base.h | 2 +- .../Common/XUI/XUI_Scene_Beacon.cpp | 309 + .../Common/XUI/XUI_Scene_Beacon.h | 72 + .../Common/XUI/XUI_Scene_Container.cpp | 2 +- .../Common/XUI/XUI_Scene_Fireworks.cpp | 129 + .../Common/XUI/XUI_Scene_Fireworks.h | 45 + .../Common/XUI/XUI_Scene_Hopper.cpp | 141 + .../Common/XUI/XUI_Scene_Hopper.h | 45 + .../Common/XUI/XUI_Scene_HorseInventory.cpp | 147 + .../Common/XUI/XUI_Scene_HorseInventory.h | 50 + .../XUI/XUI_Scene_Inventory_Creative.cpp | 16 +- .../Common/XUI/XUI_Scene_Trading.cpp | 22 + .../Common/XUI/XUI_Scene_Trading.h | 1 + .../Common/XUI/XUI_TutorialPopup.cpp | 2 +- Minecraft.Client/EnderDragonRenderer.cpp | 1 + Minecraft.Client/EnderDragonRenderer.h | 4 + Minecraft.Client/Minecraft.Client.vcxproj | 10 +- Minecraft.Client/Xbox/Xbox_App.cpp | 27 +- Minecraft.Client/Xbox/Xbox_UIController.cpp | 16 +- Minecraft.Client/Xbox/Xbox_UIController.h | 8 +- Minecraft.Client/XboxMedia/XZP/Minecraft.xzp | Bin 28770357 -> 29126039 bytes Minecraft.Client/XboxMedia/strings.h | 245 + Minecraft.World/Item.cpp | 115 +- Minecraft.World/ItemInstance.cpp | 75 +- Minecraft.World/Minecraft.World.vcxproj | 6 +- Minecraft.World/MobEffect.cpp | 50 +- Minecraft.World/Tile.cpp | 622 +- MinecraftConsoles.sln | 8 +- 213 files changed, 193105 insertions(+), 237759 deletions(-) create mode 100644 Minecraft.Client/Common/Media/xuiscene_debug_fill_area.xui create mode 100644 Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.h create mode 100644 Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.h create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Beacon.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Beacon.h create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.h create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Hopper.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_Hopper.h create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.cpp create mode 100644 Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.h diff --git a/Minecraft.Client/Common/Media/skin_Minecraft.xui b/Minecraft.Client/Common/Media/skin_Minecraft.xui index 4ff2a02e..e3706f46 100644 --- a/Minecraft.Client/Common/Media/skin_Minecraft.xui +++ b/Minecraft.Client/Common/Media/skin_Minecraft.xui @@ -1,45957 +1,20299 @@ - -1280.000000 -720.000000 -[LayerFolders]7|+How To Play|44|+|0|+ControllerIcons|3|+|0|+Creative Inventory|8|+|0|+Crafting Scene|16|+|0|+Scenes, Panels,etc|14|+|0|+Main Menu|4|+|0|+DLC|4|+|0|+Skin Select Scene|15|+|0|+HTML|4|+|0|+HUD|19|+|0|-Inventory Containers Special|41|+|0|+Inventory Containers Shared|24|+|0|+Lists|0|+Leaderboard|4|+|0|+Players|6|+|25|+|0|+Tooltips|22|+|0|+Credits|8|+|0|-Labels and Text|53|+|0|+Other|11|+|0|+ImagePresenters|2|+|0|+Default Controls|18|+|0[/LayerFolders] - - - -XuiCheckboxSmall -265.000000 -20.000000 - - - -text_Button -240.000000 -20.000000 -25.000000,1.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -11.000000 -4112 - - - - -text_Button1 -240.000000 -20.000000 -24.000000,0.000000,0.000000 -5 -false -0xff323232 -0xff0f0f0f -11.000000 -4112 - - - - -TickBox_Norm -18.000000 -18.000000 -2.000000,1.000000,0.000000 -16 -Graphics\Tickbox_Norm.png -48 - - - - -TickBox_Over -18.000000 -18.000000 -2.000000,1.000000,0.000000 -false -16 -Graphics\Tickbox_Over.png -48 - - - - -Tick -28.000000 -24.000000 -0.000000,-1.000000,0.000000 -false -Graphics\Tick.png -48 - - - - -XuiSoundXACT -15.000000 -14.000000 -70.000000,21.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalCheck - - - -EndNormalCheck - -stop - - -FocusCheck - - - -EndFocusCheck - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -NormalCheckDisable - - - -EndNormalCheckDisable - -stop - - -FocusCheckDisable - - - -EndFocusCheckDisable - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -NormalSelCheck - - - -EndNormalSelCheck - -stop - - -NormalSelCheckDisable - - - -EndNormalSelCheckDisable - -stop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -TickBox_Over -Show -Opacity - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -Tick -Show -Opacity - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -TickBox_Norm -Show -Opacity - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -text_Button1 -TextColor -Opacity -DropShadowColor -Show - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -0 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -1 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -0 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -0 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -1 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -0 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -1 -0xff8c8c8c -0.500000 -0x7f0f0f0f -false - - - -0 -0xff8c8c8c -0.500000 -0x7f0f0f0f -false - - - -1 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -0 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -1 -0xff323232 -0.500000 -0x7e0f0f0f -false - - - -0 -0xff323232 -0.500000 -0x7e0f0f0f -false - - - -1 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -0 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -0 -0xffebcc0f -0.500000 -0x7f0f0f0f -false - - - -0 -0xffebcc0f -0.500000 -0x7f0f0f0f -false - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -text_Button -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - - - - -XuiSliderVertical -33.000000 -270.000000 - - - -XuiSoundXACT -53.000000 -56.000000 --15.459526,85.765701,0.000000 -0.000000,0.000000,0.707107,-0.707107 -144.996216,20.499901,0.000000 - - - - -Background -24.000000 -270.000000 -6.000000,2.000000,0.000000 -PanelRecessed - - - - -SliderBody -33.777779 -32.296295 - - - -SliderButton -32.000000 -32.000000 -2.000000,0.000000,0.000000 -GraphicPanel4grid - - - - - -Normal - - - -EndNormal - - - - -SliderButton -Position - - -0 -2.000000,0.000000,0.000000 - - - -0 -2.000008,242.000000,0.000000 - - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -XuiSoundXACT -SoundBank -WaveBank -Cue -Position - - -0 - - - --15.459526,85.765701,0.000000 - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus --15.459526,85.765701,0.000000 - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - --105.459526,45.765701,0.000000 - - - -SliderBody -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -Background -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - - - - -XuiSliderVerticalSmall -32.000000 -162.000000 - - - -XuiSoundXACT -53.000000 -56.000000 --15.459526,85.765701,0.000000 -0.000000,0.000000,0.707107,-0.707107 -144.996216,20.499901,0.000000 - - - - -Background -23.000000 -162.000000 -6.000000,2.000000,0.000000 -PanelRecessed - - - - -SliderBody -32.000000 -32.000000 -1.000000,0.000000,0.000000 - - - -XuiControl1 -32.000000 -32.000000 -0.000000,0.000004,0.000000 -GraphicPanel4grid - - - - - -Normal - - - -EndNormal - - - - -XuiControl1 -Position - - -0 -0.000000,0.000004,0.000000 - - - -0 -0.000000,132.000000,0.000000 - - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -XuiSoundXACT -SoundBank -WaveBank -Cue -Position - - -0 - - - --15.459526,85.765701,0.000000 - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus --15.459526,85.765701,0.000000 - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - --105.459526,45.765701,0.000000 - - - -SliderBody -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -Background -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - - - - -XuiSlider -606.000000 -38.000000 - - - -GraphicGroup -606.000000 -38.000000 -5 - - -0xff0f0f80 - - - - -0x28ebebeb -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,129.000000,0.000000,0,129.000000,0.000000,129.000000,0.000000,129.000000,30.000000,0,129.000000,30.000000,129.000000,30.000000,0.000000,30.000000,0,0.000000,30.000000,0.000000,30.000000,0.000000,0.000000,0, - - - - -Slider_Track -600.000000 -32.000000 -3.000000,3.000000,0.000000 -5 -true - - - -XuiImage1 -600.000000 -32.000000 -Graphics\Slider_Track.png - - - - - -TrackEndCap -2.000000 -32.000000 -601.000000,3.000000,0.000000 -4 - - -0xff0f0f80 - - - - -0xff000000 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,3.000000,0.000000,0,3.000000,0.000000,3.000000,0.000000,3.000000,32.000000,0,3.000000,32.000000,3.000000,32.000000,0.000000,32.000000,0,0.000000,32.000000,0.000000,32.000000,0.000000,0.000000,0, - - - - -SliderTint -596.000000 -28.000000 -5.000000,5.000000,0.000000 -207 -false - - -0xff0f76eb - - - - -0x8c4f7bc3 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,294.000000,0.000000,0,294.000000,0.000000,294.000000,0.000000,294.000000,53.000000,0,294.000000,53.000000,294.000000,53.000000,0.000000,53.000000,0,0.000000,53.000000,0.000000,53.000000,0.000000,0.000000,0, - - - - -SliderBody -584.000000 -32.000000 -3.000000,3.000000,0.000000 -5 - - - -XuiImage1 -16.000000 -32.000000 -true -Graphics\Slider_Button.png - - - - - -Normal - - - -EndNormal - - - -Focus - - - -EndFocus - - - - -XuiImage1 -Position -DisableTimelineRecursion - - -0 -0.000000,0.000000,0.000000 -true - - - -0 -584.000000,0.000000,0.000000 -false - - - -0 -0.000000,0.000000,0.000000 -true - - - -0 -584.000000,0.000000,0.000000 -true - - - - - - -Text_Value -50.000000 -26.000000 -550.000000,6.000000,0.000000 -4 -0xffebebeb -0xff0f0f0f -4369 -1 - - - - -text_Label -606.000000 -38.000000 -5 -0xffebebeb -0xff0f0f0f -5137 - - - - -XuiSoundXACT -53.000000 -56.000000 -158.000000,15.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -text_Label -TextColor -Anchor - - -0 -0xffebebeb -5 - - - -0 -0xffebebeb -1 - - - -0 -0xffebcc0f -1 - - - -0 -0xffebcc0f -1 - - - -0 -0xffa0a0a0 -1 - - - -0 -0xffa0a0a0 -5 - - - -0 -0xffebeb0f -5 - - - -0 -0xffebeb0f -5 - - - -Text_Value -TextColor - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -SliderTint -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -true - - - -0 -true - - - -0 -true - - - -0 -true - - - -TrackEndCap -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -Slider_Track -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -0 -0.750000 - - - -GraphicGroup -Fill.FillColor - - -0 -0x28ebebeb - - - -0 -0x28ebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - - - -XuiRadioGroup -298.000000 -86.000000 - - - -graphic_groupfocusbackground -298.000000 -86.000000 -15 -false - - - - - -Normal - - - -EndNormal - - - -Focus - - - -EndFocus - -stop - - - -graphic_groupfocusbackground -Show - - -1 -false - - - -0 -true - - - - - - -FadeIn -300.000000 -300.000000 - - - -box -300.000000 -300.000000 -0.000000 -false - - -1.000000 -0xff787878 - - - - -0xffc8c8c8 - - -true -4,0.000000,0.000000,0.000000,0.000000,640.000000,0.000000,0,640.000000,0.000000,640.000000,0.000000,640.000000,480.000000,0,640.000000,480.000000,640.000000,480.000000,0.000000,480.000000,0,0.000000,480.000000,0.000000,480.000000,0.000000,0.000000,0, - - - - -box -Opacity -Show - - -0 -0.000000 -false - - - -2 --100 -100 -50 -0.000000 -true - - - -0 -1.000000 -true - - - - - - -XuiVisualImagePresenter -46.000000 -46.000000 - - - -XuiImagePresenter -46.000000 -46.000000 -15 -4 - - - - - -XuiEditSmall -250.000000 -24.925926 - - - -Border -254.000000 -34.000000 --2.000000,-2.000000,0.000000 -0.850000 -15 - - -0xff323232 - - - - -0xff323232 - - -2 -0xff787878 -0xffafafaf -0.000000 -1.000000 - - --90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,245.000000,0.000000,1,245.000000,0.000000,245.000000,0.000000,245.000000,50.000000,1,245.000000,50.000000,245.000000,50.000000,0.000000,50.000000,1,0.000000,50.000000,0.000000,50.000000,0.000000,0.000000,1, - - - - -Background -250.000000 -0.850000 -15 - - -0xff323232 - - - - -0xff646464 - - -2 -0xff787878 -0xffafafaf -0.000000 -1.000000 - - --90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,245.000000,0.000000,1,245.000000,0.000000,245.000000,0.000000,245.000000,50.000000,1,245.000000,50.000000,245.000000,50.000000,0.000000,50.000000,1,0.000000,50.000000,0.000000,50.000000,0.000000,0.000000,1, - - - - -Text -240.000000 -20.000000 -6.000000,6.000000,0.000000 -15 -0xffebebeb -12.000000 - - - - -Caret -10.000000 -20.592592 -6.000000,3.000000,0.000000 -false - - - - -ScrollRight -26.000000 -22.000000 -250.296295,2.129630,0.000000 -14 -XuiScrollEndRight -3 - - - - -ScrollDown -32.000000 -22.000000 -214.000000,30.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -ScrollUp -32.000000 -22.000000 -214.000000,-22.000000,0.000000 -6 -XuiScrollEndUp - - - - -ScrollLeft -26.000000 -22.000000 --26.000000,2.425926,0.000000 -11 -XuiScrollEndLeft -2 - - - - -XuiSoundXACT -36.000000 -31.000000 -97.000000,27.000000,0.000000 - - - - -XuiImage1 -250.000000 -25.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -Background -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Opacity -Fill.FillColor - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xffebcc0f -0xffc8c8c8 -0xffebebeb -1.000000 -0xff64719f - - - -Caret -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -Border -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Opacity -Fill.FillColor - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xffebcc0f -0xffc8c8c8 -0xffebebeb -1.000000 -0xffebcc0f - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 - - - - - - -0 - - - - - - - - - -XuiEdit -250.000000 -32.000000 - - - -Border -256.000000 -38.000000 --3.000000,-3.000000,0.000000 -0.850000 -15 - - -0xff323232 - - - - -0xff323232 - - -2 -0xff787878 -0xffafafaf -0.000000 -1.000000 - - --90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,245.000000,0.000000,1,245.000000,0.000000,245.000000,0.000000,245.000000,50.000000,1,245.000000,50.000000,245.000000,50.000000,0.000000,50.000000,1,0.000000,50.000000,0.000000,50.000000,0.000000,0.000000,1, - - - - -Background -250.000000 -32.000000 -0.850000 -15 - - -0xff323232 - - - - -0xff646464 - - -2 -0xff787878 -0xffafafaf -0.000000 -1.000000 - - --90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,245.000000,0.000000,1,245.000000,0.000000,245.000000,0.000000,245.000000,50.000000,1,245.000000,50.000000,245.000000,50.000000,0.000000,50.000000,1,0.000000,50.000000,0.000000,50.000000,0.000000,0.000000,1, - - - - -Text -240.000000 -25.000000 -6.000000,5.000000,0.000000 -15 -0xffebebeb - - - - -Caret -10.000000 -28.000000 -6.000000,2.000000,0.000000 -false - - - - -ScrollRight -26.000000 -22.000000 -250.000000,4.500000,0.000000 -14 -XuiScrollEndRight -3 - - - - -ScrollDown -32.000000 -22.000000 -214.000000,32.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -ScrollUp -32.000000 -22.000000 -214.000000,-22.000000,0.000000 -6 -XuiScrollEndUp - - - - -ScrollLeft -26.000000 -22.000000 --26.000000,4.500000,0.000000 -11 -XuiScrollEndLeft -2 - - - - -XuiSoundXACT -36.000000 -31.000000 -97.000000,27.000000,0.000000 - - - - -XuiImage1 -255.666672 -38.111111 --2.666667,-3.111111,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -Background -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Opacity -Fill.FillColor - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff646464 - - - -0 -0xffebcc0f -0xffc8c8c8 -0xffebebeb -1.000000 -0xff64719f - - - -Caret -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -Border -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Opacity -Fill.FillColor - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xff323232 -0xff787878 -0xffafafaf -0.850000 -0xff323232 - - - -0 -0xffebcc0f -0xffc8c8c8 -0xffebebeb -1.000000 -0xffebcc0f - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 - - - - - - -0 - - - - - - - - - -XuiScrollEndRight -26.000000 -22.000000 -207 - - - -GlowArrow -26.000000 -22.000000 -0.300000 -15 -false -8 -Graphics\scrollRight.png - - - - -StdArrow -26.000000 -22.000000 -0.800000 -15 -false -8 -Graphics\scrollRight.png - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - -GlowArrow -Opacity - - -1 -0.300000 - - - -0 -0.250000 - - - -0 -1.000000 - - - -1 -0.250000 - - - -StdArrow -Show -Opacity - - -1 -false -0.800000 - - - -1 -true -0.800000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - - - - -XuiScrollEndUp -26.000000 -22.000000 -207 -[VisualClass]XuiScrollEnd[/VisualClass] - - - -GlowArrow -26.000000 -22.000000 -0.300000 -15 -false -8 -Graphics\scrollUp.png - - - - -StdArrow -32.000000 -22.000000 -0.800000 -15 -false -8 -Graphics\scrollUp.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - -StdArrow -Show -Opacity - - -1 -false -0.800000 - - - -1 -true -0.800000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - -GlowArrow -Opacity - - -1 -0.300000 - - - -0 -0.250000 - - - -0 -1.000000 - - - -1 -0.250000 - - - - - - -XuiScrollEndLeft -26.000000 -22.000000 -207 - - - -GlowArrow -26.000000 -22.000000 -0.300000 -15 -false -8 -Graphics\scrollLeft.png - - - - -StdArrow -26.000000 -22.000000 -0.800000 -15 -false -8 -Graphics\scrollLeft.png - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - -GlowArrow -Opacity - - -1 -0.300000 - - - -0 -0.250000 - - - -0 -1.000000 - - - -1 -0.250000 - - - -StdArrow -Show -Opacity - - -1 -false -0.800000 - - - -1 -true -0.800000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - - - - -XuiScrollEnd -26.000000 -22.000000 -207 - - - -GlowArrow -32.000000 -22.000000 -0.300000 -15 -false -8 - - - - -StdArrow -32.000000 -22.000000 -0.800000 -15 -false -8 -Graphics\scrollDown.png - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - -GlowArrow -Opacity -ImagePath - - -1 -0.300000 - - - - -0 -0.250000 -scrollDown.png - - - -0 -1.000000 -scrollDown.png - - - -1 -0.250000 -scrollDown.png - - - -StdArrow -Show -Opacity - - -1 -false -0.800000 - - - -1 -true -0.800000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - - - - -XuiControl -100.000000 -100.000000 -3.000000,0.000000,0.000000 - - - - -XuiCaret -10.000000 -28.000000 - - - -Caret -10.000000 -2.000000 -0.000000,24.000000,0.000000 - - -0xffebebeb - - -true -4,0.000000,0.000000,0.000000,0.000000,15.000000,0.000000,1,15.000000,0.000000,15.000000,0.000000,15.000000,37.000000,1,15.000000,37.000000,15.000000,37.000000,0.000000,37.000000,1,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - - - -Focus - - - -EndFocus - - - - -Caret -Show -Fill.FillColor - - -0 -true -0xffebebeb - - - -0 -false -0xff808080 - - - -0 -true -0xffafafaf - - - -0 -true -0xffafafaf - - - -0 -false -0xff808080 - - - -0 -true -0xffafafaf - - - - - - -XuiHtmlControl -50.000000 -50.000000 -15 - - - -HtmlPresenter -50.000000 -50.000000 -15 -true - - - - -ScrollDown -32.000000 -24.000000 -14.000000,56.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -ScrollUp -32.000000 -24.000000 --16.000000,56.000000,0.000000 -12 -XuiScrollEndUp - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - - - - -XuiCheckbox -270.000000 -32.000000 - - - -text_Button -240.000000 -32.000000 -27.000000,1.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -4112 - - - - -text_Button1 -240.000000 -32.000000 -26.000000,0.000000,0.000000 -5 -false -0xff323232 -0xff0f0f0f -4112 - - - - -TickBox_Norm -24.000000 -24.000000 -2.000000,4.000000,0.000000 -2 -Graphics\Tickbox_Norm.png -48 - - - - -TickBox_Over -24.000000 -24.000000 -2.000000,4.000000,0.000000 -false -2 -Graphics\Tickbox_Over.png -48 - - - - -Tick -28.000000 -24.000000 -2.000000,4.000000,0.000000 -false -Graphics\Tick.png -48 - - - - -XuiSoundXACT -15.000000 -14.000000 -70.000000,21.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalCheck - - - -EndNormalCheck - -stop - - -FocusCheck - - - -EndFocusCheck - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -NormalCheckDisable - - - -EndNormalCheckDisable - -stop - - -FocusCheckDisable - - - -EndFocusCheckDisable - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -NormalSelCheck - - - -EndNormalSelCheck - -stop - - -NormalSelCheckDisable - - - -EndNormalSelCheckDisable - -stop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -TickBox_Over -Show -Opacity - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -Tick -Show -Opacity - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -TickBox_Norm -Show -Opacity - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -false -0.500000 - - - -0 -false -0.500000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -0.500000 - - - -text_Button1 -TextColor -Opacity -DropShadowColor -Show - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -1 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -1 -0xffebcc0f -1.000000 -0xff0f0f0f -true - - - -1 -0xff8c8c8c -0.500000 -0x7f0f0f0f -false - - - -1 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -1 -0xff323232 -0.500000 -0x7e0f0f0f -false - - - -1 -0xffebcc0f -0.500000 -0x7f0f0f0f -true - - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -1 -0xff323232 -1.000000 -0xff0f0f0f -false - - - -0 -0xff323232 -1.000000 -0x7b0f0f0f -false - - - -0 -0xff8c8c8c -1.000000 -0x7b0f0f0f -false - - - -0 -0xff8c8c8c -1.000000 -0x7b0f0f0f -false - - - -0 -0xff8c8c8c -1.000000 -0x7b0f0f0f -false - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonFocus - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -text_Button -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - - - - -XuiButton -400.000000 -40.000000 -15 - - - -highlight_graphic -400.000000 -40.000000 -15 -false -Graphics\MainMenuButton_Over.png - - - - -button_graphic -400.000000 -40.000000 -15 -Graphics\MainMenuButton_Norm.png - - - - -text_Label -380.000000 -28.000000 -10.000000,6.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -21525 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -0.000000 -false - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - - - - -XuiVisualImagePresenterCentre -48.000000 -48.000000 - - - -XuiImagePresenter -48.000000 -48.000000 -15 -16 -48 - - - - - -XuiVisImPresenterCentreNoScale -48.000000 -48.000000 - - - -XuiImagePresenter -48.000000 -48.000000 -15 -2 -48 - - - - - -PlayerColourIcon -40.000000 -40.000000 -15 - - - -Icon -40.000000 -40.000000 -15 -true -16 -Graphics\InGameInfo\MapIcon_0.png -48 - - - - - -P0 - -stop - - -P1 - -stop - - -P2 - -stop - - -P3 - -stop - - -P4 - -stop - - -P5 - -stop - - -P6 - -stop - - -P7 - -stop - - -P8 - -stop - - -P9 - -stop - - -P10 - -stop - - -P11 - -stop - - -P12 - -stop - - -P13 - -stop - - -P14 - -stop - - -P15 - -stop - - - -Icon -ImagePath - - -0 -Graphics\InGameInfo\MapIcon_0.png - - - -0 -Graphics\InGameInfo\MapIcon_1.png - - - -0 -Graphics\InGameInfo\MapIcon_2.png - - - -0 -Graphics\InGameInfo\MapIcon_3.png - - - -0 -Graphics\InGameInfo\MapIcon_4.png - - - -0 -Graphics\InGameInfo\MapIcon_5.png - - - -0 -Graphics\InGameInfo\MapIcon_6.png - - - -0 -Graphics\InGameInfo\MapIcon_7.png - - - -0 -Graphics\InGameInfo\MapIcon_8.png - - - -0 -Graphics\InGameInfo\MapIcon_9.png - - - -0 -Graphics\InGameInfo\MapIcon_10.png - - - -0 -Graphics\InGameInfo\MapIcon_11.png - - - -0 -Graphics\InGameInfo\MapIcon_12.png - - - -0 -Graphics\InGameInfo\MapIcon_13.png - - - -0 -Graphics\InGameInfo\MapIcon_14.png - - - -0 -Graphics\InGameInfo\MapIcon_15.png - - - - - - -DLCOffersOfferBackground -460.000000 -196.000000 - - - -XuiIDLCBackground -460.000000 -196.000000 -15 -4 -Graphics\DLCBackground.png - - - - - -ControllerGraphic -400.000000 -270.000000 - - - -Image -400.000000 -270.000000 -Graphics\X360ControllerIcons\360ctrl.png -48 - - - - - -MenuTitleLogo -571.000000 -138.000000 - - - -Logo -571.000000 -138.000000 -15 -16 -Graphics\MenuTitle.png - - - - - -TipPanel -214.000000 -42.000000 - - - -graphic_groupbackground -216.000000 -44.000000 -15 - - - -Bot_R -8.000000 -8.000000 -208.000000,36.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -200.000000 -8.000000 -8.000000,36.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,36.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -208.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -200.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -28.000000 -208.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -200.000000 -28.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -28.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - -HtmlPresenter -195.000000 -26.000000 -10.000000,8.000000,0.000000 -15 - - - - - -QuadrantJoinGame -304.000000 -88.000000 -15 - - - -graphic_groupbackground -304.000000 -88.000000 -15 - - - -Bot_R -16.000000 -16.000000 -288.000000,72.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -272.000000 -16.000000 -16.000000,72.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,72.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -288.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -272.000000 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -56.000000 -288.000000,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -272.000000 -56.000000 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -56.000000 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - -Mid -292.000000 -76.000000 -6.000000,6.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -MidDark -292.000000 -76.000000 -6.000000,6.000000,0.000000 -0.400000 -15 - - -0xff0f0f80 - - - - -0xff0f0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,127.000000,0.000000,0,127.000000,0.000000,127.000000,0.000000,127.000000,72.000000,0,127.000000,72.000000,127.000000,72.000000,0.000000,72.000000,0,0.000000,72.000000,0.000000,72.000000,0.000000,0.000000,0, - - - - - -QuadrantBox -68.000000 -68.000000 -10.000000,10.000000,0.000000 -1 -Graphics\Controller_Message_Frame_L.png -48 - - - - -text_ButtonText -200.000000 -85.000000,28.000000,0.000000 -5 -0xffffffff -0xff000000 -16.000000 -20753 - - - - -Empty_Quadrants -64.000000 -64.000000 -12.000000,12.000000,0.000000 -0.800000 -16 -Graphics\Controller_Quadrant_Icon_Empty.png -48 - - - - -Quadrant1 -64.000000 -64.000000 -12.000000,12.000000,0.000000 -0.800000 -false -16 -Graphics\Controller_Quadrant_Icon_Segment.png -48 - - - - -Quadrant2 -64.000000 -64.000000 -12.000000,12.000000,0.000000 --1.000000,1.000000,1.000000 -0.800000 -32.000000,32.000000,0.000000 -false -16 -Graphics\Controller_Quadrant_Icon_Segment.png -48 - - - - -Quadrant3 -64.000000 -64.000000 -12.000000,12.000000,0.000000 -1.000000,-1.000000,1.000000 -0.800000 -32.000000,32.000000,0.000000 -false -16 -Graphics\Controller_Quadrant_Icon_Segment.png -48 - - - - -Quadrant4 -64.000000 -64.000000 -12.000000,12.000000,0.000000 --1.000000,-1.000000,1.000000 -0.800000 -32.000000,32.000000,0.000000 -false -16 -Graphics\Controller_Quadrant_Icon_Segment.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -StartFlash - - - -EndFlash - -gotoandplay -StartFlash - - - -Empty_Quadrants -Opacity - - -1 -0.800000 - - - -1 -1.000000 - - - -Quadrant1 -Opacity - - -1 -0.800000 - - - -0 -0.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -Quadrant2 -Opacity - - -1 -0.800000 - - - -0 -0.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -Quadrant3 -Opacity - - -1 -0.800000 - - - -0 -0.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -Quadrant4 -Opacity - - -1 -0.800000 - - - -0 -0.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - - - - -SaveIcon -48.000000 -73.000000 - - - -ProgressBody -48.000000 -73.000000 -15 - - - -Chest -48.000000 -48.000000 -0.000000,25.000000,0.000000 -2 -Graphics\SaveChest.png -48 - - - - -Arrow -48.000000 -48.000000 -Graphics\SaveArrow.png -48 - - - - -Arrow -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 -0.000000,5.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - - - - - -XuiSliderWrapper -306.000000 -38.000000 -5 - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiEditSign -250.000000 -32.000000 - - - -Text -240.000000 -6.000000,1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Right -25.000000 -25.000000 -221.000000,2.000000,0.000000 -4 -false -< -0xff0f0f0f -0x800f0f0f -20.000000 -4624 - - - - -Left -25.000000 -25.000000 -4.000000,2.000000,0.000000 -1 -false -> -0xff0f0f0f -0x800f0f0f -20.000000 -4112 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -gotoandplay -Focus - - -InitFocus - - - -EndInitFocus - -gotoandplay -InitFocus - - - -Right -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -true - - - -Left -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -true - - - - - - -DebugButton -469.000000 -40.000000 -15 - - - -highlight_graphic -469.000000 -40.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -469.000000 -40.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -469.000000 -40.000000 -15 -0xffffffff -0xff0f0f0f -20.000000 -21525 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.250000 - - - -0 -true -0.000000 - - - -0 -true -0.250000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.250000 - - - -0 -true -0.000000 - - - -0 -true -0.250000 - - - -1 -false -1.000000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -0.000000 -false - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -false - - - -1 -1.000000 -false - - - - - - -LoadingProgressState -150.000000 -5.000000 - - - -ProgressBody -150.000000 -5.000000 -15 - - - -barStroke -152.000000 -7.000000 --1.000000,-1.000000,0.000000 -15 -false - - -0xffa0a0a0 - - - - -0xff4b4b4b - - -2 -0xff00eb00 -0xff0f0f0f -0.992157 -0.992157 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -back -150.000000 -5.000000 -15 -false - - -0xffa0a0a0 - - - - -0xff828282 - - -2 -0xff00eb00 -0xff0f0f0f -0.992157 -0.992157 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -design_time_display -150.000000 -5.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -150.000000 -5.000000 -15 -false - - -0xff646464 - - - - -0xffffffff - - -2 -0xff00eb00 -0xff0f0f0f -0.992157 -0.992157 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Fill.Gradient.StopPos -Show -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.FillColor -Width - - -0 -0.992157 -false -0xff00eb00 -0xff646464 -0.992157 -0xff0f0f0f -0xffffffff -150.000000 - - - -0 -0.372549 -true -0xff808080 -0xffebebeb -0.780392 -0xff80ff80 -0xff0fb90f -0.000000 - - - -0 -0.917647 -true -0xff80ff80 -0xff0f0f0f -0.925490 -0xff808080 -0xff0fb90f -150.000000 - - - -0 -0.015686 -false -0xff0feb13 -0xff646464 -0.992157 -0xff0f0f0f -0xffffffff -150.000000 - - - -back -Show - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -barStroke -Show - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - - - - -control_for_data_binding_only -155.000000 -23.000000 -0.000000,8.185186,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - - -Normal - - - -EndNormal - - - - - - - -XuiLabelAffordableSmall -640.000000 -5 - - - -Text -640.000000 -5 -0xff80eb20 -0xff0f340f -12.000000 -529 - - - - - -XuiLabelExpensiveSmall -640.000000 -5 - - - -Text -640.000000 -15 -0xffeb0f0f -0xff420f0f -12.000000 -529 - - - - - -XuiLabelAffordable -640.000000 -5 - - - -Text -640.000000 -15 -0xff80eb20 -0xff0f340f -18.000000 -529 - - - - - -XuiLabelExpensive -640.000000 -5 - - - -Text -640.000000 -15 -0xffeb0f0f -0xff420f0f -18.000000 -529 - - - - - -LabelLeaderboardTitle -200.000000 - - - -Text -200.000000 -15 -0xffebebeb -0xff0f0f0f -12.000000 -5137 - - - - - -LabelLeaderboardTitleSmall -200.000000 - - - -Text -200.000000 -15 -0xffebebeb -0xff0f0f0f -11.000000 -5120 - - - - - -LabelLeaderboardWaitingText -200.000000 - - - -Text -200.000000 -15 -0xff606060 -0xff0f0f0f -18.000000 -5120 - - - - - -LabelLeaderboardWaitingTextSmall -200.000000 - - - -Text -200.000000 -15 -0xff606060 -0xff0f0f0f -5120 - - - - - -LabelControlsSceneActionSmall -200.000000 - - - -Text -200.000000 -15 -0xffebebeb -0xff0f0f0f -10.000000 -273 - - - - - -LabelControlsSceneAction -200.000000 - - - -Text -200.000000 -15 -0xffebebeb -0xff0f0f0f -273 - - - - - -LabelContainerSceneRightSmall -200.000000 - - - -Text -200.000000 -15 -0xff323232 -12.000000 -528 - - - - - -LabelContainerSceneCentreSmall -200.000000 - - - -Text -200.000000 -15 -0xff323232 -12.000000 -1040 - - - - - -LabelContainerSceneLeftSmall -200.000000 - - - -Text -200.000000 -15 -0xff323232 -12.000000 -272 - - - - - -LabelContainerSceneRight -200.000000 - - - -Text -200.000000 -15 -0xff323232 -18.000000 -528 - - - - - -LabelContainerSceneCentre -200.000000 - - - -Text -200.000000 -15 -0xff323232 -18.000000 -1040 - - - - - -LabelContainerSceneLeft -200.000000 - - - -Text -200.000000 -15 -0xff323232 -18.000000 -272 - - - - - -XuiTitleSmall -400.000000 -50.000000 - - - -Text1 -400.000000 -50.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -20.000000 -21505 - - - - -Text2 -400.000000 -50.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -20.000000 -21505 - - - - -Text3 -400.000000 -50.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -20.000000 -21505 - - - - -Text4 -400.000000 -50.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -20.000000 -21504 - - - - -Text -400.000000 -50.000000 -15 -0xffebebeb -20.000000 -21504 - - - - - -XuiTitle -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -2.000000,2.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -32.000000 -21504 - - - - -Text2 -400.000000 -100.000000 --2.000000,2.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text3 -400.000000 -100.000000 -2.000000,-2.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text4 -400.000000 -100.000000 --2.000000,-2.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text5 -400.000000 -100.000000 -2.000000,0.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -32.000000 -21504 - - - - -Text6 -400.000000 -100.000000 --2.000000,0.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text7 -400.000000 -100.000000 -0.000000,-2.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text8 -400.000000 -100.000000 -0.000000,2.000000,0.000000 -15 -0xff0f0f0f -32.000000 -21504 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -32.000000 -21504 - - - - - -XuiLabel -320.000000 -32.000000 - - - -Text -320.000000 -40.000000 -15 -0xffebebeb -12.000000 -16400 - - - - - -XuiLabel12_Shadowed -320.000000 -32.000000 -1.000000,1.000000,0.000000 - - - -Text -320.000000 -40.000000 -1.000000,0.000000,0.000000 -15 -0xffebebeb -12.000000 -20737 - - - - - -XuiLabelLightFaded_C_ShadowedSmall -400.000000 -140.000000 -5.000000,3.000000,0.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffcfcfcf -0xff6d6d6d -17425 - - - - - -XuiLabelLight_C_ShadowedSmall -400.000000 -140.000000 -5.000000,3.000000,0.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -17425 - - - - - -XuiLabelChat -640.000000 -35.000000 - - - -Text -640.000000 -35.000000 -15 -0xffebebeb -0xff0f0f0f -20.000000 -16656 - - - - - -XuiLabelChat_Small -640.000000 -20.000000 -5 - - - -Text -640.000000 -20.000000 -15 -0xffebebeb -0xff0f0f0f -13.000000 -16656 - - - - - -XuiLabelChatBackground -100.000000 -20.000000 -15 - - - -100.000000 -20.000000 -0.500000 -15 - - -0xff0f0f80 - - - - -0xff0f0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,979.000000,0.000000,0,979.000000,0.000000,979.000000,0.000000,979.000000,97.000000,0,979.000000,97.000000,979.000000,97.000000,0.000000,97.000000,0,0.000000,97.000000,0.000000,97.000000,0.000000,0.000000,0, - - - - - -XuiLabelListening -640.000000 -20.000000 -15 - - - -Text -640.000000 -35.000000 -15 -0xffebebeb -0xff0f0f0f -20.000000 -17424 - - - - - -XuiLabelListening_Small -640.000000 -20.000000 -5 - - - -Text -640.000000 -20.000000 -15 -0xffebebeb -0xff0f0f0f -13.000000 -17424 - - - - - -XuiLabelLight_FRONT_END_Shd_Wrp_Small -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -16385 - - - - - -XuiLabelLight_FRONT_END_Shd_Wrp -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -18.000000 -16385 - - - - - -XuiLabelLight_ShadowedSmall -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -16401 - - - - - -XuiLabelLight_Shadowed -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -18.000000 -16401 - - - - - -XuiLabelLightFaded_ShadowCentred -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffcfcfcf -0xff6d6d6d -18.000000 -21521 - - - - - -XuiLabelLight_ShadowCentred -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -18.000000 -21521 - - - - - -XuiLabelLight_ShadowedRight -400.000000 -140.000000 - - - -XuiTextPresenter1 -400.000000 -140.000000 -15 -0xffffffff -0xff000000 -18.000000 -16913 - - - - - -XuiLabelLightCentred -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xffebebeb -17424 - - - - - -XuiLabelDarkCentred -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -5.000000,0.000000,0.000000 -15 -0xff323232 -17424 - - - - - -XuiLabelDarkLeftWrap -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -16640 - - - - - -XuiLabelDarkCentredWrapSmall -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -12.000000 -17408 - - - - - -XuiLabelDarkLeftWrapSmall -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -12.000000 -16640 - - - - - -XuiLabelDarkSmallRight -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -12.000000 -16896 - - - - - -XuiLabelDarkCentredSmall -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -12.000000 -5136 - - - - - -XuiLabelDarkSmall -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -12.000000 -16384 - - - - - -XuiLabelDark -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -16384 - - - - - -XuiLabelDarkRight -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -16912 - - - - - -XuiLabelDarkCentredHowtoSmall -404.000000 -180.000000 -1.000000,1.000000,0.000000 - - - -Text -404.000000 -180.000000 -15 -0xff323232 -8.000000 -5136 - - - - - -XuiLabelDark14_1Line -400.000000 -26.000000 - - - -Text -400.000000 -26.000000 -15 -0xff323232 -16400 - - - - - -XuiLabelDarkLeftWrapSmall10 -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -10.000000 -16640 - - - - - -XuiLabelDarkLeftWrapSmall8 -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -8.000000 -16640 - - - - - -XuiLabelDarkLeftWrap16 -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -16.000000 -16640 - - - - - -XuiLabelDarkLeftWrap18 -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -18.000000 -16640 - - - - - -XuiLabelDarkCentredWrap -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -17408 - - - - - -XuiLabelDesc_LftWrp_Small -640.000000 -20.000000 -5 - - - -Text -640.000000 -20.000000 -15 -0xffebebeb -0xff0f0f0f -13.000000 -16640 - - - - - -XuiLabelDesc_LftWrp -640.000000 -35.000000 - - - -Text -640.000000 -35.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -16640 - - - - - -XuiCreditsText_480_S -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -15.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -15.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -15.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -15.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffead44d -15.000000 -5136 - - - - - -XuiCreditsText_480_M -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -16.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -16.000000 -5136 - - - - - -XuiCreditsText_480_14_L -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -5136 - - - - - -XuiCreditsText_480_20_XL -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -18.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -18.000000 -5136 - - - - - -XuiCreditsText_S -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -17.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -17.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -17.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -17.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffead44d -17.000000 -5136 - - - - - -XuiCreditsText_M -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -18.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -18.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -18.000000 -5136 - - - - - -XuiCreditsText_L -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -16.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -16.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -16.000000 -5136 - - - - - -XuiCreditsText_XL -400.000000 -100.000000 - - - -Text1 -400.000000 -100.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -22.000000 -5136 - - - - -Text2 -400.000000 -100.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -22.000000 -5136 - - - - -Text3 -400.000000 -100.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -22.000000 -5136 - - - - -Text4 -400.000000 -100.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -22.000000 -5136 - - - - -Text -400.000000 -100.000000 -15 -0xffebebeb -22.000000 -5136 - - - - - -LB_Button -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -52.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -lb_graphic -49.000000 -45.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftBumper_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -lb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -LB_ButtonSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -40.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -lb_graphic -37.000000 -34.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftBumper_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -lb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -RB_Button -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -52.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -rb_graphic -49.000000 -45.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRightBumper_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -RB_ButtonSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -40.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -rb_graphic -37.000000 -34.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRightBumper_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -Y_Button -350.000000 -36.000000 - - - -graphic_button_disable -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Yello_Focus.png - - - - -graphic_button_normal -33.000000 -33.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Yello_Normal.png - - - - -text_ButtonText -300.000000 -36.000000 -36.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -y_graphic -15.000000 -15.000000 -9.460000,9.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\y_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -y_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -10.500000,13.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.460000,9.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show -Opacity - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -false -0.000000 - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -0 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -Y_ButtonSmall -350.000000 -25.000000 - - - -graphic_button_disable -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Yello_Focus.png - - - - -graphic_button_normal -25.000000 -25.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Yello_Normal.png - - - - -text_ButtonText -300.000000 -25.000000 -25.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -y_graphic -11.000000 -11.000000 -7.460000,7.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\y_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -y_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -8.500000,11.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.460000,7.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show -Opacity - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -false -0.000000 - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -0 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -X_Button -350.000000 -36.000000 - - - -graphic_button_disable -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Blu_Focus.png - - - - -graphic_button_normal -33.000000 -33.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Blu_Normal.png - - - - -text_ButtonText -300.000000 -36.000000 -36.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -x_graphic -15.000000 -15.000000 -9.600000,9.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\x_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -x_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -10.500000,12.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.600000,9.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show -Opacity - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -false -0.000000 - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -X_ButtonSmall -350.000000 -25.000000 - - - -graphic_button_disable -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Blu_Focus.png - - - - -graphic_button_normal -25.000000 -25.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Blu_Normal.png - - - - -text_ButtonText -300.000000 -25.000000 -28.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -x_graphic -11.000000 -11.000000 -7.600000,7.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\x_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -x_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -8.500000,10.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.600000,7.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show -Opacity - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -1 -true -1.000000 - - - -0 -false -0.000000 - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -B_Button -350.000000 -36.000000 - - - -graphic_button_disable -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Red_Focus.png - - - - -graphic_button_normal -33.000000 -33.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Red_Normal.png - - - - -text_ButtonText -300.000000 -36.000000 -36.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -B_graphic -15.000000 -15.000000 -9.500000,9.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\b_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocus - -stop - - - -B_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -10.500000,12.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show - - -1 -false - - - -1 -true - - - -0 -true - - - -1 -false - - - -1 -true - - - -1 -false - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -B_ButtonSmall -350.000000 -25.000000 - - - -graphic_button_disable -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Red_Focus.png - - - - -graphic_button_normal -25.000000 -25.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Red_Normal.png - - - - -text_ButtonText -300.000000 -25.000000 -28.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -B_graphic -11.000000 -11.000000 -7.500000,7.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\b_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocus - -stop - - - -B_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -8.500000,10.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show - - -1 -false - - - -1 -true - - - -0 -true - - - -1 -false - - - -1 -true - - - -1 -false - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -A_Button -350.000000 -36.000000 - - - -graphic_button_disable -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -33.000000 -33.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Green_Focus.png - - - - -graphic_button_normal -33.000000 -33.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Green_Normal.png - - - - -text_ButtonText -300.000000 -36.000000 -36.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -A_graphic -15.000000 -15.000000 -9.500000,9.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\a_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocus - -stop - - - -A_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -10.500000,12.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -9.500000,9.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show - - -1 -false - - - -1 -true - - - -0 -true - - - -1 -false - - - -1 -true - - - -1 -false - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffebebeb - - - - - - -A_ButtonSmall -350.000000 -25.000000 - - - -graphic_button_disable -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Disable.png - - - - -graphic_button_focus -25.000000 -25.000000 -false -8 -Graphics\X360ControllerIcons\Legend_Button_Green_Focus.png - - - - -graphic_button_normal -25.000000 -25.000000 -8 -Graphics\X360ControllerIcons\Legend_Button_Green_Normal.png - - - - -text_ButtonText -300.000000 -25.000000 -28.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -A_graphic -11.000000 -11.000000 -7.500000,7.500000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\a_graphic.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocus - -stop - - - -A_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -8.500000,10.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -7.500000,7.500000,0.000000 - - - -graphic_button_normal -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -0.000000 -false - - - -graphic_button_focus -Show - - -1 -false - - - -1 -true - - - -0 -true - - - -1 -false - - - -1 -true - - - -1 -false - - - -graphic_button_disable -Show - - -1 -false - - - -1 -true - - - -1 -false - - - -1 -true - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffebebeb - - - - - - -LTrigger -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -40.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -lt_graphic -37.000000 -45.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -lt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -LTriggerSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -31.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -lt_graphic -28.000000 -34.000000 -0.000000,-4.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -lt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -LTriggerSmall480 -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -31.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -lt_graphic -28.000000 -34.000000 -0.000000,-2.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -lt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - - - - -RTrigger -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -40.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -rt_graphic -37.000000 -45.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRightTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -RTriggerSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -31.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -rt_graphic -28.000000 -34.000000 -0.000000,-4.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRightTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-4.000000,0.000000 - - - - - - -RTriggerSmall480 -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -31.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -rt_graphic -28.000000 -34.000000 -0.000000,-2.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRightTrigger_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rt_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-2.000000,0.000000 - - - - - - -LStick_Nav -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -61.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -ls_graphic -58.000000 -48.000000 -0.000000,-5.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftStick_Navigate.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -ls_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,-0.750000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -LStick_NavSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -43.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -rb_graphic -40.000000 -34.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonLeftStick_Navigate.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -RStick_Button -350.000000 -36.000000 - - - -text_ButtonText -300.000000 -36.000000 -61.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -16.000000 -20497 - - - - -rs_graphic -58.000000 -48.000000 -0.000000,-5.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRS_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rs_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,-0.750000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-5.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -RStick_ButtonSmall -350.000000 -25.000000 - - - -text_ButtonText -300.000000 -25.000000 -43.000000,0.000000,0.000000 -1 -0xffffffff -0xff000000 -11.000000 -20497 - - - - -rb_graphic -40.000000 -34.000000 -0.000000,-3.000000,0.000000 -0.800000 -16 -Graphics\X360ControllerIcons\ButtonRS_TT.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - - -text_ButtonText -TextColor - - -0 -0xffffffff - - - -0 -0xff606060 - - - -0 -0xff606060 - - - -0 -0xffa0a0a0 - - - -0 -0xffffffff - - - -rb_graphic -Opacity -Scale -Position - - -1 -0.800000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.300000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -0 -1.000000 -0.900000,0.900000,1.000000 -1.500000,1.250000,0.000000 - - - -1 -1.000000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - -1 -0.500000 -1.000000,1.000000,1.000000 -0.000000,-3.000000,0.000000 - - - - - - -XuiListTexturePackButtonSmall -40.000000 -40.000000 -15 - - - -highlight_graphic -40.000000 -40.000000 -15 -false - - -0xffebeb0f - - - - -0xffebeb0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -highlight_cutout -36.000000 -36.000000 -2.000000,2.000000,0.000000 -15 - - -0xffebeb0f - - - - -0xff8b8b8b -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -XuiImagePresenter -36.000000 -36.000000 -2.000000,2.000000,0.000000 -138 -16 -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - - - - -XuiListTexturePackSmall -440.000000 -75.000000 - - - -graphic_groupbackground -440.000000 -67.000000 -0.000000,14.000000,0.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,45.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,45.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,45.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -29.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -29.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -29.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ScrollUp -22.000000 -22.000000 -11.000000,34.000000,0.000000 -33 -XuiScrollEndLeft -2 - - - - -control_ScrollDown -22.000000 -22.000000 -406.000000,34.000000,0.000000 -36 -XuiScrollEndRight -3 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -XuiListTexturePackButtonSmall -1 - - - - -Title -400.000000 -20.000000 -2.000019,-6.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -272 - - - - -TitleHighlight -400.000000 -20.000000 -1.000019,-8.000000,0.000000 -5 -0xffebeb0f -0xff0f0f0f -272 - - - - - -KillFocus - - - -EndKillFocus - -stop - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -TitleHighlight -Opacity - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - - - -XuiListTexturePackButton -60.000000 -15 - - - -highlight_graphic -60.000000 -15 -false - - -0xffebeb0f - - - - -0xffebeb0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -highlight_cutout -54.000000 -54.000000 -3.000000,3.000000,0.000000 -15 - - -0xffebeb0f - - - - -0xff8b8b8b -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -XuiImagePresenter -54.000000 -54.000000 -3.000000,3.000000,0.000000 -138 -16 -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - -0 -true -1.000000 - - - -0 -true -0.250000 - - - - - - -XuiListTexturePack -440.000000 -108.333336 - - - -graphic_groupbackground -440.000000 -92.000000 -0.000000,18.000000,0.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,70.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,70.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,70.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -54.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -54.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -54.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ScrollUp -22.000000 -32.000000 -12.000000,49.000000,0.000000 -33 -XuiScrollEndLeft -2 - - - - -control_ScrollDown -22.000000 -32.000000 -406.000000,49.000000,0.000000 -36 -XuiScrollEndRight -3 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -XuiListTexturePackButton -1 - - - - -Title -400.000000 -32.000000 -2.000019,-6.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -16.000000 -272 - - - - -TitleHighlight -400.000000 -32.000000 -1.000019,-8.000000,0.000000 -5 -0xffebeb0f -0xff0f0f0f -16.000000 -272 - - - - - -KillFocus - - - -EndKillFocus - -stop - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -TitleHighlight -Opacity - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - - - -XuiHowToList480 -330.000000 -80.000000 - - - -graphic_groupbackground -330.000000 -80.000000 -15 - - - -Bot_R -16.000000 -16.000000 -314.344818,64.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -298.344818 -16.000000 -16.000000,64.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,64.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -314.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -298.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -48.001961 -314.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -298.344818 -48.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -48.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -249.000000,50.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -281.000000,50.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -300.000000 -36.000000 -15.000000,15.000000,0.000000 -5 -XuiMainMenuButton_L_Thin -0.000000,10.000000,0.000000 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiHowToList -480.000000 -90.000000 - - - -graphic_groupbackground -480.000000 -90.000000 -15 - - - -Bot_R -16.000000 -16.000000 -464.344818,74.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -448.344818 -16.000000 -16.000000,74.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,74.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -464.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -448.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -58.001961 -464.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -448.344818 -58.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -58.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -399.000000,60.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -431.000000,60.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -XuiMainMenuButton_List - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessed_NoIcon -440.000000 -140.000000 - - - -graphic_groupbackground -440.000000 -134.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,118.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,118.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,118.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -102.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -102.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -102.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,104.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,104.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -XuiListButton_L_NoIcon - - - - -XuiImagePresenter -40.000000 -40.000000 -30.000000,52.000000,0.000000 -16 - - - - -Title -400.000000 -20.000019,10.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -16.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessedThin_NoIcon -440.000000 -100.000000 - - - -graphic_groupbackground -440.000000 -100.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -68.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -68.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -XuiListButton_LThin_NoIcon - - - - -control_ScrollUp -22.000000 -15.000000 -381.000000,76.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -22.000000 -15.000000 -403.000000,76.000008,0.000000 -12 -XuiScrollEnd -1 - - - - -XuiImagePresenter -22.000000 -22.000000 -30.000000,33.517746,0.000000 -16 - - - - -Title -410.000000 -18.000000 -15.000000,8.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -12.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessed -440.000000 -140.000000 - - - -graphic_groupbackground -440.000000 -134.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,118.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,118.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,118.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -102.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -102.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -102.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,104.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,104.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -XuiListButton_L - - - - -XuiImagePresenter -40.000000 -40.000000 -30.000000,52.000000,0.000000 -16 - - - - -Title -400.000000 -20.000019,10.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -16.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessedThin -440.000000 -100.000000 - - - -graphic_groupbackground -440.000000 -100.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -68.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -68.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -XuiListButton_LThin - - - - -control_ScrollUp -22.000000 -15.000000 -381.000000,76.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -22.000000 -15.000000 -403.000000,76.000008,0.000000 -12 -XuiScrollEnd -1 - - - - -XuiImagePresenter -22.000000 -22.000000 -30.000000,33.517746,0.000000 -16 - - - - -Title -410.000000 -18.000000 -15.000000,8.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -12.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessedDLCThin -440.000000 -100.000000 - - - -graphic_groupbackground -440.000000 -100.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -68.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -68.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -XuiListButton_DLC_LThin - - - - -control_ScrollUp -22.000000 -15.000000 -381.000000,76.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -22.000000 -15.000000 -403.000000,76.000008,0.000000 -12 -XuiScrollEnd -1 - - - - -XuiImagePresenter -22.000000 -22.000000 -30.000000,33.517746,0.000000 -16 - - - - -Title -410.000000 -18.000000 -15.000000,8.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -12.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListRecessedDLC -440.000000 -140.000000 - - - -graphic_groupbackground -440.000000 -134.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,118.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Recess_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,118.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,118.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Recess_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -102.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_R.png -48 - - - - -Mid_M -408.344818 -102.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -102.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Recess_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,104.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,104.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -XuiListButton_DLC_L - - - - -XuiImagePresenter -40.000000 -40.000000 -30.000000,52.000000,0.000000 -16 - - - - -Title -400.000000 -20.000019,10.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -16.000000 -1040 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiList -440.000000 -140.000000 - - - -graphic_groupbackground -440.000000 -140.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,124.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,124.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,124.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -108.001961 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -408.344818 -108.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -108.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,110.000000,0.000000 -6 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,110.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -XuiListButton_L - - - - -XuiImagePresenter -40.000000 -40.000000 -30.000000,60.000000,0.000000 -16 - - - - -Title -400.000000 -32.000000 -20.000019,12.000000,0.000000 -5 -0xffebebeb -0xff0f0f0f -18.000000 -1041 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiListButton_L -400.000000 -60.000000 -15 - - - -highlight_graphic -400.000000 -60.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -60.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -320.000000 -28.000000 -66.000000,16.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -20757 - - - - -XuiImagePresenter -40.000000 -40.000000 -12.000000,10.000000,0.000000 -138 -16 -48 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiListButton_LThin -400.000000 -36.000000 -15 - - - -highlight_graphic -400.000000 -36.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -36.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -346.000000 -28.000000 -46.000000,4.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -11.000000 -20757 - - - - -XuiImagePresenter -28.000000 -28.000000 -8.000000,4.000000,0.000000 -11 -16 -48 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiListButton_L_NoIcon -400.000000 -60.000000 -15 - - - -highlight_graphic -400.000000 -60.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -60.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -374.000000 -28.000000 -12.000000,16.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -20757 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiListButton_LThin_NoIcon -400.000000 -40.000000 -15 - - - -highlight_graphic -400.000000 -40.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -40.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -384.000000 -28.000000 -8.000000,6.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -11.000000 -20757 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiLayoutListButtonSmall -84.000000 -24.000000 -15 - - - -Border -88.000000 -28.000000 --2.000000,-2.000000,0.000000 -false - - -0xff0f0f80 - - - - -0xffebeb0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -highlight_graphic -84.000000 -24.000000 -false -Graphics\LayoutButton_Over.png - - - - -button_graphic -84.000000 -24.000000 -Graphics\LayoutButton_Norm.png - - - - -text_Label -84.000000 -24.000000 -0xffebebeb -0xff0f0f0f -13.000000 -21525 - - - - -XuiSoundXACT -28.000000 -38.000000 -57.000000,17.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -EndInitFocus - -stop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -0.000000 - - - -0 -false -0.000000 - - - -0 -false -0.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -0.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.750000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -1 -1.000000 -false - - - -1 -1.000000 -false - - - -1 -0.500000 -true - - - -0 -0.500000 -true - - - -1 -0.500000 -true - - - -1 -0.500000 -true - - - -text_Label -TextColor -DropShadowColor -Position - - -1 -0xffebebeb -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -0.000000,0.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebebaf -0xff0f0f0f -0.000000,1.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffa0a0a0 -0xff0f0f0f -0.000000,0.000000,0.000000 - - - -1 -0xffa0a0a0 -0x800f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -0.000000,0.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -0.000000,0.000000,0.000000 - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiLayoutListButton -140.000000 -40.000000 -15 - - - -Border -148.000000 -48.000000 --4.000000,-4.000000,0.000000 -false - - -0xff0f0f80 - - - - -0xffebeb0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -highlight_graphic -140.000000 -40.000000 -false -Graphics\LayoutButton_Over.png - - - - -button_graphic -140.000000 -40.000000 -Graphics\LayoutButton_Norm.png - - - - -text_Label -120.000000 -28.000000 -10.000000,6.000000,0.000000 -0xffebebeb -0xff0f0f0f -16.000000 -21525 - - - - -XuiSoundXACT -28.000000 -38.000000 -57.000000,17.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -EndInitFocus - -stop - - -InitFocusDisable - - - -EndInitFocusDisable - -stop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -false -1.000000 - - - -0 -false -0.000000 - - - -0 -false -0.000000 - - - -0 -false -0.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -0.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.750000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -1 -1.000000 -false - - - -1 -1.000000 -false - - - -1 -0.500000 -true - - - -0 -0.500000 -true - - - -1 -0.500000 -true - - - -1 -0.500000 -true - - - -text_Label -TextColor -DropShadowColor -Position - - -1 -0xffebebeb -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -10.000000,6.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebebaf -0xff0f0f0f -11.000000,7.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -1 -0xffebebeb -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffebeb0f -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffa0a0a0 -0xff0f0f0f -10.000000,6.000000,0.000000 - - - -1 -0xffa0a0a0 -0x800f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -10.000000,6.000000,0.000000 - - - -0 -0xffa0a0a0 -0x800f0f0f -10.000000,6.000000,0.000000 - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -DebugList -500.000000 -80.000000 - - - -graphic_groupbackground -500.000000 -80.000000 -15 - - - -Bot_R -16.000000 -16.000000 -484.344818,64.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -468.344818 -16.000000 -16.000000,64.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,64.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -484.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -468.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -48.001961 -484.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -468.344818 -48.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -48.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -415.000000,52.000000,0.000000 -6 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -447.000000,52.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -DebugButton - - - - -XuiImagePresenter -85.000000 -68.000000 -41.000000,45.000000,0.000000 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiMainMenuButton_List -400.000000 -50.000000 -15 - - - -highlight_graphic -400.000000 -40.000000 -15 -false -Graphics\MainMenuButton_Over.png - - - - -button_graphic -400.000000 -40.000000 -15 -Graphics\MainMenuButton_Norm.png - - - - -text_Label -380.000000 -28.000000 -10.000000,6.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -21525 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -0.000000 -false - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiLayoutListSmall -366.000000 -88.000000 - - - -graphic_groupbackground -366.000000 -88.000000 -15 - - - -Bot_R -16.000000 -16.000000 -350.344818,72.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -334.344818 -16.000000 -16.000000,72.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,72.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -350.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -334.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -56.001953 -350.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -334.344818 -56.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -56.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -Title -348.564850 -21.299248 -20.000000,7.000000,0.000000 -7 -false -0xffebebeb -0xff0f0f0f -18.000000 -1041 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiLayoutList -480.000000 -124.000000 - - - -graphic_groupbackground -480.000000 -124.000000 -15 - - - -Bot_R -16.000000 -16.000000 -464.344818,108.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -448.344818 -16.000000 -16.000000,108.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,108.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -464.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -448.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -92.001953 -464.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -448.344818 -92.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -92.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ListItem -140.000000 -40.000000 -20.000000,40.000000,0.000000 -5 -XuiLayoutListButton -1 -140.000000,40.000000,0.000000 -10.000000,0.000000,0.000000 - - - - -Title -440.000031 -32.000000 -20.000000,7.000000,0.000000 -7 -false -0xffebebeb -0xff0f0f0f -18.000000 -1041 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiListButton_DLC_LThin -400.000000 -36.000000 -15 - - - -highlight_graphic -400.000000 -36.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -36.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -352.000000 -28.000000 -10.000000,4.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -11.000000 -20757 - - - - -XuiImagePresenter -28.000000 -28.000000 -364.000000,4.000000,0.000000 -14 -16 -48 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiListButton_DLC_L -400.000000 -60.000000 -15 - - - -highlight_graphic -400.000000 -60.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -60.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -330.000000 -28.000000 -16.000000,16.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -20757 - - - - -XuiImagePresenter -40.000000 -40.000000 -348.000000,10.000000,0.000000 -142 -16 -48 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiPlayerList_NoIcon -440.000000 -148.000000 - - - -graphic_groupbackground -440.000000 -148.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,132.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,132.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,132.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -116.001953 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -408.344818 -116.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -116.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,114.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,114.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -XuiListButton_L_NoIcon - - - - -XuiImagePresenter -40.000000 -40.000000 -30.000000,55.000000,0.000000 -16 - - - - -Title -400.000000 -20.000019,12.000000,0.000000 -7 -true -0xff323232 -0xff0f0f0f -18.000000 -272 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiPlayerListSmall_NoIcon -440.000000 -128.000000 - - - -graphic_groupbackground -440.000000 -128.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,112.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,112.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,112.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -96.001953 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -408.344818 -96.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -96.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,96.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,96.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -XuiListButton_LThin_NoIcon - - - - -XuiImagePresenter -32.000000 -32.000000 -30.000000,46.000000,0.000000 -false -16 - - - - -Title -400.000000 -26.000000 -20.000019,12.000000,0.000000 -7 -true -0xff323232 -0xff0f0f0f -16.000000 -272 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiPlayerListButton_LThin -400.000000 -36.000000 -15 -true - - - -highlight_graphic -400.000000 -36.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -36.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -290.000000 -28.000000 -102.000000,4.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -11.000000 -20757 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - -IconGroup -28.000000 -28.000000 -8.000000,4.000000,0.000000 -true - - - -Icon -28.000000 -28.000000 -true -16 -Graphics\InGameInfo\MapIcon_0.png -48 - - - - - -P0 - -stop - - -P1 - -stop - - -P2 - -stop - - -P3 - -stop - - -P4 - -stop - - -P5 - -stop - - -P6 - -stop - - -P7 - -stop - - -P8 - -stop - - -P9 - -stop - - -P10 - -stop - - -P11 - -stop - - -P12 - -stop - - -P13 - -stop - - -P14 - -stop - - -P15 - -stop - - - -Icon -ImagePath - - -0 -Graphics\InGameInfo\MapIcon_0.png - - - -0 -Graphics\InGameInfo\MapIcon_1.png - - - -0 -Graphics\InGameInfo\MapIcon_2.png - - - -0 -Graphics\InGameInfo\MapIcon_3.png - - - -0 -Graphics\InGameInfo\MapIcon_4.png - - - -0 -Graphics\InGameInfo\MapIcon_5.png - - - -0 -Graphics\InGameInfo\MapIcon_6.png - - - -0 -Graphics\InGameInfo\MapIcon_7.png - - - -0 -Graphics\InGameInfo\MapIcon_8.png - - - -0 -Graphics\InGameInfo\MapIcon_9.png - - - -0 -Graphics\InGameInfo\MapIcon_10.png - - - -0 -Graphics\InGameInfo\MapIcon_11.png - - - -0 -Graphics\InGameInfo\MapIcon_12.png - - - -0 -Graphics\InGameInfo\MapIcon_13.png - - - -0 -Graphics\InGameInfo\MapIcon_14.png - - - -0 -Graphics\InGameInfo\MapIcon_15.png - - - - - - -VoiceGroup -28.000000 -28.000000 -36.000000,4.000000,0.000000 -true - - - -Icon -28.000000 -28.000000 -false -16 -48 - - - - - -Normal - -stop - - -Muted - -stop - - -Speaking - -stop - - -NotSpeaking - -stop - - - -Icon -ImagePath -Show - - -0 - -false - - - -0 -Graphics\InGameInfo\voiceMuted.png -true - - - -0 -Graphics\InGameInfo\voiceSpeaking.png -true - - - -0 -Graphics\InGameInfo\voiceNotSpeaking.png -true - - - - - - -OpsGroup -28.000000 -28.000000 -64.000000,4.000000,0.000000 -true - - - -OpsPresenter -28.000000 -28.000000 -0.000008,0.000001,0.000000 -128 -16 -2 -48 - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiPlayerListButton_L -400.000000 -60.000000 -15 -true - - - -highlight_graphic -400.000000 -60.000000 -15 -false -Graphics\ListButton_Over.png - - - - -button_graphic -400.000000 -60.000000 -15 -Graphics\ListButton_Norm.png - - - - -text_Label -240.000000 -28.000000 -146.000000,16.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -20757 - - - - -XuiSoundXACT -99.000000 -66.000000 -101.000000,14.000000,0.000000 - - - - -IconGroup -40.000000 -40.000000 -11.999999,9.999999,0.000000 -true - - - -Icon -40.000000 -40.000000 -true -16 -Graphics\InGameInfo\MapIcon_0.png -48 - - - - - -P0 - -stop - - -P1 - -stop - - -P2 - -stop - - -P3 - -stop - - -P4 - -stop - - -P5 - -stop - - -P6 - -stop - - -P7 - -stop - - -P8 - -stop - - -P9 - -stop - - -P10 - -stop - - -P11 - -stop - - -P12 - -stop - - -P13 - -stop - - -P14 - -stop - - -P15 - -stop - - - -Icon -ImagePath - - -0 -Graphics\InGameInfo\MapIcon_0.png - - - -0 -Graphics\InGameInfo\MapIcon_1.png - - - -0 -Graphics\InGameInfo\MapIcon_2.png - - - -0 -Graphics\InGameInfo\MapIcon_3.png - - - -0 -Graphics\InGameInfo\MapIcon_4.png - - - -0 -Graphics\InGameInfo\MapIcon_5.png - - - -0 -Graphics\InGameInfo\MapIcon_6.png - - - -0 -Graphics\InGameInfo\MapIcon_7.png - - - -0 -Graphics\InGameInfo\MapIcon_8.png - - - -0 -Graphics\InGameInfo\MapIcon_9.png - - - -0 -Graphics\InGameInfo\MapIcon_10.png - - - -0 -Graphics\InGameInfo\MapIcon_11.png - - - -0 -Graphics\InGameInfo\MapIcon_12.png - - - -0 -Graphics\InGameInfo\MapIcon_13.png - - - -0 -Graphics\InGameInfo\MapIcon_14.png - - - -0 -Graphics\InGameInfo\MapIcon_15.png - - - - - - -VoiceGroup -39.999992 -40.000000 -52.000000,9.999999,0.000000 -true - - - -Icon -40.000000 -40.000000 -false -16 -48 - - - - - -Normal - -stop - - -Muted - -stop - - -Speaking - -stop - - -NotSpeaking - -stop - - - -Icon -ImagePath -Show - - -0 - -false - - - -0 -Graphics\InGameInfo\voiceMuted.png -true - - - -0 -Graphics\InGameInfo\voiceSpeaking.png -true - - - -0 -Graphics\InGameInfo\voiceNotSpeaking.png -true - - - - - - -OpsGroup -39.999992 -40.000000 -91.999992,9.999999,0.000000 -true - - - -OpsPresenter -40.000000 -40.000000 -0.000008,0.000001,0.000000 -138 -16 -2 -48 - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -false - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -SoundBank -WaveBank -Cue - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -0 - - - - - - -0 - - - - - - -0 -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb -ButtonPress - - - -0 - - - - - - - - - -XuiPlayerListSmall -440.000000 -128.000000 - - - -graphic_groupbackground -440.000000 -128.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,112.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,112.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,112.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -96.001953 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -408.344818 -96.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -96.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,96.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,96.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -XuiPlayerListButton_LThin - - - - -Title -400.000000 -26.000000 -20.000019,12.000000,0.000000 -7 -true -0xff323232 -0xff0f0f0f -16.000000 -272 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiPlayerList -440.000000 -148.000000 - - - -graphic_groupbackground -440.000000 -148.000000 -15 - - - -Bot_R -16.000000 -16.000000 -424.344818,132.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -408.344818 -16.000000 -16.000000,132.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,132.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -424.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -408.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -116.001953 -424.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -408.344818 -116.001953 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -116.001953 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -32.000000 -22.000000 -355.000000,114.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -32.000000 -22.000000 -387.000000,114.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -XuiPlayerListButton_L - - - - -Title -400.000000 -20.000019,12.000000,0.000000 -7 -true -0xff323232 -0xff0f0f0f -18.000000 -272 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -graphic_groupbackground -Opacity - - -0 -1.000000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -0.500000 - - - -0 -1.000000 - - - - - - -XuiLeaderboardEntry -940.000000 -44.000000 -15 - - - -button_graphic -940.000000 -40.000000 -15 -Graphics\LeaderboardButton_Norm.png - - - - -highlight_graphic -940.000000 -40.000000 -15 -false -Graphics\LeaderboardButton_Over.png - - - - -text_Ranking -116.000000 -40.000000 -9.000000,0.000000,0.000000 -10 -0xffffffff -0xff0f0f0f -16.000000 -5141 - - - - -text_Gamertag -272.000000 -40.000000 -127.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -15 -0xffffffff -0xff0f0f0f -16.000000 -21525 -1 - - - - -text_Column1 -75.000000 -40.000000 -405.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -3 - - - - -text_Column2 -75.000000 -40.000000 -480.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -4 - - - - -text_Column3 -75.000000 -40.000000 -555.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -5 - - - - -text_Column4 -75.000000 -40.000000 -630.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -6 - - - - -text_Column5 -75.000000 -40.000000 -705.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -7 - - - - -text_Column6 -75.000000 -40.000000 -780.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -8 - - - - -text_Column7 -75.000000 -40.000000 -855.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffffffff -0xff0f0f0f -16.000000 -5141 -9 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Ranking -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Gamertag -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column1 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column2 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column3 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column4 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column5 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column6 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column7 -TextColor - - -1 -0xffffffff - - - -0 -0xffffffff - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -highlight_graphic -Show -Height - - -0 -false -40.000000 - - - -0 -false -50.000000 - - - -0 -true -40.000000 - - - -0 -true -40.000000 - - - -button_graphic -Show - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - - - - -XuiListLeaderboard -980.000000 -120.000000 - - - -graphic_groupbackground -980.000000 -150.000000 -15 - - - -Bot_R -16.000000 -16.000000 -964.344849,134.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -948.344849 -16.000000 -16.000000,134.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,134.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -964.344849,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -948.344849 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -118.001961 -964.344849,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -948.344849 -118.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -118.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollDown -32.000000 -22.000000 -928.000000,118.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ScrollUp -32.000000 -22.000000 -896.000000,118.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ListItem -940.000000 -44.000000 -20.000032,71.000000,0.000000 -15 -XuiLeaderboardEntry -22594 - - - - -XuiLabel_Rank -116.000000 -22.000000 -29.000000,26.000000,0.000000 -10 -false -XuiLabelDarkCentred - - - - -XuiLabel_Gamertag -272.000000 -22.000000 -147.000000,26.000000,0.000000 -15 -false -XuiLabelDarkCentred - - - - -XuiHSlot1 -46.000000 -46.000000 -439.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot2 -46.000000 -46.000000 -514.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot3 -46.000000 -46.000000 -589.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot4 -46.000000 -46.000000 -664.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot5 -46.000000 -46.000000 -739.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot6 -46.000000 -46.000000 -814.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - -XuiHSlot7 -46.000000 -46.000000 -889.500000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiLeaderboardEntrySmall -540.000000 -22.000000 -15 - - - -button_graphic -540.000000 -20.000000 -15 -Graphics\LeaderboardButton_Norm.png - - - - -highlight_graphic -540.000000 -20.000000 -15 -false -Graphics\LeaderboardButton_Over.png - - - - -text_Ranking -52.000000 -20.000000 -4.000000,0.000000,0.000000 -11 -0xffebebeb -0xff0f0f0f -8.000000 -5140 - - - - -text_Gamertag -186.000000 -20.000000 -58.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -15 -0xffebebeb -0xff0f0f0f -8.000000 -21524 -1 - - - - -text_Column1 -40.000000 -20.000000 -246.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -3 - - - - -text_Column2 -40.000000 -20.000000 -288.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -4 - - - - -text_Column3 -40.000000 -20.000000 -330.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -5 - - - - -text_Column4 -40.000000 -20.000000 -372.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -6 - - - - -text_Column5 -40.000000 -20.000000 -414.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -7 - - - - -text_Column6 -40.000000 -20.000000 -456.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -8 - - - - -text_Column7 -40.000000 -20.000000 -498.000000,0.000000,0.000000 -0.000000,-0.000000,0.000000,0.999999 -14 -0xffebebeb -0xff0f0f0f -8.000000 -5140 -9 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Ranking -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Gamertag -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column1 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column2 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column3 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column4 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column5 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column6 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -text_Column7 -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebcc0f - - - -0 -0xffebcc0f - - - -highlight_graphic -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -button_graphic -Show - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - - - - -XuiListLeaderboardSmall -560.000000 -100.000000 - - - -graphic_groupbackground -560.000000 -100.000000 -15 - - - -Bot_R -16.000000 -16.000000 -544.344849,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -528.344849 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -544.344849,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -528.344849 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -68.001961 -544.344849,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -528.344849 -68.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - -control_ScrollUp -22.000000 -15.000000 -506.000000,76.000000,0.000000 -12 -XuiScrollEndUp - - - - -control_ScrollDown -22.000000 -15.000000 -528.000000,76.000008,0.000000 -12 -XuiScrollEnd -1 - - - - -control_ListItem -540.000000 -22.000000 -10.000000,52.000000,0.000000 -15 -XuiLeaderboardEntrySmall -22594 -0.000000,2.000000,0.000000 - - - - -XuiLabel_Rank -20.000000 -10.000000,21.000000,0.000000 -2 -false -XuiLabelDarkCentredSmall - - - - -XuiLabel_Gamertag -186.000000 -20.000000 -68.000000,21.000000,0.000000 -2 -false -XuiLabelDarkCentredSmall - - - - -XuiHSlot1 -32.000000 -32.000000 -260.000000,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot2 -32.000000 -32.000000 -301.999969,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot3 -32.000000 -32.000000 -343.999969,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot4 -32.000000 -32.000000 -385.999939,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot5 -32.000000 -32.000000 -427.999939,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot6 -32.000000 -32.000000 -469.999939,15.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - -XuiHSlot7 -32.000000 -32.000000 -512.000000,16.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemButton32 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonRed72 -72.000000 -72.000000 - - - -Box -72.000000 -72.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -BoxRed -72.000000 -72.000000 -15 -false -4 -Graphics\IconHolderRed.png -48 - - - - -image -65.000000 -65.000000 -4.000000,4.000000,0.000000 -207 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -64.000000 -64.000000 -4.000000,4.000000,0.000000 -0.000000 -207 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - -text_name -191.041656 -27.000000 -12.000000,-12.000000,1.000000 -3 -false -0xffebebeb -0xdc0f0f0f -18.000000 -273 -2 - - - - -Exclaim -16.000000 -16.000000 -2.000000,2.000000,0.000000 -3 -false -Graphics\Warning.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - -text_name -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - -0 -false - - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - - - - -ItemButtonRedSmall -38.000000 -38.000000 - - - -Box -38.000000 -38.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -BoxRed -38.000000 -38.000000 -15 -false -4 -Graphics\IconHolderRed_Small.png -48 - - - - -image -34.000000 -34.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -34.000000 -34.000000 -2.000000,2.000000,0.000000 -0.000000 -207 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - -text_name -321.000000 -34.000000 -42.000000,2.000000,1.000000 -15 -false -0xff323232 -0xdc0f0f0f -12.000000 -4368 -2 - - - - -Exclaim -16.000000 -16.000000 -1.000000,1.000000,0.000000 -3 -false -Graphics\Warning.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButtonRed -42.000000 -42.000000 - - - -Box -42.000000 -42.000000 -15 -4 -Graphics\IconHolder.png - - - - -BoxRed -42.000000 -42.000000 -15 -false -4 -Graphics\IconHolderRed.png -48 - - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -207 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - -text_name -320.000000 -42.000000 -42.000000,0.000000,1.000000 -15 -false -0xff3c3c3c -0xdc0f0f0f -4368 -2 - - - - -Exclaim -16.000000 -16.000000 -2.000000,2.000000,0.000000 -3 -false -Graphics\Warning.png - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridVerticalSmall -32.000000 -32.000000 - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButton22 -22.000000 -22.000000 - - - -Box -22.000000 -22.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -image -20.000000 -20.000000 -1.000000,1.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -20.000000 -20.000000 -1.000000,1.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButton24 -24.000000 -24.000000 - - - -Box -24.000000 -24.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -image -22.000000 -22.000000 -1.000000,1.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -22.000000 -22.000000 -1.000000,1.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButton26 -26.000000 -26.000000 - - - -Box -26.000000 -26.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -image -22.000000 -22.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -24.000000 -24.000000 -1.000000,1.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButton32 -32.000000 -32.000000 - - - -Box -32.000000 -32.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -image -28.000000 -28.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -28.000000 -28.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButton54 -54.000000 -54.000000 - - - -Box -54.000000 -54.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -image -48.000000 -48.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -48.000000 -48.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridVertical22 -22.000000 -22.000000 - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridVertical24 -24.000000 -24.000000 - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridVertical54 -54.000000 -54.000000 - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridVertical26 -26.000000 -26.000000 - - - -control_ListItem -26.000000 -26.000000 -7 -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridVertical32 -32.000000 -32.000000 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridVertical -60.000000 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButton -42.000000 -42.000000 - - - -Box -42.000000 -42.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemPointer -42.000000 -42.000000 - - - -item_image -42.000000 -42.000000 -5.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -pointer_image -42.000000 -42.000000 -15 -2 -Graphics\Pointer.png -48 - - - - -text_panel -32.000000 -32.000000 -24.000000,-12.000000,0.000000 -15 -PointerTextPanel - - - - -text_name -22.000000 -21.000000 -28.000000,-7.000000,0.000000 -33 - - - - -text_measurer -240.000000 -40.000000 --16.435925,-75.812302,0.000000 -false -0xff0f0f0f -0x800f0f0f -1041 - - - - - -PointerTextPanel -32.000000 -32.000000 - - - -graphic_groupbackground -32.000000 -32.000000 -15 - - - -Bot_R -8.000000 -8.000000 -24.000000,24.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -16.000000 -8.000000 -8.000000,24.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,24.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -24.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -16.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -16.000000 -24.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -16.000000 -16.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -16.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - - -ItemPointerSmall -26.000000 -26.000000 - - - -item_image -26.000000 -26.000000 -7.000000,3.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -pointer_image -26.000000 -26.000000 -15 -2 -Graphics\Pointer.png -48 - - - - -text_panel -32.000000 -32.000000 -24.000000,-12.000000,0.000000 -15 -PointerTextPanel - - - - -text_name -22.000000 -21.000000 -28.000000,-7.000000,0.000000 -33 - - - - -text_measurer -240.000000 -40.000000 --16.435925,-75.812302,0.000000 -false -0xff0f0f0f -0x800f0f0f -12.000000 -1041 - - - - - -ItemGridVertical64 -64.000000 -64.000000 - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButton64 -64.000000 -64.000000 - - - -Box -64.000000 -64.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -image -58.000000 -58.000000 -3.000000,3.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -58.000000 -58.000000 -3.000000,3.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemIconBlankSmall -22.000000 -22.000000 - - - -image -22.000000 -22.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - - - - -ItemIconBlank -42.000000 -42.000000 - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - - - - -ItemIcon -64.000000 -64.000000 - - - -Box -64.000000 -64.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -image -58.000000 -58.000000 -3.000000,3.000000,0.000000 -15 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - - - - -BeaconButton -44.000000 -44.000000 -15 - - - -Button -44.000000 -44.000000 -Graphics\Beacon_Button_Normal.png - - - - -Icon -36.000000 -36.000000 -4.000000,4.000000,0.000000 -15 -true - - - -Icon -36.000000 -36.000000 -false -16 -48 - - - - - -Normal - -stop - - -Tick - -stop - - -Cross - -stop - - -Blindness - -stop - - -Fire_Resistance - -stop - - -Haste - -stop - - -Hunger - -stop - - -Invisibility - -stop - - -Jump_Boost - -stop - - -Mining_Fatigue - -stop - - -Nausea - -stop - - -Night_Vision - -stop - - -Poison - -stop - - -Regeneration - -stop - - -Resistance - -stop - - -Slowness - -stop - - -Speed - -stop - - -Strength - -stop - - -Water_Breathing - -stop - - -Weakness - -stop - - -Wither - -stop - - -HealthBoost - -stop - - -Absorption - -stop - - - -Icon -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\Beacon_Button_Tick.png - - - -0 -true - - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Blindness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Fire_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Haste.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Hunger.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Invisibility.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Jump_Boost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Mining_Fatigue.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Nausea.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Night_Vision.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Poison.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Regeneration.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Slowness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Speed.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Strength.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Water_Breathing.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Weakness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Wither.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - - - - - -Normal - -stop - - -Pressed - -stop - - -Disabled - -stop - - -Hover - -stop - - - -Button -ImagePath - - -0 -Graphics\Beacon_Button_Normal.png - - - -0 -Graphics\Beacon_Button_Pressed.png - - - -0 -Graphics\Beacon_Button_Disabled.png - - - -0 -Graphics\Beacon_Button_Hover.png - - - - - - -BeaconButtonSmall -22.000000 -22.000000 -15 - - - -Button -22.000000 -22.000000 -8 -Graphics\Beacon_Button_Normal.png - - - - -Icon -18.000000 -18.000000 -2.000000,2.000000,0.000000 -15 -true - - - -Icon -18.000000 -18.000000 -false -16 -48 - - - - - -Normal - -stop - - -Tick - -stop - - -Cross - -stop - - -Blindness - -stop - - -Fire_Resistance - -stop - - -Haste - -stop - - -Hunger - -stop - - -Invisibility - -stop - - -Jump_Boost - -stop - - -Mining_Fatigue - -stop - - -Nausea - -stop - - -Night_Vision - -stop - - -Poison - -stop - - -Regeneration - -stop - - -Resistance - -stop - - -Slowness - -stop - - -Speed - -stop - - -Strength - -stop - - -Water_Breathing - -stop - - -Weakness - -stop - - -Wither - -stop - - -HealthBoost - -stop - - -Absorption - -stop - - - -Icon -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\Beacon_Button_Tick.png - - - -0 -true - - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Blindness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Fire_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Haste.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Hunger.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Invisibility.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Jump_Boost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Mining_Fatigue.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Nausea.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Night_Vision.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Poison.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Regeneration.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Slowness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Speed.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Strength.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Water_Breathing.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Weakness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Wither.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - - - - - -Normal - -stop - - -Pressed - -stop - - -Disabled - -stop - - -Hover - -stop - - - -Button -ImagePath -SizeMode - - -0 -Graphics\Beacon_Button_Normal.png -8 - - - -0 -Graphics\Beacon_Button_Pressed.png -4 - - - -0 -Graphics\Beacon_Button_Disabled.png -8 - - - -0 -Graphics\Beacon_Button_Hover.png -8 - - - - - - -ItemGridHorseArmor -42.000000 -42.000000 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonHorseArmor -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonHorseArmor -42.000000 -42.000000 - - - -Box -42.000000 -42.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -Icon -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -16 -Graphics\Horse_Armor_Slot.png -48 - - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridHorseSaddle -42.000000 -42.000000 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonHorseSaddle -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonHorseSaddle -42.000000 -42.000000 - - - -Box -42.000000 -42.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -Icon -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -16 -Graphics\Horse_Saddle_Slot.png -48 - - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -HorsePanel -283.000000 -36.000000 - - - -graphic_Middle -282.000000 -35.000000 -15 - - -0xff646464 - - - - -0xff0f0f0f - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - -graphic_BottomEdge -283.000000 -2.000000 -0.000000,34.000000,0.000000 -13 - - -0xffebebeb - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119690,0.000000,0,242.119690,0.000000,242.119690,0.000000,242.119690,2.000000,0,242.119690,2.000000,242.119690,2.000000,0.000000,2.000000,0,0.000000,2.000000,0.000000,2.000000,0.000000,0.000000,0, - - - - -graphic_CapLeft -2.000000 -36.000000 -11 - - -0xff646464 - - - - -0xff373737 - - -true -4 -0xff7d7d7d -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.086275 -0.466667 -0.494118 -0.682353 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,3.000000,0.000000,0,3.000000,0.000000,3.000000,0.000000,3.000000,35.000000,0,3.000000,35.000000,3.000000,35.000000,0.000000,35.000000,0,0.000000,35.000000,0.000000,35.000000,0.000000,0.000000,0, - - - - -graphic_CapRight -2.000000 -35.000000 -281.000000,0.000000,0.000000 -14 - - -0xff646464 - - - - -0xffebebeb - - -true -4 -0xff7d7d7d -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.086275 -0.466667 -0.494118 -0.682353 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,3.000000,0.000000,0,3.000000,0.000000,3.000000,0.000000,3.000000,35.000000,0,3.000000,35.000000,3.000000,35.000000,0.000000,35.000000,0,0.000000,35.000000,0.000000,35.000000,0.000000,0.000000,0, - - - - -graphic_TopEdge -283.000000 -2.000000 -7 - - -0xff373737 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119720,0.000000,0,242.119720,0.000000,242.119720,0.000000,242.119720,2.000000,0,242.119720,2.000000,242.119720,2.000000,0.000000,2.000000,0,0.000000,2.000000,0.000000,2.000000,0.000000,0.000000,0, - - - - -HorseControl -283.000000 -36.000000 -15 -CXuiCtrlMinecraftHorse - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Middle -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopPos - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.592157 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.592157 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.592157 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.592157 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -1 -0.490196 -0xff8cb48c -0xff8cb48c -0xff8ca08c -0xff649664 -0xff8cb48c -0.376471 - - - -2 -0 -0 -50 -0.490196 -0xff8cb48c -0xff8cb48c -0xff8ca08c -0xff649664 -0xff8cb48c -0.376471 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.592157 - - - -graphic_BottomEdge -Fill.FillColor - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -1 -0xffb4b4b4 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -graphic_TopEdge -Fill.FillColor - - -1 -0xff373737 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -1 -0xffb4b4b4 - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -graphic_CapLeft -Fill.FillColor - - -1 -0xff373737 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -graphic_CapRight -Fill.FillColor - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - - - - -HtmlItemDescriptionSmall -32.000000 -32.000000 - - - -text_panel -32.000000 -32.000000 -15 -PointerTextPanel - - - - -text_name -22.000000 -21.000000 -4.000000,5.000000,0.000000 -15 - - - - -text_measurer -240.000000 -40.000000 --16.435925,-75.812302,0.000000 -false -0xff0f0f0f -0x800f0f0f -12.000000 -1041 - - - - - -HtmlItemDescription -32.000000 -32.000000 - - - -text_panel -32.000000 -32.000000 -15 -PointerTextPanel - - - - -text_name -22.000000 -21.000000 -4.000000,5.000000,0.000000 -15 - - - - -text_measurer -240.000000 -40.000000 --16.435925,-75.812302,0.000000 -false -0xff0f0f0f -0x800f0f0f -1041 - - - - - -InventoryArmourBackground -42.000000 -168.000000 - - - -FeetBox -42.000000 -42.000000 -0.000107,126.000000,0.000000 -4 -Graphics\IconHolder.png - - - - -LegsBox -42.000000 -42.000000 -0.000107,84.000000,0.000000 -4 -Graphics\IconHolder.png - - - - -BodyBox -42.000000 -42.000000 -0.000107,42.000004,0.000000 -4 -Graphics\IconHolder.png - - - - -HeadBox -42.000000 -42.000000 -0.000107,0.000004,0.000000 -4 -Graphics\IconHolder.png - - - - -FeetIcon -38.000000 -38.000000 -2.000000,128.000000,0.000000 -4 -Graphics\Armour_Slot_Feet.png -48 - - - - -LegsIcon -38.000000 -38.000000 -2.000000,86.000000,0.000000 -4 -Graphics\Armour_Slot_Legs.png -48 - - - - -BodyIcon -38.000000 -38.000000 -2.000000,44.000000,0.000000 -4 -Graphics\Armour_Slot_Body.png -48 - - - - -HeadIcon -38.000000 -38.000000 -2.000000,2.000000,0.000000 -4 -Graphics\Armour_Slot_Head.png -48 - - - - - -InventoryArmourBackgroundSmall -26.000000 -104.000000 - - - -FeetBox -26.000000 -26.000000 -0.000107,78.000000,0.000000 -4 -Graphics\IconHolder_Small.png - - - - -LegsBox -26.000000 -26.000000 -0.000107,52.000000,0.000000 -4 -Graphics\IconHolder_Small.png - - - - -BodyBox -26.000000 -26.000000 -0.000107,26.000004,0.000000 -4 -Graphics\IconHolder_Small.png - - - - -HeadBox -26.000000 -26.000000 -0.000107,0.000004,0.000000 -4 -Graphics\IconHolder_Small.png - - - - -FeetIcon -26.000000 -26.000000 -0.000000,78.000000,0.000000 -4 -Graphics\Armour_Slot_Feet.png -48 - - - - -LegsIcon -26.000000 -26.000000 -0.000000,52.000000,0.000000 -4 -Graphics\Armour_Slot_Legs.png -48 - - - - -BodyIcon -26.000000 -26.000000 -0.000000,26.000000,0.000000 -4 -Graphics\Armour_Slot_Body.png -48 - - - - -HeadIcon -26.000000 -26.000000 -4 -Graphics\Armour_Slot_Head.png -48 - - - - - -MobEffect -260.000000 -58.000000 -15 - - - -graphic_groupbackground -260.000000 -58.000000 -15 - - - -Bot_R -8.000000 -8.000000 -252.000000,50.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -244.000000 -8.000000 -8.000000,50.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,50.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -252.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -244.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -42.000000 -252.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -244.000000 -42.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -42.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - -Icon -36.000000 -36.000000 -7.000000,10.000000,0.000000 -false -16 -48 - - - - -EffectName -204.000000 -22.000000 -47.000000,5.000000,0.000000 -4 -0xffebebeb -0xff606060 -17 -1 - - - - -EffectDuration -204.000000 -22.000000 -47.000000,27.000000,0.000000 -4 -0xffa0a0a0 -0xff0f0f0f -17 -2 - - - - - -Normal - -stop - - -Blindness - -stop - - -Fire_Resistance - -stop - - -Haste - -stop - - -Hunger - -stop - - -Invisibility - -stop - - -Jump_Boost - -stop - - -Mining_Fatigue - -stop - - -Nausea - -stop - - -Night_Vision - -stop - - -Poison - -stop - - -Regeneration - -stop - - -Resistance - -stop - - -Slowness - -stop - - -Speed - -stop - - -Strength - -stop - - -Water_Breathing - -stop - - -Weakness - -stop - - -Wither - -stop - - -HealthBoost - -stop - - -Absorption - -stop - - - -Icon -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Blindness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Fire_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Haste.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Hunger.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Invisibility.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Jump_Boost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Mining_Fatigue.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Nausea.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Night_Vision.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Poison.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Regeneration.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Slowness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Speed.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Strength.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Water_Breathing.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Weakness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Wither.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - - - - -MobEffect_Small -160.000000 -36.000000 -15 - - - -graphic_groupbackground -160.000000 -36.000000 -15 - - - -Bot_R -8.000000 -8.000000 -152.000000,28.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -144.000000 -8.000000 -8.000000,28.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,28.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -152.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -144.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -20.000000 -152.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -144.000000 -20.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -20.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - -Icon -18.000000 -18.000000 -6.000000,8.000000,0.000000 -false -16 -48 - - - - -EffectName -125.000000 -20.000000 -27.000000,1.000000,0.000000 -4 -0xffebebeb -0xff606060 -12.000000 -17 -1 - - - - -EffectDuration -125.000000 -20.000000 -27.000000,15.000000,0.000000 -4 -0xffa0a0a0 -0xff0f0f0f -12.000000 -17 -2 - - - - - -Normal - -stop - - -Blindness - -stop - - -Fire_Resistance - -stop - - -Haste - -stop - - -Hunger - -stop - - -Invisibility - -stop - - -Jump_Boost - -stop - - -Mining_Fatigue - -stop - - -Nausea - -stop - - -Night_Vision - -stop - - -Poison - -stop - - -Regeneration - -stop - - -Resistance - -stop - - -Slowness - -stop - - -Speed - -stop - - -Strength - -stop - - -Water_Breathing - -stop - - -Weakness - -stop - - -Wither - -stop - - -HealthBoost - -stop - - -Absorption - -stop - - - -Icon -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Blindness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Fire_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Haste.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Hunger.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Invisibility.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Jump_Boost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Mining_Fatigue.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Nausea.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Night_Vision.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Poison.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Regeneration.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Resistance.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Slowness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Speed.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Strength.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Water_Breathing.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Weakness.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_Wither.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - -0 -true -Graphics\PotionEffect\Potion_Effect_Icon_HealthBoost.png - - - - - - -CharacterPanel -283.000000 -36.000000 - - - -graphic_Middle -282.000000 -35.000000 -15 - - -0xff646464 - - - - -0xff0f0f0f - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - -graphic_BottomEdge -283.000000 -2.000000 -0.000000,34.000000,0.000000 -13 - - -0xffebebeb - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119690,0.000000,0,242.119690,0.000000,242.119690,0.000000,242.119690,2.000000,0,242.119690,2.000000,242.119690,2.000000,0.000000,2.000000,0,0.000000,2.000000,0.000000,2.000000,0.000000,0.000000,0, - - - - -graphic_CapLeft -2.000000 -36.000000 -11 - - -0xff646464 - - - - -0xff373737 - - -true -4 -0xff7d7d7d -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.086275 -0.466667 -0.494118 -0.682353 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,3.000000,0.000000,0,3.000000,0.000000,3.000000,0.000000,3.000000,35.000000,0,3.000000,35.000000,3.000000,35.000000,0.000000,35.000000,0,0.000000,35.000000,0.000000,35.000000,0.000000,0.000000,0, - - - - -graphic_CapRight -2.000000 -35.000000 -281.000000,0.000000,0.000000 -14 - - -0xff646464 - - - - -0xffebebeb - - -true -4 -0xff7d7d7d -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.086275 -0.466667 -0.494118 -0.682353 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,3.000000,0.000000,0,3.000000,0.000000,3.000000,0.000000,3.000000,35.000000,0,3.000000,35.000000,3.000000,35.000000,0.000000,35.000000,0,0.000000,35.000000,0.000000,35.000000,0.000000,0.000000,0, - - - - -graphic_TopEdge -283.000000 -2.000000 -7 - - -0xff373737 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119720,0.000000,0,242.119720,0.000000,242.119720,0.000000,242.119720,2.000000,0,242.119720,2.000000,242.119720,2.000000,0.000000,2.000000,0,0.000000,2.000000,0.000000,2.000000,0.000000,0.000000,0, - - - - -PlayerControl -283.000000 -36.000000 -15 -CXuiCtrlMinecraftPlayer - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Middle -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Fill.Gradient.StopPos - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.592157 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.592157 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.592157 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.592157 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -1 -0.490196 -0xff8cb48c -0xff8cb48c -0xff8ca08c -0xff649664 -0xff8cb48c -0.376471 - - - -2 -0 -0 -50 -0.490196 -0xff8cb48c -0xff8cb48c -0xff8ca08c -0xff649664 -0xff8cb48c -0.376471 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.592157 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.592157 - - - -graphic_BottomEdge -Fill.FillColor - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -1 -0xffb4b4b4 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -graphic_TopEdge -Fill.FillColor - - -1 -0xff373737 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -1 -0xffb4b4b4 - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -graphic_CapLeft -Fill.FillColor - - -1 -0xff373737 - - - -0 -0xffebebeb - - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -graphic_CapRight -Fill.FillColor - - -1 -0xffebebeb - - - -0 -0xff0f0f0f - - - -1 -0xff0f0f0f - - - -0 -0xff0f0f0f - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebebeb - - - - - - -ArrowProgressState -72.000000 -48.000000 - - - -control_for_data_binding_only -155.000000 -23.000000 -8.000000,85.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - -ProgressBody -72.000000 -48.000000 -15 - - - -ArrowOff -72.000000 -48.000000 -Graphics\Arrow_Off.png - - - - -ArrowOn -0.000000 -48.000000 -false -Graphics\Arrow_On.png - - - - -ArrowOn -Anchor -Width -Show - - -0 -0 -0.000000 -false - - - -0 -0 -2.400000 -true - - - -0 -8 -72.000000 -true - - - - - - - -Normal - - - -EndNormal - - - - - - - -FlameProgressState -48.000000 -48.000000 - - - -ProgressBody -48.000000 -48.000000 -207 - - - -FlameOff -48.000000 -48.000000 -Graphics\Flame_Off.png - - - - -FlameOn -48.000000 -0.000000 -48.000000,48.000000,0.000000 -0.000000,-0.000000,-1.000000,0.000000 -false -Graphics\Flame_On.png - - - - -FlameOn -Height -Anchor -Show - - -0 -0.000000 -0 -false - - - -0 -1.600000 -0 -true - - - -0 -48.000000 -8 -true - - - - - - -control_for_data_binding_only -155.000000 -23.000000 -15.000001,80.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - - -Normal - - - -EndNormal - - - - - - - -ItemGridArmour -60.000000 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonArmour -42.000000 -42.000000 - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -CraftingProgressArrowSmall -32.000000 -32.000000 - - - -ProgressBody -32.000000 -32.000000 -15 - - - -Arrow_Off -32.000000 -32.000000 -Graphics\Arrow_Small_Off.png - - - - -Arrow_On -32.000000 -32.000000 -1 -false -Graphics\Arrow_Small_On.png - - - - -Arrow_On -Show -Width - - -0 -false -32.000000 - - - -0 -true -0.000000 - - - -0 -true -32.000000 - - - -0 -false -32.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -FlameProgressStateSmall -32.000000 -32.000000 - - - -ProgressBody -32.000000 -32.000000 -207 - - - -FlameOff -32.000000 -32.000000 -4 -Graphics\Flame_Off_Small.png - - - - -FlameOn -32.000000 -0.000000 -32.000000,32.000000,0.000000 -0.000000,-0.000000,-1.000000,0.000000 -false -Graphics\Flame_On_Small.png - - - - -FlameOn -Height -Anchor -Show - - -0 -0.000000 -0 -false - - - -0 -1.600000 -0 -true - - - -0 -32.000000 -8 -true - - - - - - -control_for_data_binding_only -155.000000 -23.000000 -15.000001,80.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - - -Normal - - - -EndNormal - - - - - - - -ItemButtonArmour26 -26.000000 -26.000000 - - - -image -24.000000 -24.000000 -1.000000,1.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -24.000000 -24.000000 -1.000000,1.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridArmour26 -26.000000 -26.000000 - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ArrowProgressStateSmall -32.000000 -32.000000 - - - -control_for_data_binding_only -155.000000 -23.000000 -8.000000,85.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - -ProgressBody -32.000000 -32.000000 -15 - - - -ArrowOff -32.000000 -32.000000 -Graphics\Arrow_Small_Off.png - - - - -ArrowOn -0.000000 -32.000000 -false -Graphics\Arrow_Small_On.png - - - - -ArrowOn -Anchor -Width -Show - - -0 -0 -0.000000 -false - - - -0 -0 -2.400000 -true - - - -0 -8 -32.000000 -true - - - - - - - -Normal - - - -EndNormal - -stop - - - - - - -EnchantmentButton -240.000000 -42.000000 -15 - - - -button_graphic_disabled -240.000000 -42.000000 -15 -false -Graphics\EnchantmentButtonEmpty.png -48 - - - - -button_graphic -240.000000 -42.000000 -15 -Graphics\EnchantmentButtonActive.png -48 - - - - -button_graphic_selected -240.000000 -42.000000 -15 -false -Graphics\EnchantmentButtonActive.png -48 - - - - -EnchantText -218.000000 -32.000000 -6.000000,5.000000,0.000000 -CXuiCtrlEnchantmentButtonText - - - - -text_Label -40.000000 -26.000000 -194.000000,16.000000,0.000000 -15 -0xff80eb20 -0xff0f0f0f -16.000000 -21013 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - - -text_Label -TextColor - - -1 -0xff80eb20 - - - -1 -0xffc6110f - - - -1 -0xffc6110f - - - -1 -0xffc6110f - - - -button_graphic -Show - - -0 -true - - - -0 -true - - - -0 -false - - - -button_graphic_selected -Show -ImagePath - - -0 -false -Graphics\EnchantmentButtonActive.png - - - -0 -false -Graphics\EnchantmentButtonActive.png - - - -0 -true -Graphics\EnchantmentButtonSelected.png - - - -0 -true -Graphics\EnchantmentButtonSelected.png - - - -0 -false -Graphics\EnchantmentButtonSelected.png - - - -button_graphic_disabled -Show - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -true - - - - - - -EnchantmentButton_Small -140.000000 -15 - - - -button_graphic_disabled -140.000000 -15 -false -Graphics\EnchantmentButtonEmpty_small.png -48 - - - - -button_graphic -140.000000 -15 -Graphics\EnchantmentButtonActive_small.png -48 - - - - -button_graphic_selected -140.000000 -15 -false -Graphics\EnchantmentButtonSelected_small.png -48 - - - - -EnchantText -132.000000 -24.000000 -3.000000,3.000000,0.000000 -CXuiCtrlEnchantmentButtonText - - - - -text_Label -30.000000 -18.000000 -106.000000,12.000000,0.000000 -15 -0xff80eb20 -0xff0f0f0f -12.000000 -21013 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -EndFocusDisable - -stop - - - -button_graphic_disabled -Show - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -true - - - -button_graphic -Show - - -0 -true - - - -0 -true - - - -0 -false - - - -button_graphic_selected -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -text_Label -TextColor - - -1 -0xff80eb20 - - - -1 -0xffc6110f - - - -0 -0xffc6110f - - - -0 -0xffc6110f - - - - - - -ItemGridEnchant -42.000000 -42.000000 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonEnchant -42.000000 -42.000000 - - - -Box -42.000000 -42.000000 -15 -4 -Graphics\IconHolder.png -48 - - - - -Icon -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -2 -Graphics\Enchant_Slot.png -48 - - - - -image -38.000000 -38.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -38.000000 -38.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridEnchant32 -32.000000 -32.000000 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemButtonEnchant32 -32.000000 -32.000000 - - - -Box -32.000000 -32.000000 -15 -4 -Graphics\IconHolder_Small.png -48 - - - - -Icon -28.000000 -28.000000 -2.000000,2.000000,0.000000 -15 -2 -Graphics\Enchant_Slot_Small.png -48 - - - - -image -28.000000 -28.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -28.000000 -28.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemButtonBrewing -52.000000 -52.000000 - - - -image -48.000000 -48.000000 -2.000000,2.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -graphic_Highlight -48.000000 -48.000000 -2.000000,2.000000,0.000000 -0.000000 -15 - - -0xff646464 - - - - -0xb4ebebeb - - -4 -0xff828282 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0.000000 -0.592157 -0.627451 -1.000000 - - -90.000000 - - -true -4,0.000000,0.000000,0.000000,0.000000,242.119705,0.000000,1,242.119705,0.000000,242.119705,0.000000,242.119705,31.004648,1,242.119705,31.004648,242.119705,31.004648,0.000000,31.006342,1,0.000000,31.006342,0.000000,31.006342,0.000000,0.000000,1, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -graphic_Highlight -Fill.Gradient.StopPos -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Fill.Gradient.StopColor -Stroke.StrokeColor -Fill.Gradient.StopColor -Opacity - - -1 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -0.000000 - - - -0 -0.627451 -0xff828282 -0xffd2d2d2 -0xffebebeb -0xff646464 -0xffb4b4b4 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -0 -0.619608 -0xff829682 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff96c896 -1.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -1.000000 - - - -1 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.627451 -0xffb4b4b4 -0xffd2d2d2 -0xffebebeb -0xffb4b4b4 -0xffc8c8c8 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -0 -0.619608 -0xff8cb48c -0xffc3cdc3 -0xffdaebda -0xff648464 -0xff91b18c -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff647264 -0xffaaafa0 -0.000000 - - - -2 -0 -0 -50 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff648264 -0xffc8d2c8 -0xffc8ebc8 -0xff649664 -0xff78b478 -0.000000 - - - -0 -0.619608 -0xff8c968c -0xffbec8be -0xffebebeb -0xff649664 -0xffaaafa0 -0.000000 - - - - - - -ItemGridBrewing36 -36.000000 -36.000000 - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -ItemGridBrewing -52.000000 -52.000000 - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -KillFocus - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -BrewingBackground_Small -128.000000 -108.000000 - - - -Image -128.000000 -108.000000 -Graphics\BrewingStand_small.png -48 - - - - - -BrewingBackground -192.000000 -192.000000 - - - -BrewingStand -192.000000 -192.000000 -15 -Graphics\BrewingStand.png -48 - - - - - -BrewingBubblesProgressState -36.000000 -84.000000 - - - -ProgressBody -36.000000 -84.000000 -207 - - - -BubbleOff -36.000000 -84.000000 -Graphics\BrewingBubbles_Off.png - - - - -BubbleOn -36.000000 -0.000000 -36.000000,84.000000,0.000000 -0.000000,0.000000,-1.000000,0.000000 -false -Graphics\BrewingBubbles_On.png - - - - -BubbleOn -Height -Anchor -Show - - -0 -0.000000 -0 -false - - - -0 -0.000000 -0 -true - - - -0 -84.000000 -8 -true - - - - - - -control_for_data_binding_only -155.000000 -23.000000 -15.000001,80.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - - -Normal - - - -EndNormal - - - - - - - -BrewingBubblesProgressStateSmall -24.000000 -56.000000 - - - -ProgressBody -24.000000 -56.000000 -207 - - - -BubbleOff -36.000000 -84.000000 -Graphics\BrewingBubbles_Small_Off.png -48 - - - - -BubbleOn -24.000000 -0.000000 -24.000000,56.000000,0.000000 -0.000000,0.000000,-1.000000,0.000000 -false -Graphics\BrewingBubbles_Small_On.png -48 - - - - -BubbleOn -Height -Anchor -Show - - -0 -0.000000 -0 -false - - - -0 -0.000000 -0 -true - - - -0 -56.000000 -8 -true - - - - - - -control_for_data_binding_only -155.000000 -23.000000 -15.000001,80.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - - -Normal - - - -EndNormal - - - - - - - -BrewingArrowProgressStateSmall -18.000000 -56.000000 -15 - - - -control_for_data_binding_only -155.000000 -23.000000 -8.000000,85.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - -ProgressBody -18.000000 -56.000000 -15 - - - -ArrowOff -18.000000 -56.000000 -15 -Graphics\BrewingArrow_Small_Off.png -48 - - - - -ArrowOn -18.000000 -0.000000 -15 -false -Graphics\BrewingArrow_Small_On.png -48 - - - - -ArrowOn -Show -Height - - -0 -false -0.000000 - - - -0 -true -56.000000 - - - -0 -true -0.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BrewingArrowProgressState -27.000000 -84.000000 -15 - - - -control_for_data_binding_only -155.000000 -23.000000 -8.000000,85.185188,0.000000 -13 -0xff323232 -13.000000 -5136 - - - - -ProgressBody -27.000000 -84.000000 -15 - - - -ArrowOff -27.000000 -84.000000 -15 -Graphics\BrewingArrow_Off.png -48 - - - - -ArrowOn -27.000000 -0.000000 -15 -false -Graphics\BrewingArrow_On.png -48 - - - - -ArrowOn -Show -Height - - -0 -false -0.000000 - - - -0 -true -84.000000 - - - -0 -true -0.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -AnvilCross -15.000000 -15.000000 - - - -AnvilCross -15.000000 -15.000000 -15 -4 -Graphics\AnvilCross.png -48 - - - - - -AnvilPlus -15.000000 -15.000000 - - - -AnvilPlus -15.000000 -15.000000 -15 -4 -Graphics\AnvilPlus.png -48 - - - - - -AnvilHammer -15.000000 -15.000000 - - - -AnvilHammer -15.000000 -15.000000 -15 -4 -Graphics\AnvilHammer.png -48 - - - - - -HorseJumpProgress -548.000000 -15.000000 - - - -ProgressBody -548.000000 -15.000000 - - - -back -182.000000 -5.000000 -15 -4 -Graphics\HUD\HorseJump_bar_empty.png -48 - - - - -bar -182.000000 -5.000000 -15 -false -true - - - -bar -182.000000 -5.000000 -4 -Graphics\HUD\HorseJump_bar_full.png -48 - - - - - -design_time_display -458.000000 -15.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -182.000000 - - - -0 -true -3.330000 - - - -0 -true -182.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthLabel -500.000000 -66.000000 - - - -Text -500.000000 -66.000000 -15 -0xffeb0feb -16.000000 -5137 - - - - - -BossHealthProgress3_480 -400.000000 -15.000000 - - - -ProgressBody -400.000000 -15.000000 - - - -back -406.000000 -15.000000 --3.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty3.png -48 - - - - -bar -400.000000 -15.000000 -false -true - - - -bar -400.000000 -15.000000 -Graphics\HUD\DragonHealth_Full3.png -48 - - - - - -design_time_display -400.000000 -15.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -400.000000 - - - -0 -true -2.300000 - - - -0 -true -400.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthProgress2_480 -333.000000 -10.000000 - - - -ProgressBody -333.000000 -10.000000 - - - -back -337.000000 -10.000000 --2.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty2.png -48 - - - - -bar -333.000000 -10.000000 -false -true - - - -bar -333.000000 -10.000000 -Graphics\HUD\DragonHealth_Full2.png -48 - - - - - -design_time_display -333.000000 -10.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -333.000000 - - - -0 -true -1.665000 - - - -0 -true -333.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthProgress1_480 -167.000000 -5.000000 - - - -ProgressBody -167.000000 -5.000000 - - - -back -169.000000 -5.000000 --1.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty.png -48 - - - - -bar -167.000000 -5.000000 -false -true - - - -bar -167.000000 -5.000000 -Graphics\HUD\DragonHealth_Full.png -48 - - - - - -design_time_display -167.000000 -5.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -167.000000 - - - -0 -true -0.835000 - - - -0 -true -167.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthProgress3 -940.000000 - - - -ProgressBody -940.000000 - - - -back -952.000000 --6.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty6.png -48 - - - - -bar -940.000000 -false -true - - - -bar -940.000000 -Graphics\HUD\DragonHealth_Full6.png -48 - - - - - -design_time_display -940.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -940.000000 - - - -0 -true -4.700000 - - - -0 -true -940.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthProgress2 -666.000000 -15.000000 - - - -ProgressBody -666.000000 -15.000000 - - - -back -674.000000 -20.000000 --4.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty4.png -48 - - - - -bar -666.000000 -20.000000 -false -true - - - -bar -666.000000 -20.000000 -Graphics\HUD\DragonHealth_Full4.png -48 - - - - - -design_time_display -666.000000 -15.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -666.000000 - - - -0 -true -3.330000 - - - -0 -true -666.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -BossHealthProgress1 -334.000000 -10.000000 - - - -ProgressBody -334.000000 -10.000000 - - - -back -338.000000 -10.000000 --2.000000,0.000000,0.000000 -Graphics\HUD\DragonHealth_Empty2.png -48 - - - - -bar -334.000000 -10.000000 -false -true - - - -bar -334.000000 -10.000000 -Graphics\HUD\DragonHealth_Full2.png -48 - - - - - -design_time_display -334.000000 -10.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -334.000000 - - - -0 -true -1.670000 - - - -0 -true -334.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -HUDHotBarBack -182.000000 -22.000000 - - - -Bar -182.000000 -22.000000 -15 -8 -Graphics\HUD\hotbar_item_back.png -48 - - - - - -ItemHUDHotbar -24.000000 -24.000000 -15 - - - -image -16.000000 -16.000000 -4.000000,4.000000,0.000000 -15 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -Box1 -24.000000 -24.000000 -15 -false -4 -Graphics\HUD\hotbar_item_selected.png -48 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - -Box1 -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - - - - -ExperienceProgress -548.000000 -15.000000 - - - -ProgressBody -548.000000 -15.000000 - - - -back -182.000000 -5.000000 -15 -4 -Graphics\HUD\experience_bar_empty.png -48 - - - - -bar -182.000000 -5.000000 -15 -false -true - - - -bar -182.000000 -5.000000 -4 -Graphics\HUD\experience_bar_full.png -48 - - - - - -design_time_display -458.000000 -15.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -182.000000 - - - -0 -true -3.330000 - - - -0 -true -182.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -ExperienceProgressSmall -274.000000 -7.500000 - - - -ProgressBody -274.000000 -7.500000 - - - -back -274.000000 -7.500000 -15 -4 -Graphics\HUD\experience_bar_empty.png -48 - - - - -bar -548.000000 -7.500000 -15 -false -true - - - -bar -274.000000 -7.500000 -4 -Graphics\HUD\experience_bar_full.png -48 - - - - - -design_time_display -184.000000 -7.500000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -548.000000 - - - -0 -true -3.330000 - - - -0 -true -274.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -ExperienceProgress480 -365.000000 -10.000000 - - - -ProgressBody -365.000000 -10.000000 - - - -back -365.000000 -10.000000 -15 -4 -Graphics\HUD\experience_bar_empty.png -48 - - - - -bar -365.000000 -10.000000 -15 -false -true - - - -bar -365.000000 -10.000000 -4 -Graphics\HUD\experience_bar_full.png -48 - - - - - -design_time_display -275.000000 -10.000000 -15 -false -true - - -1.000000 -0xff646464 - - - - -2 -0xffffffff - - -2 -0xffebebeb -0xff7d7d7d -0.000000 -0.000000 - - - - -true -4,0.000000,0.000000,0.000000,0.000000,170.000000,0.000000,0,170.000000,0.000000,170.000000,0.000000,170.000000,19.000000,0,170.000000,19.000000,170.000000,19.000000,0.000000,19.000000,0,0.000000,19.000000,0.000000,19.000000,0.000000,0.000000,0, - - - - -bar -Show -Width - - -0 -false -365.000000 - - - -0 -true -3.330000 - - - -0 -true -274.000000 - - - - - - - -Normal - - - -EndNormal - - - - - - - -HudHealth -9.000000 -9.000000 - - - -Border -9.000000 -9.000000 -15 -8 -Graphics\HUD\Health_Background.png -48 - - - - -Heart -9.000000 -9.000000 -15 -false -8 -48 - - - - - -Normal - -stop - - -Half - -stop - - -Full - -stop - - -HalfPoison - -stop - - -FullPoison - -stop - - -NormalFlash - -stop - - -HalfFlash - -stop - - -FullFlash - -stop - - -HalfPoisonFlash - -stop - - -FullPoisonFlash - -stop - - -FullWither - -stop - - -FullWitherFlash - -stop - - -HalfWither - -stop - - -HalfWitherFlash - -stop - - -FullAbsorb - -stop - - -HalfAbsorb - -stop - - -Horse_Full - -stop - - -Horse_Full_Flash - -stop - - -Horse_Half - -stop - - -Horse_Half_Flash - -stop - - - -Border -ImagePath - - -0 -Graphics\HUD\Health_Background.png - - - -0 -Graphics\HUD\Health_Background_Flash.png - - - -0 -Graphics\HUD\Health_Background.png - - - -0 -Graphics\HUD\Health_Background_Flash.png - - - -0 -Graphics\HUD\Health_Background.png - - - -0 -Graphics\HUD\Health_Background_Flash.png - - - -0 -Graphics\HUD\Health_Background.png - - - -0 -Graphics\HUD\Health_Background_Flash.png - - - -0 -Graphics\HUD\Health_Background.png - - - -0 -Graphics\HUD\Health_Background_Flash.png - - - -Heart -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\HUD\Health_Half.png - - - -0 -true -Graphics\HUD\Health_Full.png - - - -0 -true -Graphics\HUD\Health_Half_Poison.png - - - -0 -true -Graphics\HUD\Health_Full_Poison.png - - - -0 -false - - - - -0 -true -Graphics\HUD\Health_Half_Flash.png - - - -0 -true -Graphics\HUD\Health_Full_Flash.png - - - -0 -true -Graphics\HUD\Health_Half_Poison_Flash.png - - - -0 -true -Graphics\HUD\Health_Full_Poison_Flash.png - - - -0 -true -Graphics\HUD\Health_Full_Wither.png - - - -0 -true -Graphics\HUD\Health_Full_Wither_Flash.png - - - -0 -true -Graphics\HUD\Health_Half_Wither.png - - - -0 -true -Graphics\HUD\Health_Half_Wither_Flash.png - - - -0 -true -Graphics\HUD\Health_Full_Absorb.png - - - -0 -true -Graphics\HUD\Health_Half_Absorb.png - - - -0 -true -Graphics\HUD\HorseHealth_Full.png - - - -0 -true -Graphics\HUD\HorseHealth_Full_Flash.png - - - -0 -true -Graphics\HUD\HorseHealth_Half.png - - - -0 -true -Graphics\HUD\HorseHealth_Half_Flash.png - - - - - - -HudArmour -9.000000 -9.000000 - - - -Icon -9.000000 -9.000000 -15 -8 -Graphics\HUD\HUD_Armour_Empty.png -48 - - - - - -Normal - -stop - - -Half - -stop - - -Full - -stop - - - -Icon -ImagePath - - -0 -Graphics\HUD\HUD_Armour_Empty.png - - - -0 -Graphics\HUD\HUD_Armour_Half.png - - - -0 -Graphics\HUD\HUD_Armour_Full.png - - - - - - -HudFood -9.000000 -9.000000 - - - -Border -9.000000 -9.000000 -15 -8 -Graphics\HUD\HUD_Food_Background.png -48 - - - - -Shank -9.000000 -9.000000 -15 -false -8 -48 - - - - - -Normal - -stop - - -Half - -stop - - -Full - -stop - - -HalfPoison - -stop - - -FullPoison - -stop - - -NormalFlash - -stop - - -HalfFlash - -stop - - -FullFlash - -stop - - -HalfPoisonFlash - -stop - - -FullPoisonFlash - -stop - - -NormalPoison - -stop - - - -Border -ImagePath - - -0 -Graphics\HUD\HUD_Food_Background.png - - - -0 -Graphics\HUD\HUD_Food_Background_Poison.png - - - -0 -Graphics\HUD\HUD_Food_Background_Flash.png - - - -0 -Graphics\HUD\HUD_Food_Background_Poison.png - - - -Shank -Show -ImagePath - - -0 -false - - - - -0 -true -Graphics\HUD\HUD_Food_Half.png - - - -0 -true -Graphics\HUD\HUD_Food_Full.png - - - -0 -true -Graphics\HUD\HUD_Food_Half_Poison.png - - - -0 -true -Graphics\HUD\HUD_Food_Full_Poison.png - - - -0 -false - - - - -0 -true -Graphics\HUD\HUD_Food_Half_Flash.png - - - -0 -true -Graphics\HUD\HUD_Food_Full_Flash.png - - - -0 -true -Graphics\HUD\HUD_Food_Half_Poison_Flash.png - - - -0 -true -Graphics\HUD\HUD_Food_Full_Poison_Flash.png - - - -0 -false -Graphics\HUD\HUD_Food_Full_Poison_Flash.png - - - - - - -HudAir -9.000000 -9.000000 - - - -Icon -9.000000 -9.000000 -15 -8 -Graphics\HUD\HUD_Air_Bubble.png -48 - - - - - -Bubble - -stop - - -Pop - -stop - - - -Icon -ImagePath - - -0 -Graphics\HUD\HUD_Air_Bubble.png - - - -0 -Graphics\HUD\HUD_Air_Pop.png - - - - - - -HudCrosshair -15.000000 -15.000000 - - - -Icon -15.000000 -15.000000 -15 -8 -Graphics\HUD\HUD_Crosshair.png -48 - - - - - -HudXPLevel -116.000000 -16.000000 - - - -Text1 -116.000000 -16.000000 -1.000000,1.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -8.000000 -21504 - - - - -Text2 -116.000000 -16.000000 --1.000000,1.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text3 -116.000000 -16.000000 -1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text4 -116.000000 -16.000000 --1.000000,-1.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text5 -116.000000 -16.000000 -1.000000,0.000000,0.000000 -15 -0xff0f0f0f -0xff0f0f0f -8.000000 -21504 - - - - -Text6 -116.000000 -16.000000 --1.000000,0.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text7 -116.000000 -16.000000 -0.000000,-1.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text8 -116.000000 -16.000000 -0.000000,1.000000,0.000000 -15 -0xff0f0f0f -8.000000 -21504 - - - - -Text -116.000000 -16.000000 -15 -0xff80eb20 -8.000000 -21504 - - - - - -XuiHtmlControl_H2P -50.000000 -50.000000 -15 - - - -graphic_groupbackground -92.000000 -102.000000 --20.000000,-20.000000,0.000000 -15 - - - -Bot_R -8.000000 -8.000000 -84.000000,94.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -76.000000 -8.000000 -8.000000,94.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,94.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -84.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -76.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -86.000000 -84.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -76.000000 -86.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -86.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - -HtmlPresenter -50.000000 -52.000000 -15 -true - - - - -ScrollUp -32.000000 -22.000000 --12.000000,51.000000,0.000000 -12 -XuiScrollEndUp - - - - -ScrollDown -32.000000 -22.000000 -20.000000,51.000000,0.000000 -12 -XuiScrollEnd -1 - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - - - - -XuiHtmlControl_H2P_Small -50.000000 -50.000000 -15 - - - -graphic_groupbackground -72.000000 -98.000000 --10.000000,-10.000000,0.000000 -15 - - - -Bot_R -8.000000 -8.000000 -64.000000,90.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -56.000000 -8.000000 -8.000000,90.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,90.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -64.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -56.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -82.000000 -64.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -56.000000 -82.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -82.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - -HtmlPresenter -50.000000 -50.000000 -15 -true - - - - -ScrollDown -32.000000 -22.000000 -19.000000,56.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -ScrollUp -32.000000 -22.000000 --15.000000,56.000000,0.000000 -12 -XuiScrollEndUp - - - - - -XuiHtmlControl_Small -50.000000 -50.000000 -15 - - - -HtmlPresenter -50.000000 -50.000000 -15 -true - - - - -ScrollDown -22.000000 -15.000000 -24.000000,54.000000,0.000000 -12 -XuiScrollEnd -1 - - - - -ScrollUp -22.000000 -15.000000 -0.000000,54.000000,0.000000 -12 -XuiScrollEndUp - - - - - -Normal - - - -EndNormal - -stop - - -ScrollMore - - - -EndScrollMore - -stop - - -Scrolling - - - -EndScrolling - -gotoandplay -Scrolling - - - - - - -XuiHtmlControl_EndStory -50.000000 -50.000000 -15 - - - -HtmlPresenter -50.000000 -50.000000 -15 -true - - - - - -SkinSelectSelectedBackgroundSmall -224.000000 -25.000000 - - - -BorderTextPanel -220.000000 -21.000000 -2.000027,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc80fa2eb -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderLeft -2.000000 -21.000000 -222.000015,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc8b4b4b4 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderRight -2.000000 -21.000000 -0.000019,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc8323232 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderBottom -224.000000 -2.000000 -0.000019,0.000000,0.000000 - - -0xff0fc70f - - - - -0xc8323232 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderTop -224.000000 -2.000000 -0.000019,23.000000,0.000000 - - -0xff0fc70f - - - - -0xc8b4b4b4 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - - -SkinSelectSelectedBackground -224.000000 -32.000000 - - - -BorderTextPanel -220.000000 -28.000000 -2.000008,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc80fa2eb -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderLeft -2.000000 -28.000000 -222.000000,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc8b4b4b4 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderRight -2.000000 -28.000000 -0.000000,2.000000,0.000000 - - -0xff0fc70f - - - - -0xc8323232 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderBottom -224.000000 -2.000000 - - -0xff0fc70f - - - - -0xc8323232 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - -BorderTop -224.000000 -2.000000 -0.000000,30.000000,0.000000 - - -0xff0fc70f - - - - -0xc8b4b4b4 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,5.000000,0.000000,0,5.000000,0.000000,5.000000,0.000000,5.000000,345.000000,0,5.000000,345.000000,5.000000,345.000000,0.000000,345.000000,0,0.000000,345.000000,0.000000,345.000000,0.000000,0.000000,0, - - - - - -SkinSelectTabBarNormal -1280.000000 -62.000000 - - - -Image -1280.000000 -62.000000 -5 -4 -Graphics\PanelsAndTabs\SkinSelect_TabBar.png -48 - - - - - -SkinSelectTabBarSelected -1280.000000 -62.000000 - - - -Image -1280.000000 -62.000000 --0.000008,0.000000,0.000000 -5 -4 -Graphics\PanelsAndTabs\SkinSelect_TabBar_Selected.png -48 - - - - - -SkinSelectTabBarSelectedSmall -640.000000 -44.000000 - - - -Image -640.000000 -44.000000 --0.000008,0.000000,0.000000 -5 -4 -Graphics\PanelsAndTabs\SkinSelect_TabBarSmall_Selected.png -48 - - - - - -SkinSelectTabBarNormalSmall -640.000000 -44.000000 - - - -Image -640.000000 -44.000000 -5 -4 -Graphics\PanelsAndTabs\SkinSelect_TabBarSmall.png -48 - - - - - -SkinSelectPadlock -32.000000 -32.000000 - - - -Locked -32.000000 -32.000000 -Graphics\Padlock_Small.png - - - - - -SkinSelectTabNormalSmall -580.000000 -270.000000 - - - -Image -580.000000 -270.000000 -15 -Graphics\PanelsAndTabs\SkinSelect_TabBarSmallPanel.png -48 - - - - - -SkinSelectTabSelectedSmall -580.000000 -270.000000 - - - -Image -580.000000 -270.000000 -15 -Graphics\PanelsAndTabs\SkinSelect_TabBarSmallPanel_Selected.png -48 - - - - - -XuiSkinSelectSectionBackground -100.000000 -100.000000 -15 - - - -Background -108.000000 -108.000000 --4.000000,-4.000000,0.000000 -0.000000 -15 - - -0xff0f0f80 - - - - -0xffa0a0a0 -2 -2 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -graphic_groupbackground -100.000000 -100.000000 -15 - - - -Bot_R -16.000000 -16.000000 -84.000000,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Square_Recess_Bot_R.png -48 - - - - -Bot_M -68.000000 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Square_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Square_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -84.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Square_Recess_Top_R.png -48 - - - - -Top_M -68.000000 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Square_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Square_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -68.000000 -84.000000,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_R.png -48 - - - - -Mid_M -68.000000 -68.000000 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.000000 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_L.png -48 - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -Background -Fill.FillColor -Opacity - - -0 -0xffa0a0a0 -0.000000 - - - -0 -0xffa0a0a0 -0.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - - - - -XuiSkinPackButton -348.000000 -42.000000 -15 - - - -button_graphicTab -348.000000 -42.000000 -false -Graphics\PanelsAndTabs\SkinSelect_TabNormal.png -48 - - - - -button_graphicTabSelected -348.000000 -42.000000 -Graphics\PanelsAndTabs\SkinSelect_TabNormal_Selected.png -48 - - - - -text_Label -334.000000 -32.000000 -7.000016,6.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -16.000000 -21524 - - - - - -Normal - - - -EndNormal - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Label -TextColor -Position - - -0 -0xff323232 -7.000016,6.000000,0.000000 - - - -0 -0xff323232 -7.000016,6.000000,0.000000 - - - -0 -0xff646464 -7.000017,6.000000,0.000000 - - - -0 -0xff646464 -7.000017,6.000000,0.000000 - - - -0 -0xff323232 -7.000016,6.000000,0.000000 - - - -0 -0xff323232 -7.000016,6.000000,0.000000 - - - -button_graphicTab -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - -button_graphicTabSelected -Show -ImagePath - - -0 -true -Graphics\PanelsAndTabs\SkinSelect_TabNormal_Selected.png - - - -0 -true -Graphics\PanelsAndTabs\SkinSelect_TabNormal_Selected.png - - - -0 -false -Graphics\PanelsAndTabs\SkinSelect_TabNormal.png - - - -0 -false -Graphics\PanelsAndTabs\SkinSelect_TabNormal.png - - - -0 -true -Graphics\PanelsAndTabs\SkinSelect_TabNormal_Selected.png - - - -0 -true -Graphics\PanelsAndTabs\SkinSelect_TabNormal_Selected.png - - - - - - -XuiSkinPackButtonCenter -348.000000 -42.000000 -15 - - - -highlight_graphicTab -376.000000 -54.000000 --14.000015,-6.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOver.png -48 - - - - -highlight_graphicTabSelected -376.000000 -54.000000 --14.000015,-6.000000,0.000000 -false -Graphics\PanelsAndTabs\SkinSelect_TabOver_Selected.png -48 - - - - -Mask -376.000000 -18.000000 --14.000015,30.000000,0.000000 -true - - - -highlight_graphicTab1 -376.000000 -58.000000 -0.000000,-40.000000,0.000000 -0.000000,58.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOver.png -48 - - - - - -MaskSelected -376.000000 -18.000000 --14.000015,30.000000,0.000000 -false -true - - - -highlight_graphicTab1 -376.000000 -58.000000 -0.000000,-40.000000,0.000000 -0.000000,58.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOver_Selected.png -48 - - - - - -text_Label -334.000000 -32.000000 -7.000016,8.000000,0.000000 -5 -0xff505050 -0xff0f0f0f -16.000000 -21524 - - - - -text_Label1 -334.000000 -32.000000 -7.000016,8.000000,0.000000 -5 -false -0xff505050 -0xff0f0f0f -16.000000 -21524 - - - - - -Normal - - - -EndNormal - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Label -TextColor -Position - - -0 -0xff505050 -7.000016,8.000000,0.000000 - - - -0 -0xff505050 -7.000016,8.000000,0.000000 - - - -0 -0xff8c8c8c -7.000017,8.000000,0.000000 - - - -0 -0xff8c8c8c -7.000017,8.000000,0.000000 - - - -0 -0xff0f0f0f -7.000016,-2.000000,0.000000 - - - -0 -0xff0f0f0f -7.000016,-2.000000,0.000000 - - - -highlight_graphicTab -Opacity -Position - - -0 -1.000000 --14.000015,-6.000000,0.000000 - - - -0 -1.000000 --14.000015,-6.000000,0.000000 - - - -0 -1.000000 --14.000015,-6.000000,0.000000 - - - -0 -1.000000 --14.000015,-6.000000,0.000000 - - - -0 -1.000000 --13.999986,-14.000000,0.000000 - - - -0 -100000.000000 --14.000015,-14.000000,0.000000 - - - -highlight_graphicTabSelected -Opacity -Position -Show - - -0 -1.000000 --14.000015,-6.000000,0.000000 -false - - - -0 -1.000000 --14.000015,-6.000000,0.000000 -false - - - -0 -1.000000 --14.000015,-6.000000,0.000000 -false - - - -0 -1.000000 --14.000015,-6.000000,0.000000 -false - - - -0 -1.000000 --13.999986,-16.000000,0.000000 -true - - - -0 -100000.000000 --14.000015,-16.000000,0.000000 -true - - - -Mask -Show - - -0 -true - - - -0 -true - - - -0 -false - - - -0 -false - - - -MaskSelected -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -text_Label1 -TextColor -Position - - -0 -0xff505050 -7.000016,8.000000,0.000000 - - - -0 -0xff505050 -7.000016,8.000000,0.000000 - - - -0 -0xff8c8c8c -7.000017,8.000000,0.000000 - - - -0 -0xff8c8c8c -7.000017,8.000000,0.000000 - - - -0 -0xffebeb0f -5.000016,-2.000000,0.000000 - - - -0 -0xffebeb0f -5.000016,-2.000000,0.000000 - - - - - - -XuiSkinPackButtonSmall -180.000000 -40.000000 -15 - - - -ButtonGraphic -180.000000 -31.000000 -false -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -48 - - - - -ButtonGraphicSelected -180.000000 -31.000000 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -48 - - - - -text_Label -168.000000 -28.000000 -5.000000,2.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -13.000000 -21524 - - - - - -Normal - - - -EndNormal - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Label -TextColor - - -1 -0xff323232 - - - -1 -0xff323232 - - - -1 -0xff646464 - - - -1 -0xff646464 - - - -0 -0xff323232 - - - -0 -0xff323232 - - - -ButtonGraphic -ImagePath -Show - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -false - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -false - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -true - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -true - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -false - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -false - - - -ButtonGraphicSelected -ImagePath -Show - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -true - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -true - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -false - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall.png -false - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -true - - - -0 -Graphics\PanelsAndTabs\SkinSelect_TabNormalSmall_Selected.png -true - - - - - - -XuiSkinPackButtonCentreSmall -180.000000 -40.000000 -15 - - - -XuiImage1 -180.000000 -38.000000 -0.000000,2.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall.png -48 - - - - -Mask -180.000000 -10.000000 -0.000000,30.000000,0.000000 -true - - - -XuiImage2 -180.000000 -40.000000 -0.000000,-30.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall.png -48 - - - - - -Mask1 -180.000000 -10.000000 -0.000000,30.000000,0.000000 -false -true - - - -XuiImage2 -180.000000 -40.000000 -0.000000,-30.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall_Selected.png -48 - - - - - -text_Label -168.000000 -28.000000 -6.000000,8.000000,0.000000 -5 -0xff323232 -0xff0f0f0f -13.000000 -21524 - - - - -text_Label1 -168.000000 -28.000000 -5.000000,8.000000,0.000000 -5 -false -0xff505050 -0xff0f0f0f -13.000000 -21524 - - - - - -Normal - - - -EndNormal - -stop - - -NormalDisable - - - -EndNormalDisable - -stop - - -Focus - - - -EndFocus - -stop - - - -text_Label -TextColor -Position - - -1 -0xff323232 -6.000000,8.000000,0.000000 - - - -1 -0xff323232 -6.000000,8.000000,0.000000 - - - -1 -0xff787878 -6.000000,8.000000,0.000000 - - - -1 -0xff787878 -6.000000,8.000000,0.000000 - - - -0 -0xff323232 -6.000000,2.000000,0.000000 - - - -0 -0xff323232 -6.000000,2.000000,0.000000 - - - -XuiImage1 -Height -Position -ImagePath - - -0 -38.000000 -0.000000,2.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall.png - - - -0 -38.000000 -0.000000,2.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall.png - - - -0 -40.000000 -0.000000,-4.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall_Selected.png - - - -0 -40.000000 -0.000000,-4.000000,0.000000 -Graphics\PanelsAndTabs\SkinSelect_TabOverSmall_Selected.png - - - -Mask1 -Show - - -0 -false - - - -0 -false - - - -0 -true - - - -0 -true - - - -text_Label1 -TextColor -Position - - -1 -0xff505050 -5.000000,8.000000,0.000000 - - - -1 -0xff505050 -5.000000,8.000000,0.000000 - - - -1 -0xff8c8c8c -5.000000,8.000000,0.000000 - - - -1 -0xff8c8c8c -5.000000,8.000000,0.000000 - - - -0 -0xffebeb0f -3.000000,2.000000,0.000000 - - - -0 -0xffebeb0f -3.000000,2.000000,0.000000 - - - - - - -XuiSkinSelectSBckgrndSmall -100.000000 -100.000000 -15 - - - -Background -104.000000 -104.000000 --2.000000,-2.000000,0.000000 -0.000000 -15 - - -0xff0f0f80 - - - - -0xffa0a0a0 -2 -2 -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,89.000000,0.000000,0,89.000000,0.000000,89.000000,0.000000,89.000000,37.000000,0,89.000000,37.000000,89.000000,37.000000,0.000000,37.000000,0,0.000000,37.000000,0.000000,37.000000,0.000000,0.000000,0, - - - - -graphic_groupbackground -100.000000 -100.000000 -15 -true - - - -Bot_R -16.000000 -16.000000 -84.000000,84.001953,0.000000 -12 -Graphics\PanelsAndTabs\Square_Recess_Bot_R.png -48 - - - - -Bot_M -68.000000 -16.000000 -16.000000,84.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Square_Recess_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,84.001953,0.000000 -9 -Graphics\PanelsAndTabs\Square_Recess_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -84.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Square_Recess_Top_R.png -48 - - - - -Top_M -68.000000 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Square_Recess_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Square_Recess_Top_L.png -48 - - - - -Mid_R -16.000000 -68.000000 -84.000000,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_R.png -48 - - - - -Mid_M -68.000000 -68.000000 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_M.png -48 - - - - -Mid_L -16.000000 -68.000000 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Square_Recess_Mid_L.png -48 - - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - -InitFocus - - - -EndInitFocus - -stop - - - -Background -Fill.FillColor -Opacity - - -0 -0xffa0a0a0 -0.000000 - - - -0 -0xffa0a0a0 -0.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - -0 -0xffebeb0f -1.000000 - - - - - - -ItemBanner -64.000000 -64.000000 - - - -image -64.000000 -64.000000 -15 -CXuiCtrl4JIcon -XuiVisImPresenterCentreNoScale - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - - - - -DLC_PriceTag -440.000000 -36.000000 - - - -PlainBox -440.000000 -36.000000 - - -0xff0f0f80 - - - - -0xffeb8b0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,92.000000,0.000000,0,92.000000,0.000000,92.000000,0.000000,92.000000,63.000000,0,92.000000,63.000000,92.000000,63.000000,0.000000,63.000000,0,0.000000,63.000000,0.000000,63.000000,0.000000,0.000000,0, - - - - -Text -160.000000 -270.000000,2.000000,0.000000 -15 -0xffffffff -0xff000000 -16.000000 -4625 - - - - - -ItemBanner480 -64.000000 -64.000000 - - - -image -64.000000 -64.000000 -15 -CXuiCtrl4JIcon -XuiVisualImagePresenterCentre - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - - - - - -DLC_PriceTag480 -224.000000 -26.000000 - - - -PlainBox -226.000000 -26.000000 - - -0xff0f0f80 - - - - -0xffeb8b0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,92.000000,0.000000,0,92.000000,0.000000,92.000000,0.000000,92.000000,63.000000,0,92.000000,63.000000,92.000000,63.000000,0.000000,63.000000,0,0.000000,63.000000,0.000000,63.000000,0.000000,0.000000,0, - - - - -Text -110.000000 -18.000000 -102.000000,4.000000,0.000000 -15 -0xffffffff -0xff000000 -12.000000 -4625 - - - - - -TitleString -500.000000 -50.000000 -15 -250.000000,25.000000,0.000000 - - - -Pulser -500.000000 -50.000000 -15 -250.000000,25.000000,0.000000 - - - -SubTitle -500.000000 -50.000000 -15 -250.000000,25.000000,0.000000 - - - -Text_Shadow -500.000000 -50.000000 -2.000002,2.000000,0.000000 -0.970978,1.000000,1.000000 -15 -0xff50500f -0xff50500f -18.000000 -5140 - - - - -Text_String -500.000000 -50.000000 -0.970978,1.000000,1.000000 -15 -0xffebeb0f -0xff50500f -18.000000 -5141 - - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - -SubTitle -Scale - - -2 --100 -100 -50 -1.000000,1.000000,1.000000 - - - -2 --100 -100 -50 -0.950000,0.950000,1.000000 - - - -0 -1.000000,1.000000,1.000000 - - - - - - - -TitleStringSmall -250.000000 -25.000000 -125.000000,12.000000,0.000000 - - - -Pulser -250.000000 -25.000000 -15 -125.000000,12.000000,0.000000 - - - -SubTitle -250.000000 -25.000000 -15 -125.000000,12.000000,0.000000 - - - -Text_Shadow -250.000000 -25.000000 -1.000000,1.000000,0.000000 -15 -0xff50500f -0xff50500f -10.000000 -5140 - - - - -Text_String -250.000000 -25.000000 -15 -0xffebeb0f -0xff50500f -10.000000 -5140 - - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - -SubTitle -Scale - - -2 -100 --100 -50 -1.000000,1.000000,1.000000 - - - -2 -100 --100 -50 -0.950000,0.950000,1.000000 - - - -0 -1.000000,1.000000,1.000000 - - - - - - - -XuiMainMenuButton_L -400.000000 -40.000000 -15 - - - -highlight_graphic -400.000000 -40.000000 -15 -false -Graphics\MainMenuButton_Over.png - - - - -button_graphic -400.000000 -40.000000 -15 -Graphics\MainMenuButton_Norm.png - - - - -text_Label -380.000000 -28.000000 -10.000000,6.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -16.000000 -21525 - - - - -XuiSoundXACT -41.000000 -11.000000 -170.000000,11.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -gotoandplay -InactiveFocusLoop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -0.000000 - - - -0 -false -0.500000 - - - -0 -false -0.000000 - - - -0 -false -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -0.000000 -false - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xff969696 - - - -0 -0xff969696 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -XuiSoundXACT -Cue -SoundBank -WaveBank - - -0 - - - - - - -0 -ButtonFocus -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 -ButtonPress -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - - -XuiMainMenuButton_L_Thin -300.000000 -36.000000 -15 - - - -highlight_graphic -300.000000 -36.000000 -15 -false -Graphics\MainMenuButton_Over.png - - - - -button_graphic -300.000000 -36.000000 -15 -Graphics\MainMenuButton_Norm.png - - - - -text_Label -280.000000 -28.000000 -10.000000,4.000000,0.000000 -15 -0xffebebeb -0xff0f0f0f -21525 - - - - -XuiSoundXACT -41.000000 -11.000000 -170.000000,11.000000,0.000000 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -FocusLoop - - - -EndFocus - -gotoandplay -FocusLoop - - -NormalDisable - - - -EndNormalDisable - -stop - - -FocusDisable - - - -InactiveFocusLoop - - - -EndFocusDisable - -stop - - -Press - - - -EndPress - -stop - - -NormalSel - - - -EndNormalSel - -stop - - -InitFocus - - - -InitFocusLoop - - - -EndInitFocus - -gotoandplay -InitFocusLoop - - -InitFocusDisable - - - -InitFocusDisableLoop - - - -EndInitFocusDisable - -gotoandplay -InitFocusDisableLoop - - -NormalSelDisable - - - -EndNormalSelDisable - -stop - - - -text_Label -TextColor - - -1 -0xffebebeb - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffa0a0a0 - - - -0 -0xffa0a0a0 - - - -0 -0xff969696 - - - -0 -0xff969696 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -0 -0xffebeb0f - - - -0 -0xffebeb80 - - - -0 -0xffebeb0f - - - -0 -0xffebebeb - - - -highlight_graphic -Show -Opacity - - -1 -false -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -false -1.000000 - - - -0 -false -0.000000 - - - -0 -false -0.500000 - - - -0 -false -0.000000 - - - -0 -false -0.500000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -1 -true -1.000000 - - - -1 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -1.000000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -0 -true -0.000000 - - - -0 -true -0.500000 - - - -1 -true -0.250000 - - - -button_graphic -Opacity -Show - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -1 -0.000000 -true - - - -1 -1.000000 -true - - - -1 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -false - - - -0 -1.000000 -false - - - -1 -1.000000 -false - - - -0 -0.000000 -false - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -1 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -true - - - -0 -0.500000 -true - - - -0 -0.000000 -true - - - -1 -1.000000 -true - - - -XuiSoundXACT -Cue -SoundBank -WaveBank - - -0 - - - - - - -0 -ButtonFocus -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 -ButtonPress -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - -0 - -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - - -SignEntrySceneBackground -288.000000 -312.000000 - - - -Image -288.000000 -312.000000 -15 -Graphics\SignEditBackground.png - - - - - -LeaderboardHeaderPanel -32.000000 -32.000000 - - - -graphic_groupbackground -32.000000 -32.000000 -15 - - - -Bot_R -8.000000 -8.000000 -24.000000,24.000000,0.000000 -12 -Graphics\PanelsAndTabs\PointerTextPanel_BR.png -48 - - - - -Bot_M -16.000000 -8.000000 -8.000000,24.000000,0.000000 -13 -4 -Graphics\PanelsAndTabs\PointerTextPanel_BM.png -48 - - - - -Bot_L -8.000000 -8.000000 -0.000000,24.000000,0.000000 -9 -Graphics\PanelsAndTabs\PointerTextPanel_BL.png -48 - - - - -Top_R -8.000000 -8.000000 -24.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\PointerTextPanel_TR.png -48 - - - - -Top_M -16.000000 -8.000000 -8.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\PointerTextPanel_TM.png -48 - - - - -Top_L -8.000000 -8.000000 -3 -Graphics\PanelsAndTabs\PointerTextPanel_TL.png -48 - - - - -Mid_R -8.000000 -16.000000 -24.000000,8.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MR.png -48 - - - - -Mid_M -16.000000 -16.000000 -8.000000,8.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\PointerTextPanel_MM.png -48 - - - - -Mid_L -8.000000 -16.000000 -0.000000,8.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\PointerTextPanel_ML.png -48 - - - - - - -CreditsBackground -1280.000000 -720.000000 - - - -Image -1280.000000 -720.000000 -15 -16 -Graphics\CreditBackground.png - - - - - -PanelRecessed -6.000000 -6.000000 -15 - - - -graphic_groupbackground -6.000000 -6.000000 -15 - - - -TL -2.000000 -2.000000 -3 - - -0xff0f0f80 - - - - -0xff323232 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -TR -2.000000 -2.000000 -4.000000,0.000000,0.000000 -6 - - -0xff0f0f80 - - - - -0x0a323232 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -TM -2.000000 -2.000000 -2.000000,0.000000,0.000000 -7 - - -0xff0f0f80 - - - - -0xff323232 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -BL -2.000000 -2.000000 -0.000000,4.000000,0.000000 -9 - - -0xff0f0f80 - - - - -0x0a323232 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -BR -2.000000 -2.000000 -4.000000,4.000000,0.000000 -12 - - -0xff0f0f80 - - - - -0xffebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -BM -2.000000 -2.000000 -2.000000,4.000000,0.000000 -13 - - -0xff0f0f80 - - - - -0xffebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -ML -2.000000 -2.000000 -0.000000,2.000000,0.000000 -11 - - -0xff0f0f80 - - - - -0xff323232 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -MR -2.000000 -2.000000 -4.000000,2.000000,0.000000 -14 - - -0xff0f0f80 - - - - -0xffebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - -MM -2.000000 -2.000000 -2.000000,2.000000,0.000000 -15 - - -0xff0f0f80 - - - - -0xff8c8c8c - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,8.000000,0.000000,0,8.000000,0.000000,8.000000,0.000000,8.000000,7.000000,0,8.000000,7.000000,8.000000,7.000000,0.000000,7.000000,0,0.000000,7.000000,0.000000,7.000000,0.000000,0.000000,0, - - - - - - -GraphicPanel -272.000000 -110.000000 -15 - - - -graphic_groupbackground -272.000000 -110.000000 -15 - - - -Bot_R -16.000000 -16.000000 -256.344818,94.001953,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_M -240.344818 -16.000000 -16.000000,94.001953,0.000000 -13 -4 -Graphics\PanelsAndTabs\Panel_Bot_M.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,94.001953,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -256.344818,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_M -240.344818 -16.000000 -16.000000,0.000000,0.000000 -7 -4 -Graphics\PanelsAndTabs\Panel_Top_M.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - -Mid_R -16.000000 -78.001961 -256.344818,16.000000,0.000000 -14 -4 -Graphics\PanelsAndTabs\Panel_Mid_R.png -48 - - - - -Mid_M -240.344818 -78.001961 -16.000000,16.000000,0.000000 -15 -4 -Graphics\PanelsAndTabs\Panel_Mid_M.png -48 - - - - -Mid_L -16.000000 -78.001961 -0.000000,16.000000,0.000000 -11 -4 -Graphics\PanelsAndTabs\Panel_Mid_L.png -48 - - - - - - -XuiBackgroundPan -1280.000000 -720.000000 - - - -DayGroup -4099.999512 -719.999939 - - - -Pan1 -820.000000 -144.000000 -5.000000,5.000000,1.000000 -15 -false -1 -Graphics\Panorama_Background_S.png - - - - -Pan -820.000000 -144.000000 -5.000000,5.000000,1.000000 -15 -1 -Graphics\Panorama_Background_S.png - - - - -Pan -Position -SizeMode - - -0 -0.000000,0.000000,0.000000 -1 - - - -0 --4100.000000,-0.000004,0.000000 -16 - - - -Pan1 -Position -SizeMode -Show - - -0 -0.000000,0.000000,0.000000 -1 -false - - - -0 --879.765869,-0.000003,0.000000 -1 -false - - - -0 -1280.000000,-0.000003,0.000000 -1 -true - - - -0 -0.000000,-0.000004,0.000000 -16 -true - - - - - - -NightGroup -4099.999512 -719.999939 -false - - - -NightPan -820.000000 -144.000000 -5.000000,5.000000,1.000000 -15 -false -1 -Graphics\Panorama_Background_N.png - - - - -NightPan1 -820.000000 -144.000000 -5.000000,5.000000,1.000000 -15 -1 -Graphics\Panorama_Background_N.png - - - - -NightPan1 -Position -SizeMode - - -0 -0.000000,0.000000,0.000000 -1 - - - -0 --4100.000000,-0.000004,0.000000 -16 - - - -NightPan -Position -SizeMode -Show - - -0 -0.000000,0.000000,0.000000 -1 -false - - - -0 --879.765869,-0.000003,0.000000 -1 -false - - - -0 -1280.000000,-0.000003,0.000000 -1 -true - - - -0 -0.000000,-0.000004,0.000000 -16 -true - - - - - - -Darken -1280.000000 -720.000000 -0.750000 -false - - -0xff0f0f80 - - - - -0xff0f1562 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,637.000000,0.000000,0,637.000000,0.000000,637.000000,0.000000,637.000000,755.000000,0,637.000000,755.000000,637.000000,755.000000,0.000000,755.000000,0,0.000000,755.000000,0.000000,755.000000,0.000000,0.000000,0, - - - - - -XuiDarkOverlay -1280.000000 -720.000000 - - - -1280.000000 -720.000000 -0.400000 -15 - - -1.000000 -0xff0f0f0f - - - - -0xff0f0f0f - - -3 -0xff0f0f0f -0xffe5e5e5 -0xff0f0f0f -0.000000 -0.000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,300.000000,0.000000,0,300.000000,0.000000,300.000000,0.000000,300.000000,234.000000,0,300.000000,234.000000,300.000000,234.000000,0.000000,234.000000,0,0.000000,234.000000,0.000000,234.000000,0.000000,0.000000,0, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiBackgroundPan480 -1280.000000 -720.000000 - - - -DayGroup -4099.999512 -719.999939 - - - -Pan1 -820.000000 -144.000000 -640.000000,0.000000,0.000000 -3.400000,3.400000,1.000000 -15 -false -1 -Graphics\Panorama_Background_S.png - - - - -Pan -820.000000 -144.000000 -3.400000,3.400000,1.000000 -15 -1 -Graphics\Panorama_Background_S.png - - - - -Darken -640.000000 -480.000000 -0.300000 - - -0xff0f0f80 - - - - -0xff19195a - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,637.000000,0.000000,0,637.000000,0.000000,637.000000,0.000000,637.000000,755.000000,0,637.000000,755.000000,637.000000,755.000000,0.000000,755.000000,0,0.000000,755.000000,0.000000,755.000000,0.000000,0.000000,0, - - - - -Pan -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 --2788.000000,-0.000003,0.000000 - - - -Pan1 -Position -Show - - -0 -640.000000,0.000000,0.000000 -false - - - -0 -640.000000,-0.000003,0.000000 -false - - - -0 -637.000000,-0.000003,0.000000 -true - - - -0 -0.000000,-0.000004,0.000000 -true - - - - - - -NightGroup -4099.999512 -719.999939 -false - - - -Pan1 -820.000000 -144.000000 -640.000000,0.000000,0.000000 -3.400000,3.400000,1.000000 -15 -false -1 -Graphics\Panorama_Background_N.png - - - - -Pan -820.000000 -144.000000 -3.400000,3.400000,1.000000 -15 -1 -Graphics\Panorama_Background_N.png - - - - -Pan -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 --2788.000000,-0.000003,0.000000 - - - -Pan1 -Position -Show - - -0 -640.000000,0.000000,0.000000 -false - - - -0 -640.000000,-0.000003,0.000000 -false - - - -0 -637.000000,-0.000003,0.000000 -true - - - -0 -0.000000,-0.000004,0.000000 -true - - - - - - -Darken -640.000000 -480.000000 -0.750000 -false - - -0xff0f0f80 - - - - -0xff0f1562 - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,637.000000,0.000000,0,637.000000,0.000000,637.000000,0.000000,637.000000,755.000000,0,637.000000,755.000000,637.000000,755.000000,0.000000,755.000000,0,0.000000,755.000000,0.000000,755.000000,0.000000,0.000000,0, - - - - - -XuiBackgroundScroll -1280.000000 -720.000000 - - - -TileGroup1 -1280.000000 -160.000000 -0.000000,720.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup2 -1280.000000 -160.000000 -0.000000,560.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup3 -1280.000000 -160.000000 -0.000000,400.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup4 -1280.000000 -160.000000 -0.000000,240.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup5 -1280.000000 -160.000000 -0.000000,80.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup6 -1280.000000 -160.000000 -0.000000,-80.000000,0.000000 - - - -XuiImage1 -160.000000 -160.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage2 -160.000000 -160.000000 -160.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage3 -160.000000 -160.000000 -320.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage4 -160.000000 -160.000000 -480.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage5 -160.000000 -160.000000 -640.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage6 -160.000000 -160.000000 -800.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage7 -160.000000 -160.000000 -960.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - -XuiImage8 -160.000000 -160.000000 -1120.000000,0.000000,0.000000 -Graphics\Dirt_Tile.png -48 - - - - - -TileGroup1 -Position - - -0 -0.000000,720.000000,0.000000 - - - -0 -0.000000,560.000000,0.000000 - - - -TileGroup2 -Position - - -0 -0.000000,560.000000,0.000000 - - - -0 -0.000000,400.000000,0.000000 - - - -TileGroup3 -Position - - -0 -0.000000,400.000000,0.000000 - - - -0 -0.000000,240.000000,0.000000 - - - -TileGroup5 -Position - - -0 -0.000000,80.000000,0.000000 - - - -0 -0.000000,-80.000000,0.000000 - - - -TileGroup4 -Position - - -0 -0.000000,240.000000,0.000000 - - - -0 -0.000000,80.000000,0.000000 - - - -TileGroup6 -Position - - -0 -0.000000,-80.000000,0.000000 - - - -0 -0.000000,-160.000000,0.000000 - - - -0 -0.000000,720.000000,0.000000 - - - -0 -0.000000,720.000000,0.000000 - - - - - - -XuiBlankScene -405.000000 -244.000000 - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiScene -96.000000 -96.000000 -0.000000,3.000000,0.000000 -15 - - - -graphic_groupbackground -96.000000 -96.000000 -15 - - - -Graphic_TL -32.000000 -32.000000 -3 -Graphics\PanelsAndTabs\Panel_TL.png - - - - -Graphic_TM -32.000000 -32.000000 -32.000000,0.000000,0.000000 -71 -Graphics\PanelsAndTabs\Panel_TM.png - - - - -Graphic_TR -32.000000 -32.000000 -64.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_TR.png - - - - -Graphic_ML -32.000000 -32.000000 -0.000000,32.000000,0.000000 -139 -Graphics\PanelsAndTabs\Panel_ML.png - - - - -Graphic_MM -32.000000 -32.000000 -32.000000,32.000000,0.000000 -207 -Graphics\PanelsAndTabs\Panel_MM.png - - - - -Graphic_MR -32.000000 -32.000000 -64.000000,32.000000,0.000000 -142 -Graphics\PanelsAndTabs\Panel_MR.png - - - - -Graphic_BL -32.000000 -32.000000 -0.000000,64.000000,0.000000 -9 -Graphics\PanelsAndTabs\Panel_BL.png - - - - -Graphic_BM -32.000000 -32.000000 -32.000000,64.000000,0.000000 -77 -Graphics\PanelsAndTabs\Panel_BM.png - - - - -Graphic_BR -32.000000 -32.000000 -64.000000,64.000000,0.000000 -12 -Graphics\PanelsAndTabs\Panel_BR.png - - - - - -XuiTextPresenter -66.000000 -40.000000 -14.999996,14.000000,0.000000 -15 -0xff0f0f0f -18.000000 -1024 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiMenuScene -96.000000 -96.000000 -15 - - - -XuiTextPresenter -66.000000 -40.000000 -14.999996,14.000000,0.000000 -5 -0xff0f0f0f -18.000000 -1040 - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -XuiBlackScene -405.000000 -244.000000 - - - -1280.000000 -720.000000 - - -1.000000 -0xff0f0f80 - - - - -0xff0f0f0f - - -3 -0xff0f0f0f -0xffe5e5e5 -0xff0f0f0f -0.000000 -0.000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,300.000000,0.000000,0,300.000000,0.000000,300.000000,0.000000,300.000000,234.000000,0,300.000000,234.000000,300.000000,234.000000,0.000000,234.000000,0,0.000000,234.000000,0.000000,234.000000,0.000000,0.000000,0, - - - - - -Normal - - - -EndNormal - -stop - - -Focus - - - -EndFocus - -stop - - - - - - -GraphicPanel4grid -32.000000 -32.000000 -15 - - - -graphic_groupbackground -32.000000 -32.000000 -15 - - - -Bot_R -16.000000 -16.000000 -16.000000,16.000000,0.000000 -12 -Graphics\PanelsAndTabs\Panel_Bot_R.png -48 - - - - -Bot_L -16.000000 -16.000000 -0.000000,16.000000,0.000000 -9 -Graphics\PanelsAndTabs\Panel_Bot_L.png -48 - - - - -Top_R -16.000000 -16.000000 -16.000000,0.000000,0.000000 -6 -Graphics\PanelsAndTabs\Panel_Top_R.png -48 - - - - -Top_L -16.000000 -16.000000 -3 -Graphics\PanelsAndTabs\Panel_Top_L.png -48 - - - - - - -CraftingCategoryIcon -48.000000 -48.000000 - - - -Icon -48.000000 -48.000000 -15 -8 -Graphics\CraftIcons\icon_armour.png -48 - - - - - -Armour - -stop - - -Brewing - -stop - - -Decoration - -stop - - -Food - -stop - - -Materials - -stop - - -Mechanisms - -stop - - -Misc - -stop - - -RedstoneAndTransport - -stop - - -Structures - -stop - - -Tools - -stop - - -Transport - -stop - - - -Icon -ImagePath - - -0 -Graphics\CraftIcons\icon_armour.png - - - -0 -Graphics\CraftIcons\icon_brewing.png - - - -0 -Graphics\CraftIcons\icon_decoration.png - - - -0 -Graphics\CraftIcons\icon_food.png - - - -0 -Graphics\CraftIcons\icon_Materials.png - - - -0 -Graphics\CraftIcons\icon_mechanisms.png - - - -0 -Graphics\CraftIcons\icon_misc.png - - - -0 -Graphics\CraftIcons\icon_Redstone_and_Transport.png - - - -0 -Graphics\CraftIcons\icon_structures.png - - - -0 -Graphics\CraftIcons\icon_tools.png - - - -0 -Graphics\CraftIcons\icon_transport.png - - - - - - -CraftingPanelTabRightSmall -72.000000 -56.000000 - - - -Image -72.000000 -56.000000 -Graphics\PanelsAndTabs\Tab_Small_Right.png -48 - - - - - -CraftingPanelTabRight -107.000000 -85.000000 - - - -Image -107.000000 -85.000000 -Graphics\PanelsAndTabs\Tab_Right.png -48 - - - - - -CraftingPanelTabMiddleSmall -72.000000 -56.000000 - - - -TabImage2 -72.000000 -56.000000 -Graphics\PanelsAndTabs\Tab_Small_Middle.png -48 - - - - - -CraftingPanelTabMiddle -107.000000 -85.000000 - - - -Image -107.000000 -85.000000 -Graphics\PanelsAndTabs\Tab_Middle.png -48 - - - - - -CraftingPanelTabLeftSmall -72.000000 -56.000000 - - - -Image -72.000000 -56.000000 -Graphics\PanelsAndTabs\Tab_Small_Left.png -48 - - - - - -CraftingPanelTabLeft -107.000000 -85.000000 - - - -Image -107.000000 -85.000000 -Graphics\PanelsAndTabs\Tab_Left.png -48 - - - - - -CraftingPanelVScrollSmall -22.000000 -67.000000 - - - -Image -22.000000 -67.000000 -1 -Graphics\CraftScene\Crafting_2SlotSmallV.png -48 - - - - - -CraftingPanelVScroll3 -80.000000 -258.000000 - - - -Image -80.000000 -258.000000 -2 -Graphics\CraftScene\Crafting_3SlotLargeV.png -48 - - - - - -CraftingPanelVScroll2 -80.000000 -204.000000 - - - -Image -80.000000 -204.000000 -Graphics\CraftScene\Crafting_2SlotLargeV.png -48 - - - - - -CraftingPanelHighlightSmall -43.000000 -43.000000 - - - -Image -43.000000 -43.000000 -4 -Graphics\CraftScene\Craft_Highlight_L_ExtraSmall.png -48 - - - - - -CraftingPanelHighlight -72.000000 -72.000000 - - - -Image -72.000000 -72.000000 -Graphics\CraftScene\Craft_Highlight_L_Small.png -48 - - - - - -CraftingPanel3x3Small -490.000000 -284.000000 - - - -Image -490.000000 -284.000000 -Graphics\PanelsAndTabs\Crafting_Panel_Small.png -48 - - - - - -CraftingPanel3x3 -689.000000 -490.000000 - - - -Image -689.000000 -490.000000 -1 -Graphics\PanelsAndTabs\Crafting_Panel.png -48 - - - - - -CraftingPanel2x2Small -420.000000 -284.000000 - - - -Image -420.000000 -284.000000 -Graphics\PanelsAndTabs\Crafting_Panel_Small_2x2.png -48 - - - - - -CraftingPanel2x2 -591.000000 -490.000000 - - - -Image -591.000000 -490.000000 -Graphics\PanelsAndTabs\Crafting_Panel2x2.png -48 - - - - - -CreativeInventoryTabRightSmall -54.000000 -56.000000 - - - -Image -54.000000 -56.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_Small_R.png -48 - - - - - -CreativeInventoryTabRight -83.000000 -78.000000 - - - -Image -83.000000 -78.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_R.png -48 - - - - - -CreativeInventoryTabMiddleSmall -54.000000 -56.000000 - - - -Image -54.000000 -56.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_Small_M.png -48 - - - - - -CreativeInventoryTabMiddle -83.000000 -78.000000 - - - -Image -83.000000 -78.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_M.png -48 - - - - - -CreativeInventoryTabLeftSmall -54.000000 -56.000000 - - - -Image -54.000000 -56.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_Small_L.png -48 - - - - - -CreativeInventoryTabLeft -83.000000 -78.000000 - - - -Image -83.000000 -78.000000 -1 -Graphics\PanelsAndTabs\Tab_Creative8_L.png -48 - - - - - -CreativeInventorySmall -418.000000 -294.000000 - - - -Image -418.000000 -294.000000 -0.000015,0.000015,0.000000 -1 -Graphics\PanelsAndTabs\Creative_Panel_8_Small.png -48 - - - - - -CreativeInventory -643.000000 -490.000000 - - - -image -643.000000 -490.000000 -1 -Graphics\PanelsAndTabs\Creative_Panel_8.png -48 - - - - - -IconLStickSides -97.000000 -64.000000 - - - -Image -97.000000 -64.000000 -15 -8 -Graphics\X360ControllerIcons\ButtonLeftStick_sides.png - - - - - -IconLBumper -70.000000 -64.000000 - - - -Image -70.000000 -64.000000 -15 -8 -Graphics\X360ControllerIcons\ButtonLeftBumper.png - - - - - -IconRBumper -70.000000 -64.000000 - - - -Image -70.000000 -64.000000 -15 -8 -Graphics\X360ControllerIcons\ButtonRightBumper.png - - - - - -ImHowToPlayTrading -588.000000 -360.000000 - - - -Image -588.000000 -360.000000 -Graphics\HowToPlay\HowToPlay_Trading.png - - - - - -ImHowToPlayTradingSmall -260.000000 -174.000000 - - - -Image1 -260.000000 -174.000000 -1 -Graphics\HowToPlay\HowToPlay_Trading_Small.png - - - - - -ImHowToPlayAnvilSmall -260.000000 -290.000000 - - - -Image -260.000000 -290.000000 -1 -Graphics\HowToPlay\HowToPlay_Anvil_Small.png - - - - - -ImHowToPlayAnvil -430.000000 -430.000000 - - - -Image -430.000000 -430.000000 -Graphics\HowToPlay\HowToPlay_Anvil.png - - - - - -ImHowToPlayEnchantment -339.000000 -342.000000 - - - -Image -451.000000 -455.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_Enchantment.png - - - - - -ImHowToPlayEnderchest -339.000000 -342.000000 - - - -XuiImageBreeding -451.000000 -455.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_Enderchest.png - - - - - -ImHowToPlayBrewing -339.000000 -342.000000 - - - -XuiImageBrewing -451.000000 -455.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_Brewing.png - - - - - -ImHowToPlayFarmingAnimals -339.000000 -342.000000 - - - -XuiImageFarmingAnimals -451.000000 -455.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_FarmingAnimals.png - - - - - -ImHowToPlayBreeding -339.000000 -342.000000 - - - -XuiImageBreeding -451.000000 -455.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_Breeding.png - - - - - -ImHowToPlayCreative -491.000000 -371.000000 - - - -Image -654.000000 -494.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_Creative.png - - - - - -ImHowToPlayCraftingTable -517.000000 -371.000000 - - - -Image -689.000000 -494.000000 -0.750000,0.750000,0.750000 -1 -Graphics\HowToPlay\HowToPlay_CraftTable.png - - - - - -ImHowToPlayCrafting -563.000000 -428.000000 - - - -Image -563.000000 -428.000000 -8 -Graphics\HowToPlay\HowToPlay_Crafting.png - - - - - -ImHowToPlayFurnace -444.000000 -448.000000 - - - -Image -444.000000 -448.000000 -Graphics\HowToPlay\HowToPlay_Furnace.png - - - - - -ImHowToPlayLargeChest -335.000000 -417.000000 - - - -Image -446.000000 -556.000000 -0.750000,0.750000,1.000000 -8 -Graphics\HowToPlay\HowToPlay_LargeChest.png - - - - - -ImHowToPlayChest -449.000000 -434.000000 - - - -Image -449.000000 -434.000000 -1 -Graphics\HowToPlay\HowToPlay_Chest.png - - - - - -ImHowToPlayInventory -451.000000 -455.000000 - - - -Image -451.000000 -455.000000 -Graphics\HowToPlay\HowToPlay_Inventory.png - - - - - -ImHowToPlayHUD -583.000000 -157.000000 - - - -Image -583.000000 -157.000000 -1 -Graphics\HowToPlay\HowToPlay_HUD.png - - - - - -ImHowToPlayDispenser -453.000000 -431.000000 - - - -Image -453.000000 -431.000000 -1 -Graphics\HowToPlay\HowToPlay_Dispenser.png - - - - - -ImHowToPlayNetherPortal -525.000000 -308.000000 - - - -Image -750.000000 -440.000000 -0.700000,0.700000,1.000000 -1 -Graphics\HowToPlay\HowToPlay_NetherPortal.png - - - - - -ImHowToPlayTheEnd -525.000000 -308.000000 - - - -Image -750.000000 -440.000000 -0.700000,0.700000,1.000000 -1 -Graphics\HowToPlay\HowToPlay_TheEnd.png - - - - - -ImHowToPlayTheEndSmall -248.000000 -146.000000 - - - -Image -248.000000 -146.000000 -1 -Graphics\HowToPlay\HowToPlay_TheEnd_Small.png -48 - - - - - -ImHowToPlayNetherPortalSmall -248.000000 -146.000000 - - - -Image -248.000000 -146.000000 -1 -Graphics\HowToPlay\HowToPlay_NetherPortal_Small.png -48 - - - - - -ImHowToPlayDispenserSmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Dispenser_Small.png - - - - - -ImHowToPlayHUDSmall -364.000000 -84.000000 - - - -Image -364.000000 -84.000000 -1 -Graphics\HowToPlay\HowToPlay_HUD_Small.png -48 - - - - - -ImHowToPlayInventorySmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Inventory_Small.png - - - - - -ImHowToPlayChestSmall -258.000000 -260.000000 - - - -Image -258.000000 -260.000000 -1 -Graphics\HowToPlay\HowToPlay_Chest_Small.png - - - - - -ImHowToPlayLargeChestSmall -213.000000 -270.000000 - - - -Image -142.000000 -180.000000 -1.500000,1.500000,1.000000 -1 -Graphics\HowToPlay\HowToPlay_LargeChest_Small.png -48 - - - - - -ImHowToPlayFurnaceSmall -262.000000 -290.000000 - - - -Image -262.000000 -290.000000 -1 -Graphics\HowToPlay\HowToPlay_Furnace_Small.png - - - - - -ImHowToPlayCraftingSmall -252.000000 -170.000000 - - - -Image -252.000000 -170.000000 -1 -Graphics\HowToPlay\HowToPlay_Crafting_Small.png -48 - - - - - -ImHowToPlayCraftingTableSmall -245.000000 -142.000000 - - - -Image -245.000000 -142.000000 -1 -Graphics\HowToPlay\HowToPlay_CraftTable_Small.png -48 - - - - - -ImHowToPlayCreativeSmall -258.000000 -194.000000 - - - -Image -258.000000 -194.000000 -1 -Graphics\HowToPlay\HowToPlay_Creative_Small.png - - - - - -ImHowToPlayBreedingSmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Breeding_Small.png - - - - - -ImHowToPlayFarmingAnimalsSmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_FarmingAnimals_Small.png - - - - - -ImHowToPlayBrewingSmall -260.000000 -290.000000 - - - -Image -260.000000 -290.000000 -1 -Graphics\HowToPlay\HowToPlay_Brewing_Small.png - - - - - -ImHowToPlayEnchantmentSmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Enchantment_Small.png - - - - - -ImHowToPlayEnderchestSmall -262.000000 -280.000000 - - - -Image -262.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Enderchest_small.png - - - - - -ImHowToPlayBeaconSmall -260.000000 -290.000000 - - - -Image -336.000000 -290.000000 -1 -Graphics\HowToPlay\HowToPlay_Beacon_Small.png - - - - - -ImHowToPlayBeacon -430.000000 -430.000000 - - - -Image -430.000000 -430.000000 -1 -Graphics\HowToPlay\HowToPlay_Beacon.png - - - - - -ImHowToPlayHorsesSmall -248.000000 -146.000000 - - - -Image -248.000000 -146.000000 -1 -Graphics\HowToPlay\HowToPlay_Horses_Small.png -48 - - - - - -ImHowToPlayHorses -525.000000 -308.000000 - - - -Image -516.000000 -302.000000 -1 -Graphics\HowToPlay\HowToPlay_Horses.png - - - - - -ImHowToPlayFireworksSmall -260.000000 -280.000000 - - - -Image -260.000000 -280.000000 -1 -Graphics\HowToPlay\HowToPlay_Fireworks_Small.png - - - - - -ImHowToPlayFireworks -428.000000 -450.000000 - - - -Image -428.000000 -450.000000 -1 -Graphics\HowToPlay\HowToPlay_Fireworks.png - - - - - -ImHowToPlayHopperSmall -260.000000 -220.000000 - - - -Image -260.000000 -220.000000 -1 -Graphics\HowToPlay\HowToPlay_Hopper_Small.png - - - - - -ImHowToPlayHopper -430.000000 -336.000000 - - - -Image -430.000000 -336.000000 -1 -Graphics\HowToPlay\HowToPlay_Hopper.png - - - - - -XuiLabelDarkCentred8 -404.000000 -180.000000 -1.000000,1.000000,0.000000 - - - -Text -404.000000 -180.000000 -15 -0xff323232 -8.000000 -5120 - - - - - -XuiLabelVertCentDarkLeftWrap18 -405.000000 -180.000000 - - - -Text -405.000000 -180.000000 -15 -0xff323232 -18.000000 -20736 - - - - - -XuiLabelVertCentDarkLeft8 -404.000000 -180.000000 -1.000000,1.000000,0.000000 - - - -Text -404.000000 -180.000000 -15 -0xff323232 -8.000000 -4352 - - - - - -Beacon_1 -40.000000 -40.000000 - - - -Image -40.000000 -40.000000 -15 -8 -Graphics\Beacon_1.png -48 - - - - - -Beacon_2 -40.000000 -40.000000 - - - -Image -40.000000 -40.000000 -15 -8 -Graphics\Beacon_2.png -48 - - - - - -Beacon_3 -40.000000 -40.000000 - - - -Image -40.000000 -40.000000 -15 -8 -Graphics\Beacon_3.png -48 - - - - - -Beacon_4 -40.000000 -40.000000 - - - -Image -40.000000 -40.000000 -15 -8 -Graphics\Beacon_4.png -48 - - - + + 1280.000000 + 720.000000 + + + + XuiCheckboxSmall + 265.000000 + 20.000000 + + + + + Normal + + + + EndNormal + + stop + + + Focus + + + + EndFocus + + stop + + + NormalCheck + + + + EndNormalCheck + + stop + + + FocusCheck + + + + EndFocusCheck + + stop + + + NormalDisable + + + + EndNormalDisable + + stop + + + FocusDisable + + + + EndFocusDisable + + stop + + + NormalCheckDisable + + + + EndNormalCheckDisable + + stop + + + FocusCheckDisable + + + + EndFocusCheckDisable + + stop + + + NormalSel + + + + EndNormalSel + + stop + + + NormalSelCheck + + + + EndNormalSelCheck + + stop + + + NormalSelCheckDisable + + + + EndNormalSelCheckDisable + + stop + + + NormalSelDisable + + + + EndNormalSelDisable + + stop + + + + TickBox_Over + + + none + 4161536 + 0 + + + + none + 0 + 131072 + + + + none + 768 + 12801 + + + + none + 50 + 4161536 + + + + none + 838877056 + 0 + + + + none + -2147483648 + 1792 + + + + none + 8 + 50 + + + + none + 150994944 + 838876928 + + + + none + 3277119 + 0 + + + + none + 1056964608 + 12 + + + + none + 0 + 218103808 + + + + none + 917504 + 3277119 + + + + none + 12801 + 1056964608 + + + + none + 4128768 + 0 + + + + none + 12 + 2 + + + + linear + 720896 + 0 + + + + none + 1024 + 12801 + + + + none + 50 + 4161536 + + + + + + + linear + 402432 + 36609 + 1799604224 + 4354048 + 0 + -1526726656 + 84017154 + 24838144 + 4587776 + 85721088 + 983110 + 1109393408 + 1109393408 + 166 + 16842752 + 1048580 + 16779556 + 143 + 23872456 + 16896 + 0 + 10944512 + 334103 + -1315861 + -15790321 + 1099956224 + 1041 + 5 + 23986176 + 0 + 3840 + 5120 + 16 + 21 + 16777216 + 285212672 + 369098752 + 1179648 + 2752768 + 0 + 16818176 + 257 + 17170432 + 327680 + 0 + 3293056 + 0 + 1310720 + 3292928 + 0 + 1376256 + 3292928 + 0 + 1441792 + 3292928 + 0 + 2752512 + 3293056 + 2 + 117441564 + 135 + 24855496 + 17008 + 0 + 983040 + 1280 + 1694564358 + 603979778 + -2030016957 + -939524030 + 1879048192 + 3840 + 16842969 + 6619392 + 85721088 + 8847464 + 1137180672 + 1114636288 + 15 + 16842970 + 262400 + 153354240 + 9371712 + 1134559232 + 1105199104 + 168 + 15 + 421003243 + -336855281 + 252658048 + 0 + 1360330822 + 16779044 + 143 + 4604448 + 16928 + 0 + 11075584 + 9046277 + 16 + 48 + 917760 + 68943872 + 983054 + 1120272384 + 1115947008 + 170 + 0 + 1441807 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 1280 + 18 + 12 + 50358784 + 385875968 + 218103808 + 1572864 + 917760 + 6400 + 3840 + 107 + 32 + 0 + 436207616 + 1526923371 + 7077888 + 6029312 + 27904 + 25601 + 31 + 101 + 0 + 536870912 + 2113994752 + 3276800 + 8323072 + 28160 + 37120 + 51 + 205 + 50359808 + 1862270976 + -838860800 + 7340032 + 14614528 + 28928 + 72195 + 7340069 + 283 + 0 + 637534209 + 469827584 + 4 + 6684672 + 131329 + 151060742 + 22 + 0 + 16777266 + 4161536 + 0 + 33554432 + 838942592 + 0 + 327680 + 3277119 + -2147483648 + 3072 + 12801 + 1065353216 + 13 + 16777266 + 4161536 + 0 + 251658240 + 838926336 + 0 + 2097152 + 3277119 + 0 + 15872 + 12801 + 0 + 91 + 50 + 20905984 + 0 + 1543503872 + 838942592 + 0 + 6291456 + 3277119 + -2147483648 + 25601 + 12801 + 1065353216 + 101 + 16777266 + 4161536 + 0 + 2113929216 + 838877056 + 0 + 8323072 + 3277119 + -2147483648 + 37120 + 12801 + 1065353216 + 205 + 50 + 20938752 + 0 + -838860800 + 838926336 + 0 + 14614528 + 3277119 + 0 + 64768 + 12801 + 0 + 282 + 50 + 20905984 + 1 + 453050368 + 838942336 + 104 + 2 + 16844289 + 17367040 + 1245184 + 256 + 3293056 + 256 + 512 + 12863 + -2147483647 + 5 + 50 + 0 + 16777216 + 201392128 + 838860800 + 65536 + 852224 + 3293056 + 256 + 3841 + 12863 + -2147483648 + 92 + 50 + 1065353216 + 0 + 1677721600 + 843022336 + 0 + 6619392 + 3293056 + 256 + 32256 + 12863 + -2147483647 + 127 + 50 + 1065353216 + 16777216 + -1862270976 + 838860800 + 65536 + 11468800 + 3292928 + 256 + 52481 + 12800 + 1 + 206 + 50 + 1065353216 + 16777216 + -553648128 + 838860800 + 65536 + 16580608 + 3292928 + 256 + 72192 + 12800 + 1 + 283 + 16777266 + 1065353216 + 16793600 + 257 + 0 + 1048576 + 256 + 3342315 + -336920576 + 131072 + 3342315 + -336920576 + 327680 + 3342315 + -351338496 + 786432 + 3342315 + -351338496 + 851968 + 3342240 + -1600126976 + 917504 + 3342240 + -1600126976 + 983040 + 3342315 + -351338496 + 6029312 + 3342315 + -351338496 + 6553600 + 3342315 + -336920576 + 6619136 + 3342315 + -336920576 + 8257536 + 3342315 + -336920576 + 8323072 + 3342315 + -336920576 + 9502720 + 3342315 + -351338496 + 11468800 + 3342315 + -343932928 + 13434880 + 3342315 + -351338496 + 13500416 + 3342315 + -336920562 + 3 + 16777473 + 131328 + 0 + 100663296 + 0 + 838860800 + 0 + 512 + 12800 + 654321664 + 0 + 50331648 + 838860800 + 0 + 3072 + 12800 + 0 + 0 + 1543503872 + 838870784 + 671187712 + 23808 + 12800 + 0 + 519 + 269312 + 34561 + 2101594112 + 4329472 + 0 + 251658240 + 327781 + 16778788 + 647 + 6702024 + 16912 + 0 + 983041 + 16832768 + 1694564357 + 469762048 + -2030016445 + -939524030 + 268435456 + 3841 + 16833024 + 67174409 + 603979776 + -1895808957 + -1392508863 + -536870912 + 43776 + 3865 + 402648043 + -335606001 + 255930368 + 81 + 352339457 + 467968 + 36608 + 1178722304 + 4317184 + 0 + -1409286144 + 185140480 + 4096 + 12288 + 234946564 + 469762048 + 251661890 + -973078462 + -2080374784 + 43520 + 0 + 369102592 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 327680 + 4608 + 3075 + 6946839 + 13 + 0 + 402653184 + 234946560 + 1638400 + 983040 + 27392 + 8192 + 26 + 91 + 50359040 + 1811939328 + 1543503872 + 7143424 + 6553856 + 7936 + 25856 + 32 + 126 + 16777216 + 838860800 + 2130706432 + 7208960 + 9502720 + 13056 + 52483 + 7209071 + 206 + 0 + 1879048192 + -553648128 + 7405568 + 18481920 + 1879057664 + 72448 + 38 + 284 + 16777216 + 1024 + 1711276032 + 33620233 + 16844288 + 5632 + 1 + 12800 + 1065353216 + 2 + 50 + 20938752 + 0 + 83886080 + 838942592 + 0 + 786432 + 3277119 + -2147483648 + 3329 + 12800 + 1065353216 + 15 + 50 + 16777216 + 0 + 536870912 + 838942464 + 0 + 4063232 + 3277056 + 0 + 23296 + 12801 + 1056964608 + 92 + 50 + 20938752 + 0 + 1610612736 + 838942592 + 0 + 6553856 + 3277119 + -2147483648 + 25857 + 12800 + 1065353216 + 126 + 50 + 4161536 + 0 + 2130706432 + 838942592 + 0 + 9502720 + 3277119 + -2147483648 + 52480 + 12801 + 1065353216 + 206 + 50 + 16777216 + 0 + -553648128 + 838942464 + 0 + 16580608 + 3277056 + 0 + 72192 + 12801 + 1056964608 + 283 + 16777266 + 20873216 + 26624 + 513 + 17170689 + 150994944 + 318767104 + 65536 + 843022336 + 65536 + 131072 + 3293056 + 256 + 1280 + 12800 + 1 + 12 + 16777266 + 0 + 16777216 + 218169344 + 843022336 + 65536 + 983296 + 3293056 + 0 + 23552 + 12863 + -2147483648 + 100 + 50 + 1065353216 + 0 + 1694564352 + 843022336 + 65536 + 8257536 + 3293056 + 256 + 32512 + 12863 + -2147483647 + 145 + 50 + 0 + 16777216 + -1358954496 + 842989568 + 65536 + 13435136 + 3276800 + 256 + 52736 + 12863 + -2147483647 + 223 + 50 + 0 + 16777216 + -50331648 + 842989568 + 65536 + 18481152 + 3276800 + 256 + 72449 + 12863 + -2147483647 + 4194304 + 65792 + 0 + 268435456 + 65536 + 855632875 + -352321536 + 33554432 + 855632875 + -352321536 + 83886080 + 855632875 + 251658240 + 201326592 + 855632875 + 251658240 + 218103808 + 855613600 + -1610612736 + 234881024 + 855613600 + -1610612736 + 251658240 + 855632875 + 251658240 + 1543503872 + 855632875 + 251658240 + 1677721600 + 855632875 + -352321536 + 1694498816 + 855632875 + -352321536 + 2113929216 + 855632875 + -352321536 + 2130706432 + 855632875 + -352321536 + -1862270976 + 855632875 + 251658240 + -1358954496 + 855632875 + -2147483648 + -855638016 + 855632875 + 251658240 + -838860800 + 855632875 + -352317952 + 769 + 65792 + 33619968 + 6 + 0 + 50 + 0 + 0 + 131072 + 3276839 + 2621440 + 3 + 50 + 0 + 0 + 786432 + 3276800 + 0 + 92 + 50 + 2555944 + 25362432 + 6094848 + 3276800 + 0 + 132864 + 68943872 + 8847735 + 1137180672 + 1114636288 + 15 + 0 + 67134721 + 402432 + 165632 + 1715718144 + 4354048 + 0 + 251658497 + 14221413 + 16778524 + 135 + 6833096 + 17008 + 0 + 983297 + 14286852 + 16779556 + 143 + 4211643 + 16864 + 0 + 11337728 + 989463 + -1315861 + -15790321 + 1098907648 + 20757 + 917760 + 68943872 + 983054 + 1120272384 + 1115947008 + 170 + 0 + 1441807 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 1280 + 18 + 12 + 50358784 + 385875968 + 218103808 + 1572864 + 917760 + 6400 + 3840 + 107 + 32 + 0 + 436207616 + 1526923371 + 7077888 + 6029312 + 27904 + 25601 + 31 + 101 + 0 + 536870912 + 2113994752 + 3276800 + 8323072 + 28160 + 37120 + 51 + 205 + 50359808 + 1862270976 + -838860800 + 7340032 + 14614528 + 28928 + 72195 + 7340069 + 283 + 0 + 637534209 + 469827584 + 4 + 6684672 + 131329 + 151060742 + 22 + 0 + 16777266 + 4161536 + 0 + 33554432 + 838942592 + 0 + 327680 + 3277119 + -2147483648 + 3072 + 12801 + 1065353216 + 13 + 16777266 + 4161536 + 0 + 251658240 + 838926336 + 0 + 2097152 + 3277119 + 0 + 15872 + 12801 + 0 + 91 + 50 + 20905984 + 0 + 1543503872 + 838942592 + 0 + 6291456 + 3277119 + -2147483648 + 25601 + 12801 + 1065353216 + 101 + 16777266 + 4161536 + 0 + 2113929216 + 838877056 + 0 + 8323072 + 3277119 + -2147483648 + 37120 + 12801 + 1065353216 + 205 + 50 + 20938752 + 0 + -838860800 + 838926336 + 0 + 14614528 + 3277119 + 0 + 64768 + 12801 + 0 + 282 + 50 + 20905984 + 1 + 453050368 + 838942336 + 104 + 2 + 16844289 + 17367040 + 1245184 + 256 + 3293056 + 256 + 512 + 12863 + -2147483647 + 5 + 50 + 0 + 16777216 + 201392128 + 838860800 + 65536 + 852224 + 3293056 + 256 + 3841 + 12863 + -2147483648 + 92 + 50 + 1065353216 + 0 + 1677721600 + 843022336 + 0 + 6619392 + 3293056 + 256 + 32256 + 12863 + -2147483647 + 127 + 50 + 1065353216 + 16777216 + -1862270976 + 838860800 + 65536 + 11468800 + 3292928 + 256 + 52481 + 12800 + 1 + 206 + 50 + 1065353216 + 16777216 + -553648128 + 838860800 + 65536 + 16580608 + 3292928 + 256 + 72192 + 12800 + 1 + 283 + 16777266 + 1065353216 + 16793600 + 257 + 0 + 1048576 + 256 + 3342315 + -336920576 + 131072 + 3342315 + -336920576 + 327680 + 3342315 + -351338496 + 786432 + 3342315 + -351338496 + 851968 + 3342240 + -1600126976 + 917504 + 3342240 + -1600126976 + 983040 + 3342315 + -351338496 + 6029312 + 3342315 + -351338496 + 6553600 + 3342315 + -336920576 + 6619136 + 3342315 + -336920576 + 8257536 + 3342315 + -336920576 + 8323072 + 3342315 + -336920576 + 9502720 + 3342315 + -351338496 + 11468800 + 3342315 + -343932928 + 13434880 + 3342315 + -351338496 + 13500416 + 3342315 + -336920562 + 3 + 16777473 + 131328 + 0 + 100663296 + 0 + 838860800 + 0 + 512 + 12800 + 654321664 + 0 + 50331648 + 838860800 + 0 + 3072 + 12800 + 0 + 0 + 1543503872 + 838870784 + 671187712 + 23808 + 12800 + 0 + 519 + 269312 + 34561 + 2034485248 + 4333568 + 0 + 251658240 + 262245 + 16778788 + 647 + 6702024 + 16928 + 0 + 983041 + 16832768 + 1694564357 + 469762048 + -2030016445 + -939524030 + 536870912 + 3841 + 16833024 + 67174409 + 603979776 + -1895808957 + -1073741759 + -536870912 + 44544 + 3865 + 402648043 + -335606001 + 255930368 + 81 + 352325121 + 269312 + 3840 + 239257088 + 4359168 + 0 + -1442840576 + 5632 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 5 + 0 + 301989888 + 201523306 + 1507328 + 851968 + 6144 + 3585 + 25 + 15 + 0 + 1795162112 + 536870912 + 1703936 + 5964544 + 1795189760 + 23552 + 109 + 100 + 16777216 + 520093696 + 1694498816 + 2097152 + 8257792 + 12800 + 32512 + 110 + 145 + 0 + 855638016 + -855441298 + 7274496 + 13500416 + 28672 + 57088 + 113 + 282 + 50360320 + 620756993 + 452984832 + 2490368 + 18612480 + 0 + 67134976 + 513 + 17367297 + 100663296 + 369098752 + 65536 + 838877056 + 0 + 131072 + 3277119 + -2147483648 + 1280 + 12801 + 1065353216 + 12 + 50 + 20938752 + 0 + 218169344 + 838877056 + 0 + 983040 + 3277056 + 0 + 8192 + 12801 + 1056964608 + 62 + 50 + 16777216 + 0 + 1526726656 + 838942464 + 0 + 6029312 + 3277119 + -2147483648 + 24576 + 12801 + 1065353216 + 100 + 16777266 + 20938752 + 0 + 1694564352 + 838877056 + 0 + 8257536 + 3276863 + -2147483648 + 32512 + 12801 + 1065353216 + 145 + 50 + 20938752 + 0 + -855638016 + 838942592 + 0 + 13500416 + 3277056 + 0 + 57088 + 12801 + 1056964608 + 253 + 50 + 16777216 + 1 + 436207616 + 838942464 + 0 + 18546944 + 3277118 + -2147483648 + 1744830464 + 33620230 + 16845056 + 4864 + 1 + 12863 + -2147483647 + 2 + 50 + 1065353216 + 16777216 + 83886080 + 838860800 + 65536 + 786688 + 3276800 + 256 + 3329 + 12863 + -2147483647 + 15 + 16777266 + 1065353216 + 0 + 1543503872 + 843022336 + 0 + 6553600 + 3293056 + 0 + 25857 + 12863 + -2147483647 + 126 + 50 + 1065353216 + 16777216 + 2130706432 + 843022336 + 65536 + 9502720 + 3276800 + 256 + 44800 + 12863 + 1 + 205 + 16777266 + 0 + 16777216 + -838860800 + 843022336 + 65536 + 14614528 + 3276800 + 256 + 64768 + 12863 + 1 + 282 + 50 + 0 + 16777217 + 453050368 + 843022336 + 65600 + 1 + 16777216 + 4096 + 1 + 13055 + -336860416 + 512 + 13055 + -336860416 + 1280 + 13055 + -336916736 + 3072 + 13055 + -336916736 + 3328 + 13055 + -1600086016 + 3584 + 13055 + -1600086016 + 3840 + 13055 + -336916736 + 23552 + 13055 + -336916736 + 25600 + 13055 + -336860416 + 25856 + 13055 + -336860416 + 32256 + 13055 + -336860416 + 32512 + 13055 + -336860416 + 37120 + 13055 + -336916736 + 44800 + 13055 + -336887808 + 52480 + 13055 + -336916736 + 52736 + 13055 + -336860416 + 234881024 + 50397185 + 16777729 + 0 + 393216 + 0 + 3276800 + 0 + 2 + 50 + 2555944 + 0 + 196608 + 3276800 + 0 + 12 + 50 + 0 + 0 + 6029312 + 3276839 + 2621827 + 93 + 50 + 0 + 2 + 117441564 + 135 + 25445032 + 16832 + 0 + 983040 + 1280 + 922812425 + 603979778 + 251676738 + -1342177215 + -536870912 + 5376 + 420413441 + 16973583 + 260046850 + 168035071 + -336916736 + 257 + 1008 + 6619392 + 85721088 + 34013286 + 1118306304 + 1103101952 + 65793 + -2063571711 + 267264 + 1792 + 1749198848 + 4308992 + 65793 + -2046819327 + 463872 + 1792 + 1078110208 + 4308992 + 1644543 + -336860161 + 252645185 + 1342177280 + 5510400 + 234946564 + 469762048 + 251661889 + -536870846 + 402653184 + 44800 + 0 + 301993728 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 1179648 + 196864 + 5888 + 1024 + 24 + 5 + 16777216 + 419430400 + 100663296 + 1703936 + 459008 + 27648 + 2048 + 109 + 14 + 16777216 + 520093696 + 251658240 + 2097152 + 1048832 + 12800 + 4352 + 51 + 18 + 16777216 + 1862270976 + 318767104 + 7405568 + 1310976 + 9472 + 5376 + 38 + 22 + 16777216 + 1024 + 1711276032 + 33620233 + 16844288 + 4608 + 1 + 12800 + 1065353216 + 2 + 50 + 20938752 + 0 + 50331648 + 838942592 + 0 + 262144 + 3276863 + -2147483648 + 1280 + 12800 + 0 + 6 + 50 + 0 + 0 + 117440512 + 838860800 + 0 + 524288 + 3277119 + -2147483648 + 2816 + 12801 + 1065353216 + 14 + 16777266 + 20938752 + 0 + 251723776 + 838860800 + 0 + 1048576 + 3276863 + -2147483648 + 4352 + 12801 + 1065353216 + 18 + 50 + 20938752 + 0 + 318767104 + 838942592 + 0 + 1310720 + 3277119 + -2147483648 + 5377 + 12801 + 1065353216 + 22 + 16777266 + 20938752 + 26624 + 513 + 17170689 + 150994944 + 301989888 + 65536 + 843022336 + 65536 + 131072 + 3276800 + 0 + 768 + 12800 + 0 + 4 + 16777266 + 1065353216 + 16777216 + 83951616 + 843022336 + 65536 + 393472 + 3293056 + 256 + 1793 + 12863 + -2147483647 + 8 + 50 + 0 + 16777216 + 184549376 + 843005952 + 65536 + 917504 + 3276800 + 256 + 3841 + 12863 + -2147483647 + 16 + 50 + 1065353216 + 16777216 + 285278208 + 843022336 + 0 + 1179904 + 3293056 + 0 + 4865 + 12863 + 1 + 20 + 50 + 1056964608 + 16777216 + 352387072 + 842989568 + 65536 + 1442048 + 3292928 + 256 + 1073741824 + 50397184 + 16777473 + 16973824 + 1179648 + 256 + 3342315 + -336855281 + 252641280 + 1114112 + 131072 + 3342315 + -351273201 + 252641280 + 1114112 + 196608 + 3342315 + -351273201 + 252641280 + 1114112 + 262144 + 3342240 + -1600094193 + 252641280 + 1114112 + 327680 + 3342240 + -1600094193 + 252641280 + 1114112 + 393472 + 3342315 + -336855281 + 252641280 + 1114112 + 459008 + 3342315 + -336855281 + 252641280 + 1114112 + 524288 + 3342315 + -351273201 + 252641280 + 1114112 + 720896 + 3342315 + -340787441 + 252641280 + 11534336 + 917504 + 3342315 + -351273201 + 252641280 + 1114112 + 983296 + 3342315 + -336855281 + 252641280 + 1114112 + 1048832 + 3342315 + -336855281 + 252641280 + 1114112 + 1114112 + 3342315 + -351273201 + 252641280 + 1114112 + 1179648 + 3342315 + -351273201 + 252641280 + 1114112 + 1245184 + 3342240 + -1600061681 + 252641280 + 1114112 + 1310976 + 3342240 + -1600094193 + 252641280 + 1114112 + 1376256 + 3342240 + -1600094193 + 252641280 + 1114112 + 1441792 + 3342240 + -1600094193 + 252641280 + 1114126 + 3 + 16777473 + 131328 + 0 + 83886080 + 0 + 838860800 + 0 + 512 + 12800 + 654321664 + 0 + 50331648 + 838860800 + 0 + 2048 + 12800 + 654321665 + -2097152000 + 150994944 + 838860800 + 0 + 34013188 + 469762048 + -2029942973 + 201326658 + 536870912 + 3840 + 5 + 3604736 + 153354240 + 34537544 + 1125384192 + 1111490560 + 177 + 1642240 + 16843519 + 252674048 + 34210818 + -1316081 + 1 + 16777219 + -268409599 + 334848 + 132864 + 1715670016 + 4333568 + 257 + 25493605 + 16778260 + 7 + 6832908 + 16928 + 257 + 25559044 + 16779292 + 15 + 4211440 + 16864 + 0 + 2758935 + -1315861 + -15790321 + 1098907648 + 21525 + 917760 + 68943872 + 983054 + 1105199104 + 1108869120 + 175 + 0 + 1179663 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 4608 + 769 + 23 + 4 + 0 + 402653184 + 83951616 + 1638400 + 393216 + 6656 + 1793 + 108 + 8 + 0 + 1828716544 + 234946560 + 2031616 + 983040 + 8192 + 4097 + 50 + 17 + 0 + 855638016 + 302055424 + 7274496 + 1245184 + 28928 + 5121 + 37 + 21 + 0 + 637534208 + 369164288 + 4 + 6684672 + 131329 + 151060742 + 18 + 0 + 16777266 + 4161536 + 0 + 33554432 + 838942592 + 0 + 196608 + 3277119 + -2147483648 + 1024 + 12800 + 1065353216 + 5 + 50 + 0 + 0 + 100663296 + 838860800 + 0 + 458752 + 3276800 + 0 + 2048 + 12801 + 1065353216 + 11 + 50 + 20938752 + 0 + 234946560 + 838942592 + 0 + 983296 + 3276800 + 0 + 4096 + 12800 + 1065353216 + 17 + 50 + 20938752 + 0 + 301989888 + 838942592 + 0 + 1245184 + 3277119 + -2147483648 + 5120 + 12801 + 1065353216 + 21 + 16777266 + 20938752 + 0 + 369164288 + 838942592 + 104 + 2 + 16844289 + 17367040 + 1179648 + 256 + 3293056 + 256 + 512 + 12800 + 0 + 3 + 50 + 0 + 0 + 67174400 + 843022336 + 65536 + 327936 + 3293056 + 256 + 1537 + 12863 + -2147483647 + 7 + 16777266 + 1065353216 + 16777216 + 134217728 + 838860800 + 65536 + 720896 + 3292992 + 256 + 3584 + 12800 + 1 + 15 + 16777266 + 1065353216 + 16777216 + 268435456 + 843022336 + 65536 + 1114368 + 3293056 + 0 + 4609 + 12863 + -2147483648 + 19 + 16777266 + 1056964608 + 16777216 + 335544320 + 842989568 + 65536 + 1376512 + 3292928 + 256 + 5633 + 12863 + 1 + 4194304 + 196864 + 65537 + 16843520 + 4608 + 1 + 13055 + -336860161 + 252645120 + 10752 + 512 + 13055 + -336916481 + 252645120 + 10752 + 768 + 13055 + -336916481 + 252645120 + 10752 + 1024 + 13055 + -1600085888 + 252645120 + 10752 + 1280 + 13055 + -1600085888 + 252645120 + 10752 + 1537 + 13055 + -336860161 + 252645120 + 10752 + 1793 + 13055 + -336860161 + 252645120 + 10752 + 2048 + 13055 + -336916481 + 252645120 + 10752 + 2816 + 13055 + -336875521 + 252645120 + 45568 + 3584 + 13055 + -336916481 + 252645120 + 10752 + 3841 + 13055 + -336860161 + 252645120 + 10752 + 4097 + 13055 + -336860161 + 252645120 + 10752 + 4352 + 13055 + -336916481 + 252645120 + 10752 + 4608 + 13055 + -336916481 + 252645120 + 10752 + 4864 + 13055 + -1600085761 + 252645120 + 10752 + 5121 + 13055 + -1600085888 + 252645120 + 10752 + 5376 + 13055 + -1600085888 + 252645120 + 10752 + 5632 + 13055 + -1600085888 + 252645120 + 10752 + 234881024 + 50397185 + 16777729 + 0 + 327680 + 0 + 3276800 + 0 + 2 + 50 + 2555944 + 0 + 196608 + 3276800 + 0 + 8 + 50 + 2555944 + 25362432 + 589824 + 3276800 + 0 + 132864 + 51642368 + 459144 + 1140457472 + 1117782016 + 0 + 83897859 + 269312 + 34560 + -1606157824 + 4366336 + 0 + 251658240 + 589831 + 16779044 + 143 + 10568064 + 16768 + 0 + 11730944 + 788742 + 11796480 + 3145735 + 16779300 + 143 + 10699754 + 740508032 + 0 + 8454144 + 856327 + 4 + 11862016 + 3145735 + 16779044 + 143 + 10830208 + 16768 + 0 + 8519680 + 592134 + 11927552 + 3145735 + 16779044 + 143 + 10961280 + 16768 + 0 + 11796480 + 395526 + 11993088 + 3145735 + 16779300 + 143 + 11092970 + 740508032 + 0 + 3670016 + 463111 + 4 + 12058624 + 3145735 + 16778780 + 135 + 11223424 + 16768 + 0 + 198918 + 12124160 + 3145735 + 16779300 + 143 + 11354496 + 16960 + 33685504 + 11862016 + 921863 + 4 + 12189696 + 3145735 + 16779300 + 143 + 11486186 + 740508224 + 33685504 + 3801088 + 987399 + 4 + 12255232 + 3145735 + 16779300 + 143 + 11616640 + 16960 + 33685504 + 3866624 + 725255 + 4 + 12320768 + 3145804 + 16778788 + 143 + 23609856 + 16816 + 0 + 11927552 + 393728 + 33575168 + 4980992 + 119799808 + 9372009 + 1107296256 + 1102053376 + 183 + 12 + 33554944 + 1275134208 + 257 + 1778450438 + 603979776 + -1895732413 + -360710078 + 536870912 + 47104 + 1282 + 131288 + 70 + 16778268 + 15 + 4604586 + 17032 + 0 + 12124160 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 1 + 10485760 + 65793 + 100663296 + 83886080 + 0 + 843022336 + 0 + 335544320 + 842989568 + 0 + 352321536 + 842989568 + 0 + 369098752 + 842989568 + 0 + 704643072 + 843022336 + 519 + 269312 + 34561 + 1967376384 + 4343808 + 0 + 251658240 + 262245 + 16778788 + 647 + 6702024 + 16928 + 0 + 983041 + 16803584 + 1694564357 + 469762048 + -2030016445 + -939524030 + 536870912 + 3841 + 16804096 + 67174409 + 603979776 + -1895808957 + -1107296191 + -536870912 + 10752 + 3865 + 402648043 + -335606001 + 255950848 + 84 + 352325121 + 269312 + 3840 + 239257088 + 4359168 + 0 + -1442840576 + 5632 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 5 + 0 + 301989888 + 201523306 + 1507328 + 851968 + 6144 + 3585 + 25 + 15 + 0 + 1795162112 + 536870912 + 1703936 + 5964544 + 1795189760 + 23552 + 109 + 100 + 16777216 + 520093696 + 1694498816 + 2097152 + 8257792 + 12800 + 32512 + 110 + 145 + 0 + 855638016 + -855441298 + 7274496 + 13500416 + 28672 + 57088 + 113 + 282 + 50360320 + 620756993 + 452984832 + 2490368 + 18612480 + 0 + 67134976 + 513 + 17367297 + 100663296 + 369098752 + 65536 + 838877056 + 0 + 131072 + 3277119 + -2147483648 + 1280 + 12801 + 1065353216 + 12 + 50 + 20938752 + 0 + 218169344 + 838877056 + 0 + 983040 + 3277056 + 0 + 8192 + 12801 + 1056964608 + 62 + 50 + 16777216 + 0 + 1526726656 + 838942464 + 0 + 6029312 + 3277119 + -2147483648 + 24576 + 12801 + 1065353216 + 100 + 16777266 + 20938752 + 0 + 1694564352 + 838942592 + 0 + 8257536 + 3277119 + -2147483648 + 32512 + 12801 + 1065353216 + 145 + 50 + 20938752 + 0 + -855638016 + 838942592 + 0 + 13500416 + 3277056 + 0 + 57088 + 12801 + 1056964608 + 253 + 50 + 16777216 + 1 + 436207616 + 838942464 + 0 + 18546944 + 3277118 + -2147483648 + 1744830464 + 33620230 + 16845056 + 4864 + 1 + 12863 + -2147483647 + 2 + 50 + 1065353216 + 16777216 + 83886080 + 838860800 + 65536 + 786688 + 3276800 + 256 + 3329 + 12863 + -2147483647 + 15 + 16777266 + 1065353216 + 0 + 1543503872 + 843022336 + 0 + 6553600 + 3293056 + 0 + 25857 + 12863 + -2147483648 + 126 + 50 + 0 + 0 + 2130706432 + 843022336 + 65536 + 9502720 + 3276800 + 256 + 44800 + 12863 + 1 + 205 + 16777266 + 0 + 16777216 + -838860800 + 843022336 + 65536 + 14614528 + 3276800 + 256 + 64768 + 12863 + 1 + 282 + 50 + 0 + 16777217 + 453050368 + 843022336 + 65600 + 1 + 16777216 + 4096 + 1 + 13055 + -336860416 + 512 + 13055 + -336860416 + 1280 + 13055 + -336916736 + 3072 + 13055 + -336916736 + 3328 + 13055 + -1600086016 + 3584 + 13055 + -1600086016 + 3840 + 13055 + -336916736 + 23552 + 13055 + -336916736 + 25600 + 13055 + -336860416 + 25856 + 13055 + -336916736 + 32256 + 13055 + -336916736 + 32512 + 13055 + -336860416 + 37120 + 13055 + -336916736 + 44800 + 13055 + -336887808 + 52480 + 13055 + -336916736 + 52736 + 13055 + -336860416 + 234881024 + 50397185 + 16777729 + 0 + 393216 + 0 + 3276800 + 0 + 2 + 50 + 2555944 + 0 + 196608 + 3276800 + 0 + 12 + 50 + 0 + 0 + 6029312 + 3276839 + 2621827 + 93 + 50 + 0 + 2 + 117441300 + 7 + 25772983 + 17072 + 0 + 768 + 771948548 + 469762048 + -2030002109 + -1224736702 + -1342177280 + 3840 + 9 + 459008 + 119799808 + 9371809 + 1098907648 + 1098907648 + 186 + 12 + 151388340 + 48 + 459008 + 136577024 + 9371811 + 1135029283 + 1098907648 + 53 + 13 + 285671424 + 262325 + 48 + 459008 + 119799808 + 9371813 + 1098907648 + 1098907648 + 54 + 9 + 151388342 + 48 + 459008 + 119799808 + 9371815 + 1098907648 + 1098907648 + 187 + 6 + 151388343 + 48 + 459008 + 136577024 + 9371817 + 1135029283 + 1098907648 + 56 + 7 + 285671424 + 262328 + 48 + 459008 + 102498304 + 8847531 + 1098907648 + 1098907648 + 3 + 151388345 + 48 + 459008 + 136577024 + 9371821 + 1098907648 + 1113588224 + 188 + 14 + 285671424 + 262330 + 48 + 459008 + 136577024 + 9371823 + 1135029283 + 1113588224 + 58 + 15 + 285671424 + 262331 + 48 + 459008 + 136577024 + 9371825 + 1098907648 + 1113588224 + 59 + 11 + 285671424 + 262332 + 48 + 23724288 + 153354240 + 9372011 + 1118306304 + 1103101952 + 189 + 5 + 33554945 + -2080370176 + 352321536 + 16777216 + -1107296256 + -1090518015 + 666624 + 167681 + 1816374856 + 1296149092 + -603979776 + -1073741824 + 117446935 + -1315861 + -15790321 + 1099956224 + 1041 + 5 + 23986176 + 0 + 3840 + 256 + 16 + 2 + 16777216 + 285212672 + 50331648 + 1179648 + 262400 + 0 + 519 + 201728 + 1793 + -1975259136 + 4388864 + 0 + 196654 + 50332700 + 135 + 10503152 + 17144 + 0 + 983040 + 2304 + 117506055 + 603979776 + -1895784127 + -2147483583 + -2147483648 + 49408 + 3081 + 100709376 + 12288 + 117506056 + 603979776 + -1895783613 + -533978303 + -2147483648 + 49664 + 3345 + 117440512 + 67155200 + 12288 + 117506055 + 603979776 + -1895783103 + -2147483583 + -2147483648 + 49920 + 2313 + 100709888 + 12288 + 117506055 + 603979776 + -1895782591 + -2147483583 + -2147483648 + 35840 + 1545 + 100710144 + 12288 + 117506056 + 603979776 + -1895782077 + -533978303 + -2147483648 + 14336 + 1809 + 117440512 + 67155968 + 12288 + 117506054 + 469762048 + -2029999295 + -2147483583 + -2147483648 + 777 + 100710656 + 12288 + 117506056 + 603979776 + -1895781055 + -2147483582 + -1207894016 + 36096 + 3601 + 117440512 + 67156480 + 12288 + 117506056 + 603979776 + -1895780541 + -533978302 + -1207894016 + 14848 + 3857 + 117440512 + 67156736 + 12288 + 117506056 + 603979776 + -1895780031 + -2147483582 + -1207894016 + 15104 + 2833 + 117440512 + 67156992 + 12289 + 1778450441 + 603979776 + -1895732413 + 201326658 + 536870912 + 50176 + 1282 + 131463 + 1179669 + 1 + 197 + 198 + 262400 + 170655744 + 42926444 + 1138491393 + 1107296256 + 192 + 7 + 1644543 + -336860161 + 252645185 + -1879048192 + 266496 + 1281 + 1845493760 + 0 + 983040 + 65536 + 4096 + 513 + 17 + 3 + 0 + 301989888 + 67174400 + 0 + 132864 + 68943872 + 8847743 + 1137180672 + 1108344832 + 15 + 0 + 83911937 + 402432 + 165632 + 1715718144 + 4329472 + 0 + 251658497 + 14221413 + 16778524 + 135 + 6833096 + 16912 + 0 + 983297 + 14286852 + 16779556 + 143 + 4211632 + 16864 + 0 + 13041664 + 989463 + -1315861 + -15790321 + 1093664768 + 20757 + 4587776 + 119799808 + 9371718 + 1105199104 + 1105199104 + 200 + 14 + 151322624 + 1048576 + 3145742 + 16778268 + 15 + 934598 + 17028 + 0 + 11141120 + 22 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 83886080 + 1179648 + 787200 + 1778390784 + 3328 + 24 + 14 + 16777216 + 419430400 + 251658240 + 7012352 + 2097152 + 6656 + 23299 + 7012460 + 92 + 0 + 1828716544 + 1677787136 + 2031616 + 6619136 + 8192 + 32257 + 50 + 127 + 0 + 1845493760 + -1862270976 + 3342336 + 13435648 + 1845522176 + 52736 + 112 + 223 + 0 + 1895825409 + 436404336 + 2424832 + 18546688 + 9728 + 72705 + 0 + 262246 + 2 + 16845057 + 17170432 + 1441792 + 256 + 3276863 + -2147483648 + 512 + 12801 + 1065353216 + 5 + 50 + 20938752 + 0 + 201326592 + 838942592 + 0 + 852224 + 3276863 + -2147483648 + 3840 + 12801 + 0 + 32 + 50 + 20905984 + 0 + 1040187392 + 838926336 + 0 + 5963776 + 3277119 + 0 + 23552 + 12801 + 1065353216 + 96 + 50 + 20938752 + 0 + 1677787136 + 838942592 + 0 + 6619392 + 3276863 + -2147483648 + 32256 + 12800 + 1065353216 + 127 + 50 + 20938752 + 0 + -1862270976 + 838942592 + 0 + 13434880 + 3277119 + -2147483648 + 52736 + 12801 + 0 + 223 + 50 + 20905984 + 0 + -50331648 + 838926336 + 0 + 18481152 + 3277119 + 0 + 72449 + 12801 + 1048576000 + 6815744 + 131329 + 100729097 + 19 + 0 + 16777266 + 1065353216 + 16777216 + 33554432 + 843022336 + 65536 + 327680 + 3276800 + 256 + 3073 + 12800 + 1 + 13 + 16777266 + 1065353216 + 16777216 + 251723776 + 843022336 + 0 + 6029312 + 3293056 + 0 + 25600 + 12863 + -2147483648 + 101 + 16777266 + 1065353216 + 16777216 + 2113929216 + 843022336 + 65536 + 8323072 + 3293056 + 256 + 37120 + 12800 + 1 + 175 + 50 + 1056964608 + 16777216 + -855572480 + 838860800 + 65536 + 13500416 + 3293056 + 256 + 57088 + 12800 + 1 + 253 + 50 + 1056964608 + 16777217 + 436207616 + 838860800 + 65536 + 18546944 + 3293056 + 256 + 1073741824 + 16842752 + 16 + 0 + 16777266 + -1315861 + 2 + 50 + -1315861 + 5 + 50 + -1316081 + 12 + 50 + -1316081 + 13 + 50 + -6250336 + 14 + 50 + -6250336 + 15 + 50 + -1316081 + 92 + 50 + -1316081 + 100 + 50 + -1315861 + 101 + 50 + -1315861 + 126 + 50 + -1315861 + 127 + 50 + -1315861 + 145 + 50 + -1316081 + 175 + 50 + -1315968 + 205 + 50 + -1316081 + 206 + 50 + -1315861 + 917504 + 196864 + 16842754 + 16777216 + 1536 + 0 + 12800 + 0 + 0 + 33554432 + 838870784 + 671088640 + 768 + 12800 + 0 + 0 + 201326592 + 838860800 + 0 + 23552 + 12800 + 654321665 + -2097152000 + 1560281088 + 838860800 + 0 + 34013188 + 469762048 + -2029944509 + -939524030 + 1879048192 + 3840 + 5 + 6619392 + 103022592 + 42401894 + 1137180672 + 1114636288 + 15 + 65792 + -654285567 + 334848 + 34560 + 1749272576 + 4354048 + 0 + 251724032 + -637533183 + 599040 + 36608 + 1078174976 + 4317184 + 0 + + + + none + -336860161 + 252645185 + -2147483648 + 5313792 + 1174470663 + 603979776 + -1895807422 + 536870978 + 536870912 + 51456 + 36361 + 83886080 + 268435456 + 805309953 + 269312 + 3840 + 239257088 + 4359168 + 0 + -1442840576 + 5632 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 5 + 0 + 301989888 + 201523306 + 1507328 + 851968 + 6144 + 3585 + 25 + 15 + 0 + 1795162112 + 536870912 + 1703936 + 5964544 + 1795189760 + 23552 + 109 + 100 + 16777216 + 520093696 + 1694498816 + 2097152 + 8257792 + 12800 + 32512 + 110 + 145 + 0 + 855638016 + -855441298 + 7274496 + 13500416 + 28672 + 57088 + 113 + 282 + 50360320 + 620756993 + 452984832 + 2490368 + 18612480 + 0 + 67134976 + 513 + 17367297 + 100663296 + 369098752 + 65536 + 838877056 + 0 + 131072 + 3277119 + -2147483648 + 1280 + 12801 + 1065353216 + 12 + 50 + 20938752 + 0 + 218169344 + 838877056 + 0 + 983040 + 3277056 + 0 + 8192 + 12801 + 1056964608 + 62 + 50 + 16777216 + 0 + 1526726656 + 838942464 + 0 + 6029312 + 3277119 + -2147483648 + 24576 + 12801 + 1065353216 + 100 + 16777266 + 20938752 + 0 + 1694564352 + 838877056 + 0 + 8257536 + 3276863 + -2147483648 + 32512 + 12801 + 1065353216 + 145 + 50 + 20938752 + 0 + -855638016 + 838942592 + 0 + 13500416 + 3277056 + 0 + 57088 + 12801 + 1056964608 + 253 + 50 + 16777216 + 1 + 436207616 + 838942464 + 0 + 18546944 + 3277118 + -2147483648 + 1744830464 + 33620230 + 16845056 + 4864 + 1 + 12863 + -2147483647 + 2 + 50 + 1065353216 + 16777216 + 83886080 + 838860800 + 65536 + 786688 + 3276800 + 256 + 3329 + 12863 + -2147483647 + 15 + 16777266 + 1065353216 + 0 + 1543503872 + 843022336 + 0 + 6553600 + 3293056 + 0 + 25857 + 12863 + -2147483647 + 126 + 50 + 1065353216 + 16777216 + 2130706432 + 843022336 + 65536 + 9502720 + 3276800 + 256 + 44800 + 12863 + 1 + 205 + 16777266 + 0 + 16777216 + -838860800 + 843022336 + 65536 + 14614528 + 3276800 + 256 + 64768 + 12863 + 1 + 282 + 50 + 0 + 16777217 + 453050368 + 843022336 + 65600 + 1 + 16777216 + 4096 + 1 + 13055 + -336860416 + 512 + 13055 + -336860416 + 1280 + 13055 + -336916736 + 3072 + 13055 + -336916736 + 3328 + 13055 + -1600086016 + 3584 + 13055 + -1600086016 + 3840 + 13055 + -336916736 + 23552 + 13055 + -336916736 + 25600 + 13055 + -336860416 + 25856 + 13055 + -336860416 + 32256 + 13055 + -336860416 + 32512 + 13055 + -336860416 + 37120 + 13055 + -336916736 + 44800 + 13055 + -336887808 + 52480 + 13055 + -336916736 + 52736 + 13055 + -336860416 + 234881024 + 50397185 + 16777729 + 0 + 393216 + 0 + 3276800 + 0 + 2 + 50 + 2555944 + 0 + 196608 + 3276800 + 0 + 12 + 50 + 0 + 0 + 6029312 + 3276839 + 2621827 + 93 + 50 + 0 + 2 + 117441300 + 7 + 25904092 + 17172 + 0 + 1280 + 771948548 + 469762048 + -2030002109 + -603979709 + 335544320 + 3840 + 9 + 459008 + 119799808 + 9371809 + 1098907648 + 1098907648 + 202 + 12 + 151388340 + 48 + 459008 + 136577024 + 9371811 + 1137454115 + 1098907648 + 203 + 13 + 285671424 + 262325 + 48 + 459008 + 119799808 + 9371813 + 1098907648 + 1098907648 + 204 + 9 + 151388342 + 48 + 459008 + 119799808 + 9371815 + 1098907648 + 1098907648 + 114 + 6 + 151388343 + 48 + 459008 + 136577024 + 9371817 + 1137454115 + 1098907648 + 56 + 7 + 285671424 + 262328 + 48 + 459008 + 102498304 + 8847531 + 1098907648 + 1098907648 + 3 + 151388345 + 48 + 459008 + 136577024 + 9371821 + 1098907648 + 1122500864 + 115 + 14 + 285671424 + 262330 + 48 + 459008 + 136577024 + 9371823 + 1137454115 + 1122500864 + 58 + 15 + 285671424 + 262331 + 48 + 459008 + 136577024 + 9371825 + 1098907648 + 1122500864 + 59 + 11 + 285671424 + 262332 + 48 + 4980992 + 103022592 + 9372008 + 1107296256 + 1102053376 + 205 + 12 + 33554944 + 1358954572 + 16779044 + 143 + 23675392 + 16816 + 0 + 13500416 + 786944 + 33573889 + 16777216 + 16869889 + 402432 + 36609 + 1799604224 + 4354048 + 0 + -822083584 + 84017154 + 24576000 + 4587776 + 85721088 + 983110 + 1109393408 + 1109393408 + 208 + 16842752 + 1048576 + 328046 + 0 + 0 + 251658240 + 335544320 + 1048576 + 1376512 + 4352 + 5632 + 18 + 42 + 16777216 + 256 + -1610612736 + 16843014 + 5 + 0 + 50 + 1065353216 + 20 + 50 + 1056964608 + 21 + 50 + 1056964608 + 22 + 50 + 1056964608 + 42 + 50 + 1065353216 + 132864 + 51642368 + 459148 + 1138491392 + 1124073472 + 0 + 83897859 + 269312 + 34560 + -1606165504 + 4390912 + 0 + 251658240 + 589831 + 16779044 + 143 + 10568064 + 16768 + 0 + 13697024 + 788742 + 11796480 + 3145735 + 16779300 + 143 + 10699724 + 740508032 + 0 + 13762560 + 856327 + 4 + 11862016 + 3145735 + 16779044 + 143 + 10830208 + 16768 + 0 + 13828096 + 592134 + 11927552 + 3145735 + 16779044 + 143 + 10961280 + 16768 + 0 + 7471104 + 395526 + 11993088 + 3145735 + 16779300 + 143 + 11092940 + 740508032 + 0 + 3670016 + 463111 + 4 + 12058624 + 3145735 + 16778780 + 135 + 11223424 + 16768 + 0 + 198918 + 12124160 + 3145735 + 16779300 + 143 + 11354496 + 17088 + 16777216 + 7536640 + 921863 + 4 + 12189696 + 3145735 + 16779300 + 143 + 11486156 + 740508352 + 16777216 + 3801088 + 987399 + 4 + 12255232 + 3145735 + 16779300 + 143 + 11616640 + 17088 + 16777216 + 3866624 + 725255 + 4 + 12320768 + 3145804 + 16778788 + 143 + 23609856 + 16816 + 0 + 13893632 + 786944 + 33575168 + 4980992 + 119799808 + 9372009 + 1107296256 + 1102053376 + 213 + 12 + 33554944 + 1275134208 + 257 + 1778450438 + 603979776 + -1895732413 + -939524030 + 536870912 + 38144 + 1282 + 131449 + 70 + 16778788 + 527 + 4604416 + 16896 + 0 + 14024705 + 16777216 + 268435456 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 65696 + 1 + 16844288 + 1280 + 0 + 12863 + -2147483648 + 5120 + 12863 + 0 + 5376 + 12863 + 0 + 5632 + 12863 + 0 + 10752 + 12863 + -2147483648 + 34013189 + 603979784 + -2029941437 + -939524030 + 268435456 + 3841 + 0 + 117466369 + 402432 + 165632 + 1715718144 + 4329472 + 0 + 251658497 + 14221413 + 16778524 + 135 + 6833096 + 16912 + 0 + 983297 + 14286852 + 16779556 + 143 + 4211601 + 16864 + 0 + 14090240 + 989463 + -1315861 + -15790321 + 1093664768 + 20757 + 917760 + 68943872 + 983054 + 1120272384 + 1115947008 + 170 + 46 + 117441828 + 2063 + 26100192 + 16864 + 0 + 11272448 + 1 + 459008 + 119275520 + 134676597 + 1105199104 + 1105199104 + 17893120 + 4096 + 1979711488 + 805306368 + 268465920 + 1 + 120 + 1 + 16777216 + 2030043136 + 33619968 + 7995392 + 196864 + 31488 + 1025 + 124 + 5 + 16777216 + 2097152000 + 100728832 + 8257536 + 459008 + 32512 + 2049 + 128 + 9 + 16777216 + -2130706432 + 167837696 + 8519680 + 721152 + 33536 + 3073 + 132 + 13 + 16777216 + -2063597568 + 234946560 + 8781824 + 983296 + 0 + 16807168 + 257 + 65536 + 1048576 + 0 + 3276918 + 1 + 50 + 8847360 + 131072 + 3276936 + 3 + 50 + 8978432 + 262144 + 3276938 + 5 + 50 + 9109504 + 393216 + 3276940 + 7 + 50 + 9240576 + 524288 + 3276942 + 9 + 50 + 9371648 + 655360 + 3276944 + 11 + 50 + 9502720 + 786432 + 3276946 + 13 + 50 + 9633792 + 917504 + 3276948 + 15 + 50 + 9764910 + 117441828 + 2063 + 26165728 + 16864 + 0 + 14156032 + 1 + 459008 + 102498304 + 34013301 + 1105199104 + 1105199104 + 591104 + 4096 + 12288 + 1024 + 251658240 + 65536 + 26214400 + 65792 + 102656 + 513 + 402 + 3 + 16777216 + 256 + 1962934272 + 33619969 + 16845056 + 1024 + 0 + 12800 + 0 + 65536 + 3277203 + 16777216 + 33554432 + 838964225 + 3 + 50 + 26542336 + 771948549 + 603979784 + 251762241 + -536870847 + -536870912 + 55553 + 0 + 16795137 + 533504 + 36609 + -1757290496 + 4317184 + 0 + -637534208 + -2146367744 + 4096 + 512 + 12288 + 5632 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 5 + 0 + 301989888 + 201523306 + 1507328 + 851968 + 6144 + 3585 + 25 + 15 + 0 + 1795162112 + 536870912 + 1703936 + 5964544 + 1795189760 + 23552 + 109 + 100 + 16777216 + 520093696 + 1694498816 + 2097152 + 8257792 + 12800 + 32512 + 110 + 145 + 0 + 855638016 + -855441298 + 7274496 + 13500416 + 28672 + 57088 + 113 + 282 + 50360320 + 620756993 + 452984832 + 2490368 + 18612480 + 0 + 67134976 + 513 + 17367297 + 100663296 + 369098752 + 65536 + 838877056 + 0 + 131072 + 3277119 + -2147483648 + 1280 + 12801 + 1065353216 + 12 + 50 + 20938752 + 0 + 218169344 + 838877056 + 0 + 983040 + 3277056 + 0 + 8192 + 12801 + 1056964608 + 62 + 50 + 16777216 + 0 + 1526726656 + 838942464 + 0 + 6029312 + 3277119 + -2147483648 + 24576 + 12801 + 1065353216 + 100 + 16777266 + 20938752 + 0 + 1694564352 + 838877056 + 0 + 8257536 + 3276863 + -2147483648 + 32512 + 12801 + 1065353216 + 145 + 50 + 20938752 + 0 + -855638016 + 838942592 + 0 + 13500416 + 3277056 + 0 + 57088 + 12801 + 1056964608 + 253 + 50 + 16777216 + 1 + 436207616 + 838942464 + 0 + 18546944 + 3277118 + -2147483648 + 1744830464 + 33620230 + 16845056 + 4864 + 1 + 12863 + -2147483647 + 2 + 50 + 1065353216 + 16777216 + 83886080 + 838860800 + 65536 + 786688 + 3276800 + 256 + 3329 + 12863 + -2147483647 + 15 + 16777266 + 1065353216 + 0 + 1543503872 + 843022336 + 0 + 6553600 + 3293056 + 0 + 25857 + 12863 + -2147483647 + 126 + 50 + 1065353216 + 16777216 + 2130706432 + 843022336 + 65536 + 9502720 + 3276800 + 256 + 44800 + 12863 + 1 + 205 + 16777266 + 0 + 16777216 + -838860800 + 843022336 + 65536 + 14614528 + 3276800 + 256 + 64768 + 12863 + 1 + 282 + 50 + 0 + 16777217 + 453050368 + 843022336 + 65600 + 1 + 16777216 + 4096 + 1 + 13055 + -336860416 + 512 + 13055 + -336860416 + 1280 + 13055 + -336916736 + 3072 + 13055 + -336916736 + 3328 + 13055 + -1600086016 + 3584 + 13055 + -1600086016 + 3840 + 13055 + -336916736 + 23552 + 13055 + -336916736 + 25600 + 13055 + -336860416 + 25856 + 13055 + -336860416 + 32256 + 13055 + -336860416 + 32512 + 13055 + -336860416 + 37120 + 13055 + -336916736 + 44800 + 13055 + -336887808 + 52480 + 13055 + -336916736 + 52736 + 13055 + -336860416 + 234881024 + 50397185 + 16777729 + 0 + 393216 + 0 + 3276800 + 0 + 2 + 50 + 2555944 + 0 + 196608 + 3276800 + 0 + 12 + 50 + 0 + 0 + 6029312 + 3276839 + 2621827 + 93 + 50 + 0 + 2 + 117441828 + 2183 + 26756040 + 17008 + 0 + 983296 + 7 + 6619392 + 103022592 + 42401894 + 1137180672 + 1114636288 + 15 + 65792 + -654285567 + 334848 + 34560 + 1749272576 + 4354048 + 0 + 251724032 + -637533183 + 599040 + 36608 + 1078161408 + 4317184 + 0 + -620756992 + 253302783 + -336860161 + 252645185 + -2147483648 + 5313792 + 234946564 + 469762048 + 251661890 + -973078462 + -2080374784 + 43520 + 11783 + 336896 + 528129 + -1908269056 + 4333568 + 0 + -603914240 + 256 + 117506055 + 469762056 + 117470530 + 536870978 + 536870913 + 285671424 + 1048694 + 48 + 16 + 7798784 + 256 + 30720 + 257 + 121 + 2 + 16777216 + 2046820352 + 50397184 + 8060928 + 262400 + 31744 + 1281 + 125 + 6 + 16777216 + 2113929216 + 117506048 + 8323072 + 524544 + 32768 + 2305 + 129 + 10 + 16777216 + -2113929216 + 184614912 + 8585216 + 786688 + 33792 + 3329 + 133 + 14 + 16777216 + -2046820352 + 251723776 + 1 + 7667712 + 65792 + 16777216 + 268435456 + 0 + 838891008 + 256 + 12800 + -2030043136 + 33554432 + 838895616 + 768 + 12800 + -1996488704 + 67108864 + 838896128 + 1280 + 12800 + -1962934272 + 100663296 + 838896640 + 1792 + 12800 + -1929379840 + 134217728 + 838897152 + 2304 + 12800 + -1895825408 + 167772160 + 838897664 + 2816 + 12800 + -1862270976 + 201326592 + 838898176 + 3328 + 12800 + -1828716544 + 234881024 + 838898688 + 3840 + 12800 + -1795150329 + 336896 + 528129 + -1891491841 + -29220864 + 0 + -587137024 + 256 + 117506054 + 469762050 + 117470530 + 536870978 + 536870912 + 151322624 + 1048576 + 3145728 + 262159 + 0 + 16777217 + -1879048192 + 16842752 + 26279936 + 131328 + 102912 + 769 + 0 + 65653 + 2 + 16777473 + 17367040 + 262144 + 0 + 3276800 + 0 + 16777216 + 838963969 + 2 + 50 + 26476800 + 768 + 12801 + -1795096530 + 50332964 + 2063 + 26624543 + -114144 + 0 + 14549248 + 1 + 4587776 + 136577024 + 9372055 + 1109393408 + 1109393408 + 218 + 138 + 285671424 + 1048576 + 131072 + 3145728 + 1441807 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 1280 + 18 + 12 + 50358784 + 385875968 + 218103808 + 1572864 + 917760 + 6400 + 3840 + 107 + 32 + 0 + 436207616 + 1526923371 + 7077888 + 6029312 + 27904 + 25601 + 31 + 101 + 0 + 536870912 + 2113994752 + 3276800 + 8323072 + 28160 + 37120 + 51 + 205 + 50359808 + 1862270976 + -838860800 + 7340032 + 14614528 + 28928 + 72195 + 7340069 + 283 + 0 + 637534209 + 469827584 + 4 + 6684672 + 131329 + 151060742 + 22 + 0 + 16777266 + 4161536 + 0 + 33554432 + 838942592 + 0 + 327680 + 3277119 + -2147483648 + 3072 + 12801 + 1065353216 + 13 + 16777266 + 4161536 + 0 + 251658240 + 838926336 + 0 + 2097152 + 3277119 + 0 + 15872 + 12801 + 0 + 91 + 50 + 20905984 + 0 + 1543503872 + 838942592 + 0 + 6291456 + 3277119 + -2147483648 + 25601 + 12801 + 1065353216 + 101 + 16777266 + 4161536 + 0 + 2113929216 + 838877056 + 0 + 8323072 + 3277119 + -2147483648 + 37120 + 12801 + 1065353216 + 205 + 50 + 20938752 + 0 + -838860800 + 838926336 + 0 + 14614528 + 3277119 + 0 + 64768 + 12801 + 0 + 282 + 50 + 20905984 + 1 + 453050368 + 838942336 + 104 + 2 + 16844289 + 17367040 + 1245184 + 256 + 3293056 + 256 + 512 + 12863 + -2147483647 + 5 + 50 + 0 + 16777216 + 201392128 + 838860800 + 65536 + 852224 + 3293056 + 256 + 3841 + 12863 + -2147483648 + 92 + 50 + 1065353216 + 0 + 1677721600 + 843022336 + 0 + 6619392 + 3293056 + 256 + 32256 + 12863 + -2147483647 + 127 + 50 + 1065353216 + 16777216 + -1862270976 + 838860800 + 65536 + 11468800 + 3292928 + 256 + 52481 + 12800 + 1 + 206 + 50 + 1065353216 + 16777216 + -553648128 + 838860800 + 65536 + 16580608 + 3292928 + 256 + 72192 + 12800 + 1 + 283 + 16777266 + 1065353216 + 16793600 + 257 + 0 + 1048576 + 256 + 3342315 + -336920576 + 131072 + 3342315 + -336920576 + 327680 + 3342315 + -351338496 + 786432 + 3342315 + -351338496 + 851968 + 3342240 + -1600126976 + 917504 + 3342240 + -1600126976 + 983040 + 3342315 + -351338496 + 6029312 + 3342315 + -351338496 + 6553600 + 3342315 + -336920576 + 6619136 + 3342315 + -336920576 + 8257536 + 3342315 + -336920576 + 8323072 + 3342315 + -336920576 + 9502720 + 3342315 + -351338496 + 11468800 + 3342315 + -343932928 + 13434880 + 3342315 + -351338496 + 13500416 + 3342315 + -336920562 + 3 + 16777473 + 131328 + 0 + 100663296 + 0 + 838860800 + 0 + 512 + 12800 + 654321664 + 0 + 50331648 + 838860800 + 0 + 3072 + 12800 + 0 + 0 + 1543503872 + 838870784 + 671187712 + 23808 + 12800 + 0 + 519 + 201728 + 1793 + -1723606016 + 4390912 + 0 + 262190 + 50332700 + 135 + 10503132 + 17152 + 0 + 983040 + 2304 + 117506055 + 603979776 + -1895784127 + -2147483583 + -2147483648 + 53504 + 3081 + 100709376 + 12288 + 117506056 + 603979776 + -1895783613 + -869522623 + -2147483648 + 53760 + 3345 + 117440512 + 67155200 + 12288 + 117506055 + 603979776 + -1895783103 + -2147483583 + -2147483648 + 54016 + 2313 + 100709888 + 12288 + 117506055 + 603979776 + -1895782591 + -2147483583 + -2147483648 + 29184 + 1545 + 100710144 + 12288 + 117506056 + 603979776 + -1895782077 + -869522623 + -2147483648 + 14336 + 1809 + 117440512 + 67155968 + 12288 + 117506054 + 469762048 + -2029999295 + -2147483583 + -2147483648 + 777 + 100710656 + 12288 + 117506056 + 603979776 + -1895781055 + -2147483582 + -1073676288 + 29440 + 3601 + 117440512 + 67156480 + 12288 + 117506056 + 603979776 + -1895780541 + -869522622 + -1073676288 + 14848 + 3857 + 117440512 + 67156736 + 12288 + 117506056 + 603979776 + -1895780031 + -2147483582 + -1073676288 + 15104 + 2833 + 117440512 + 67156992 + 12288 + 1275133958 + 603979776 + -1895733182 + 65 + -1342177280 + 54272 + 3074 + 131153 + 19457 + 467968 + 36609 + 1765933056 + 4304896 + 0 + -721420288 + 201457666 + 4980993 + 1 + 23724288 + 103022592 + 9372011 + 1137180672 + 1109393408 + 149 + 5 + 33554945 + -1929379840 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 1 + 10485760 + 65793 + 100663296 + 83886080 + 0 + 843022336 + 0 + 335544320 + 842989568 + 0 + 352321536 + 842989568 + 0 + 369098752 + 842989568 + 0 + 704643072 + 843022336 + 519 + 201728 + 1793 + -1706828800 + 4396032 + 0 + 262190 + 50332700 + 135 + 10503132 + 17172 + 0 + 983040 + 2304 + 117506055 + 603979776 + -1895784127 + -2147483583 + -2147483648 + 51712 + 3081 + 100709376 + 12288 + 117506056 + 603979776 + -1895783613 + -869522623 + -2147483648 + 51968 + 3345 + 117440512 + 67155200 + 12288 + 117506055 + 603979776 + -1895783103 + -2147483583 + -2147483648 + 52224 + 2313 + 100709888 + 12288 + 117506055 + 603979776 + -1895782591 + -2147483583 + -2147483648 + 29184 + 1545 + 100710144 + 12288 + 117506056 + 603979776 + -1895782077 + -869522623 + -2147483648 + 14336 + 1809 + 117440512 + 67155968 + 12288 + 117506054 + 469762048 + -2029999295 + -2147483583 + -2147483648 + 777 + 100710656 + 12288 + 117506056 + 603979776 + -1895781055 + -2147483582 + -402587648 + 29440 + 3601 + 117440512 + 67156480 + 12288 + 117506056 + 603979776 + -1895780541 + -869522622 + -402587648 + 14848 + 3857 + 117440512 + 67156736 + 12288 + 117506056 + 603979776 + -1895780031 + -2147483582 + -402587648 + 15104 + 2833 + 117440512 + 67156992 + 12288 + 1275133958 + 603979776 + -1895733182 + 65 + -1342177280 + 52480 + 3074 + 131153 + 19457 + 467968 + 36609 + 1765933056 + 4304896 + 0 + -838860800 + 201457666 + 4980993 + 1 + 23724288 + 103022592 + 9372011 + 1137180672 + 1114636288 + 207 + 5 + 33554945 + -1744830464 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 1 + 10485760 + 65793 + 100663296 + 83886080 + 0 + 843022336 + 0 + 335544320 + 842989568 + 0 + 352321536 + 842989568 + 0 + 369098752 + 842989568 + 0 + 704643072 + 843022336 + 519 + 269312 + 34561 + -1690014976 + 4337664 + 0 + 251658240 + 720997 + 16778524 + 135 + 6833259 + 16928 + 0 + 983297 + 27000933 + 16778788 + 647 + 6702187 + 16928 + 0 + 983041 + 16882944 + 67174409 + 603979776 + -1895719358 + -402653118 + 536870912 + 57088 + 2585 + 402653183 + -61681 + 255950848 + 20 + 352322561 + 732160 + 44801 + -1622964224 + 4333568 + 0 + -536870912 + 16777216 + 253843455 + -1 + 252645185 + -2147483648 + 5510400 + 256 + 67174411 + 738197504 + -1358847934 + -1778384830 + 536870912 + 57600 + 256 + 3617 + 1476395007 + -61681 + 255950848 + 20 + 352321536 + 50332673 + 732160 + 44801 + -1589471744 + 4333568 + 0 + -503316480 + 16777216 + 237066239 + -1 + 252645185 + -2147483648 + 1316096 + 1024 + 67174411 + 738197504 + -1358847422 + -1778384830 + 536870912 + 58112 + 256 + 3617 + 1476395007 + -61681 + 255950848 + 20 + 352321536 + 83887105 + 732160 + 44801 + -1555917312 + 4333568 + 0 + -469762048 + 16777216 + 237066239 + -1 + 252645185 + -2147483648 + 1316096 + 1536 + 67174411 + 738197504 + -1358846910 + -1778384830 + 536870912 + 58624 + 256 + 3617 + 1476395007 + -61681 + 255950848 + 20 + 352321536 + 117441537 + 732160 + 44801 + -1522362880 + 4333568 + 0 + -436207616 + 16777216 + 237066239 + -1 + 252645185 + -2147483648 + 1316096 + 2048 + 67174411 + 738197504 + -1358846398 + -1778384830 + 536870912 + 59136 + 256 + 3617 + 1476395007 + -61681 + 255950848 + 20 + 352321536 + 150994944 + 67112704 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 1179648 + 196864 + 0 + 184655360 + 257 + 0 + 262144 + 256 + 3342335 + -65536 + 65536 + 3342335 + -65536 + 131072 + 3342315 + -871432192 + 196608 + 3342315 + -871431777 + 1 + 16777216 + 1024 + 1 + 13055 + -256 + 256 + 13055 + -256 + 512 + 13055 + -338948352 + 768 + 13055 + -338948351 + -1610612736 + 16842752 + 4 + 0 + 16777266 + -1 + 1 + 50 + -1 + 2 + 50 + -1324017 + 3 + 50 + -1324017 + 27328512 + 65792 + 0 + 67108864 + 65536 + 855638015 + -16777216 + 16777216 + 855638015 + -16777216 + 33554432 + 855632844 + 251658240 + 50331648 + 855632844 + 251765248 + 257 + 0 + 262144 + 256 + 3342335 + -65536 + 65536 + 3342335 + -65536 + 131072 + 3342315 + -871432192 + 196608 + 3342315 + -871431773 + 1 + 16777216 + 1024 + 1 + 13055 + -256 + 256 + 13055 + -256 + 512 + 13055 + -338948352 + 768 + 13055 + -338948351 + -1543503872 + 16842752 + 4 + 0 + 16777266 + -1 + 1 + 50 + -1 + 2 + 50 + -1324017 + 3 + 50 + -1324017 + 27590656 + 65792 + 0 + 67108864 + 65536 + 855638015 + -16777216 + 16777216 + 855638015 + -16777216 + 33554432 + 855632844 + 251658240 + 50331648 + 855632844 + 251766272 + 257 + 0 + 262144 + 256 + 3342335 + -65536 + 65536 + 3342335 + -65536 + 131072 + 3342315 + -871432192 + 196608 + 3342315 + -871432090 + 2 + 16845057 + 16908288 + 262144 + 0 + 3276866 + 536870912 + 256 + 12800 + 1112014848 + 2 + 50 + 21110784 + 0 + 50331648 + 838943264 + 104 + 1 + 16845056 + 1024 + 0 + 12801 + 1 + 50 + 16777216 + 33554432 + 838860800 + 196608 + 3276800 + 34013187 + 335544320 + 117548868 + 1962934338 + -268435456 + 13 + 3015424 + 68943872 + 8847520 + 1148518400 + 1125515264 + 15 + 0 + 150996737 + 467968 + 36608 + -1589542912 + 4292608 + 0 + -402653184 + 201917952 + -1275068416 + 805308161 + 533504 + 36608 + -1555796714 + 306282496 + 0 + -385875968 + 219219712 + 1024 + -1258291200 + 805308161 + 467968 + 36608 + -1522434048 + 4292608 + 0 + -369098752 + 151586304 + -1241513984 + 805308161 + 467968 + 36608 + -1488879616 + 4292608 + 0 + -352321536 + 101254656 + -1224736768 + 805308161 + 533504 + 36608 + -1455133418 + 306282496 + 0 + 939524096 + 118556416 + 1024 + -1207959552 + 805308161 + 400384 + 34560 + -1421770752 + 4292608 + 0 + 50923008 + -1191182336 + 805308161 + 533504 + 36608 + -1388216320 + 4385793 + 16777216 + -335544320 + 235996928 + 1024 + -1174405120 + 805308161 + 533504 + 36608 + -1354470122 + 306375681 + 16777216 + 973078528 + 252774144 + 1024 + -1157627904 + 805308161 + 533504 + 36608 + -1321107456 + 4385793 + 16777216 + 989855744 + 185665280 + 1024 + -1140850688 + 805325825 + 467968 + 36609 + 1765933056 + 4304896 + 0 + -318767104 + 201457666 + 4980993 + 1 + 4980992 + 103022592 + 9372008 + 1107296256 + 1102053376 + 238 + 12 + 33554944 + 1358954858 + 16779044 + 143 + 23807083 + 16944 + 0 + 15663104 + 983552 + 33659649 + 16777304 + 1107296506 + 16779052 + 655 + 27804392 + 16816 + 0 + 15728640 + 655362 + 131340 + 64001 + 470016 + 167681 + -1455192064 + 4304896 + 0 + -251658240 + 251658752 + 33623040 + 16384256 + 154402816 + 579797418 + 1110966272 + 1110966272 + 242 + 4 + 0 + 118095875 + 27984300 + 64001 + 603136 + 2264833 + -1388169216 + 4339712 + 0 + -218103808 + 67108864 + 461312 + 50440961 + -1409285894 + 16779572 + 8847 + 28197432 + 16952 + 0 + 15990784 + 262144 + 1802 + 197035 + 28049408 + -100597751 + 872415266 + -1895715006 + 939524162 + 939524096 + 62720 + 1024 + 7 + 167772929 + -1425953792 + 16384256 + 154402816 + 579797424 + 1110966272 + 1110966272 + 246 + 4 + 0 + 118095875 + 27984300 + 64001 + 603136 + 2264833 + -1321060352 + 4339712 + 0 + -150994944 + 67108864 + 461312 + 50440961 + -1409285894 + 16779572 + 8847 + 28459576 + 16952 + 0 + 16252928 + 262144 + 1802 + 197035 + 28049408 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 0 + 132864 + 68943872 + 8847795 + 1141309440 + 1102053376 + 15 + 0 + 184575233 + 334848 + 34560 + 1749288704 + 4300800 + 0 + 251724033 + -1677695743 + 402432 + 165632 + 1715734272 + 4300800 + 0 + 251658497 + 27066372 + 16779556 + 143 + 27148880 + 16800 + 0 + 16318464 + 727319 + -1315861 + -15790321 + 1090519040 + 5140 + 262400 + 187432960 + 11469215 + 1127874560 + 1101004800 + 250 + 1 + 15 + 559415275 + -336855281 + 252657920 + 0 + 1410596864 + 65540 + 16780076 + 175 + 27279904 + 16800 + 0 + 16449536 + 65536 + 926039 + -1315861 + -15790321 + 1090519040 + 5140 + 3 + 262400 + 187432960 + 11469217 + 1109393408 + 1101004800 + 55 + 1 + 14 + 559415275 + -336855281 + 252657920 + 0 + 336855040 + 262148 + 16780076 + 175 + 27410976 + 16800 + 0 + 16515072 + 65536 + 926039 + -1315861 + -15790321 + 1090519040 + 5140 + 5 + 262400 + 187432960 + 11469219 + 1109393408 + 1101004800 + 253 + 1 + 14 + 559415275 + -336855281 + 252657920 + 0 + 336855040 + 393220 + 16780076 + 175 + 27542048 + 16800 + 0 + 16646144 + 65536 + 926039 + -1315861 + -15790321 + 1090519040 + 5140 + 7 + 262400 + 187432960 + 11469221 + 1109393408 + 1101004800 + 255 + 1 + 14 + 559415275 + -336855281 + 252657920 + 0 + 336855040 + 524292 + 16780076 + 175 + 27673120 + 16800 + 0 + 16777216 + 65536 + 926039 + -1315861 + -15790321 + 1090519040 + 5140 + 9 + 4 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 11 + 27131904 + 65792 + 0 + 67108864 + 65536 + 855632875 + -352321536 + 16777216 + 855632875 + -352321536 + 33554432 + 855632844 + 251658240 + 50331648 + 855632844 + 251764480 + 257 + 0 + 262144 + 256 + 3342315 + -336920576 + 65536 + 3342315 + -336920576 + 131072 + 3342315 + -871432192 + 196608 + 3342315 + -871431776 + 1 + 16777216 + 1024 + 1 + 13055 + -336860416 + 256 + 13055 + -336860416 + 512 + 13055 + -338948352 + 768 + 13055 + -338948351 + -1593835520 + 16842752 + 4 + 0 + 16777266 + -1315861 + 1 + 50 + -1315861 + 2 + 50 + -1324017 + 3 + 50 + -1324017 + 27394048 + 65792 + 0 + 67108864 + 65536 + 855632875 + -352321536 + 16777216 + 855632875 + -352321536 + 33554432 + 855632844 + 251658240 + 50331648 + 855632844 + 251765504 + 257 + 0 + 262144 + 256 + 3342315 + -336920576 + 65536 + 3342315 + -336920576 + 131072 + 3342315 + -871432192 + 196608 + 3342315 + -871431772 + 1 + 16777216 + 1024 + 1 + 13055 + -336860416 + 256 + 13055 + -336860416 + 512 + 13055 + -338948352 + 768 + 13055 + -338948351 + -1526726656 + 16842752 + 4 + 0 + 16777266 + -1315861 + 1 + 50 + -1315861 + 2 + 50 + -1324017 + 3 + 50 + -1324017 + 27656192 + 65792 + 0 + 67108864 + 65536 + 855632875 + -352321536 + 16777216 + 855632875 + -352321536 + 33554432 + 855632844 + 251658240 + 50331648 + 855632844 + 251684352 + 257 + 17367040 + 262144 + 0 + 3276800 + 256 + 12800 + 2 + 50 + 16777216 + 50331648 + 838926440 + 1 + 16845056 + 1024 + 0 + 12801 + 1 + 50 + 16777216 + 33554432 + 838860800 + 196608 + 3276800 + 34013187 + 335544320 + 117552196 + 201326658 + -939524096 + 13 + 3015424 + 68943872 + 8847520 + 1141637120 + 1120403456 + 15 + 0 + 150996737 + 467968 + 36608 + -1589542912 + 4292608 + 1 + 16777216 + 201917952 + -1275068416 + 805308161 + 533504 + 36608 + -1555823594 + 306282496 + 0 + -1728053248 + 219219712 + 1024 + -1258291200 + 805308161 + 467968 + 36608 + -1522434048 + 4292608 + 0 + -1711276032 + 151586304 + -1241513984 + 805308161 + 467968 + 36608 + -1488879616 + 4292608 + 1 + 33554432 + 101254656 + -1224736768 + 805308161 + 533504 + 36608 + -1455160298 + 306282496 + 0 + 939524096 + 118556416 + 1024 + -1207959552 + 805308161 + 400384 + 34560 + -1421770752 + 4292608 + 0 + 50923008 + -1191182336 + 805308161 + 533504 + 36608 + -1388216320 + 4360193 + 16777217 + 50331648 + 235996928 + 1024 + -1174405120 + 805308161 + 533504 + 36608 + -1354497002 + 306350081 + 16777216 + 973078528 + 252774144 + 1024 + -1157627904 + 805308161 + 533504 + 36608 + -1321107456 + 4360193 + 16777216 + 989855744 + 185665280 + 1024 + -1140850688 + 805325825 + 402432 + 36609 + 1749135360 + 4288512 + 1 + 67108864 + 201457666 + 5308416 + 1275133959 + 603979776 + -1895732927 + -1342177215 + 1879048192 + 66816 + 3074 + 131148 + 16842752 + 65898 + 16779300 + 143 + 23806983 + 16816 + 0 + 17170432 + 983552 + 33665793 + 16777304 + 1107427344 + 82 + 16384256 + 103022592 + 42795432 + 1101004800 + 263 + 2 + 131074 + 17891328 + -100597753 + 738197506 + -1895716541 + 973078593 + -1610612736 + 67584 + 512 + 33554945 + 285212922 + 16779572 + 8847 + 27935232 + 16896 + 0 + 17367040 + 262144 + 1802 + 197035 + 28639232 + -100597751 + 872415266 + -1895715518 + 66 + 0 + 68096 + 1024 + 7 + 167772929 + -1425951488 + 16384256 + 154402816 + 579797422 + 1107296256 + 1107296256 + 267 + 4 + 0 + 118095875 + 27984309 + 64001 + 603136 + 2264833 + -1354629120 + 4325376 + 1 + 201326592 + 67108864 + 461312 + 50440961 + -1258290950 + 16779572 + 8847 + 28328448 + 16896 + 0 + 17629184 + 262144 + 1802 + 197035 + 28639232 + -100597751 + 872415266 + -1895714494 + 66 + 0 + 69120 + 1024 + 7 + 167772929 + -1425951488 + 16384256 + 154402816 + 579797426 + 1107296256 + 1107296256 + 271 + 4 + 0 + 118095875 + 27984309 + 0 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 28721808 + 17040 + 0 + 1536 + 117506055 + 469762048 + -2029930686 + -1879048126 + -1879048192 + 3857 + 117440512 + 67221504 + 12288 + 117506056 + 603979778 + -2029930174 + -1879048126 + -1879048192 + 3840 + 285671424 + 262586 + 48 + 16384256 + 119799808 + 9372091 + 1115815936 + 1115815936 + 272 + 207 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1115684864 + 1115684864 + 272 + 0 + 207 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400324 + 16780076 + 655 + 29246271 + 178930136 + 0 + 17891328 + 196641 + 1476389867 + -337899761 + 255954944 + 1 + 285212672 + 33556225 + 470016 + 167681 + -1086226432 + 4292608 + 0 + 1291845632 + 50331906 + 29360128 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 48385 + 31 + 190 + 0 + 536870912 + -687800320 + 2 + 29163520 + 492288 + 16974592 + + + + none + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12386304 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12451840 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 14090240 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 446 + 1 + 16845056 + 3584 + 0 + 12800 + 1 + 50 + 0 + 33554432 + 838926336 + 1310720 + 3277056 + 20480 + 12801 + 81 + 50 + 0 + 1375731712 + 838860800 + 5439488 + 3276800 + 25600 + 12800 + 159 + 50 + 0 + -1610612736 + 838926336 + 12386304 + 3277056 + 48640 + 12800 + 215 + 50 + 519 + 201728 + 1793 + -1052633088 + 4331520 + 0 + 393223 + 16779036 + 135 + 28787224 + 16920 + 0 + 987399 + 4 + 29491200 + 3145735 + 16779300 + 647 + 28918296 + 16920 + 0 + 983057 + 117440512 + 67224320 + 12288 + -100597753 + 603979776 + -1895711934 + 134217794 + 134217728 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 134217794 + 134217728 + 19712 + 0 + 53017 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610613761 + 732160 + 167681 + -1102864256 + 4327424 + 1 + 301989888 + 251666775 + -13487566 + -602992881 + 1094713344 + 4368 + 2 + 459008 + 120324096 + 42926527 + 1098907648 + 1098907648 + 74 + 3 + 66049 + -1073741824 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 12386560 + 7936 + 48640 + 32 + 215 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1124073472 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1107296256 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -687865856 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1793 + -1002297344 + 4335616 + 0 + 393223 + 16778780 + 135 + 28787240 + 16936 + 0 + 985347 + 4 + 28835847 + 16779300 + 647 + 28918312 + 16936 + 0 + 983057 + 117440512 + 67222016 + 12288 + -100597753 + 603979776 + -1895711934 + 402653250 + 402653184 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 402653250 + 402653184 + 19712 + 0 + 53017 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610613761 + 732160 + 167681 + -1102864384 + 4335616 + 1 + 318767104 + 251666775 + -12829636 + -602992881 + 1093664768 + 4368 + 2 + 459008 + 120324096 + 42926527 + 1098907648 + 1098907648 + 77 + 3 + 66049 + -1073741824 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 12386560 + 7936 + 48640 + 32 + 215 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1124073472 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1107296256 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -687865856 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1793 + -985530368 + 4325376 + 0 + 65898 + 16779556 + 391 + 23806472 + 16904 + 0 + 458752 + 18090496 + 50447873 + -1409220352 + 5784066 + 65536 + 262144 + 328046 + 0 + 0 + 251658240 + 335544320 + 1048576 + 1376512 + 4352 + 5632 + 18 + 42 + 16777216 + 0 + 34013187 + 335544320 + 117557057 + -1342177215 + -1342177280 + 3 + 459008 + 119275520 + 8847799 + 1102053376 + 1102053376 + 15 + 285671424 + 262594 + 48 + 16384256 + 119799808 + 9372091 + 1101004800 + 1101004800 + 74 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1101004800 + 1101004800 + 74 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 29901248 + 16832 + 0 + 768 + 117506055 + 469762048 + -2029930687 + -1073741759 + -1073741824 + 3857 + 117440512 + 67224064 + 12288 + -100597753 + 603979776 + -1895711935 + -1342177215 + -1342177280 + 18944 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969599 + -1342177215 + -1342177280 + 18944 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1793 + -918433792 + 4313088 + 0 + 196615 + 16779036 + 135 + 28787152 + 16848 + 0 + 987399 + 4 + 29491200 + 3145978 + 16779044 + 143 + 29049264 + 16816 + 0 + 5046272 + 985600 + 50445312 + 1157627959 + 16779820 + 207 + 29180352 + 16832 + 0 + 4849664 + 0 + 989455 + 65794 + -10197916 + 201216 + 1253370859 + -352319215 + 234881024 + 67436418 + -2105344076 + -1263206446 + -757923861 + -336919552 + 63 + 395811391 + 547397951 + -2147483582 + -1275068415 + 1120 + 14 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 335544320 + 1179648 + 5243648 + 1778390784 + 20736 + 24 + 82 + 16777216 + 419430400 + 1392508928 + 7012352 + 6553600 + 6656 + 40707 + 7012460 + 160 + 0 + 1828716544 + -1576992768 + 2031616 + 10682368 + 8192 + 48129 + 0 + 65981 + 7 + -2097151741 + 50331648 + 42139649 + 50462720 + 33536 + 16974336 + 643 + 66306 + 3 + 33554433 + -2097151741 + 33554432 + 16843014 + 14 + 0 + 16777266 + 1059102881 + -8224126 + -2960686 + -1315861 + -10197916 + -4934476 + 0 + 2 + 50 + 1059102881 + -8224126 + -2960686 + -1315861 + -10197916 + -4934476 + 1065353216 + 20 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1065353216 + 50 + 50 + 1058971297 + -8219006 + -3616056 + -3609656 + -10185116 + -6895466 + 1065353216 + 80 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1065353216 + 81 + 16777266 + 1059102881 + -4934476 + -2960686 + -1315861 + -4934476 + -3618616 + 0 + 83 + 50 + 1059102881 + -4934476 + -2960686 + -1315861 + -4934476 + -3618616 + 0 + 100 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10194332 + -5591136 + 0 + 130 + 50 + 1058971297 + -7555956 + -3945021 + -2429990 + -10189724 + -7229044 + 0 + 159 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10194332 + -5591136 + 0 + 160 + 33554482 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 0 + 162 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 0 + 163 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 0 + 188 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10185116 + -5591136 + 0 + 132864 + 51642368 + 459189 + 1107296256 + 1107296256 + 0 + 50333441 + 465920 + 34561 + -1220411392 + 4325376 + 0 + 252774144 + 1025 + -1040187392 + 805370369 + 467968 + 36609 + -1153310720 + 4317184 + 0 + 1291845632 + 252313603 + 29098053 + 14081 + 666624 + 52993 + -1119756288 + 4317184 + 0 + 1291845632 + 0 + 253300480 + 16843519 + 1684300800 + 51511370 + -1259607061 + 594190 + 4 + 83853954 + -2097171276 + -1258302766 + -754979861 + -352059392 + 16151 + -1751498976 + -1600045184 + 17076 + 256 + 286720 + 3584 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 20 + 0 + 301989888 + 1342373994 + 1507328 + 5308416 + 6144 + 20993 + 25 + 83 + 0 + 1795162112 + 1677721600 + 1703936 + 10420992 + 1795189760 + 40960 + 109 + 162 + 16777216 + 520093696 + -1560281088 + 2097152 + 12321024 + 0 + 16891136 + 1923 + 66307 + 2 + -2097151741 + 33554432 + 8585217 + 50462720 + 164608 + 16974336 + 770 + 387 + 66306 + 1 + 16844288 + 3584 + 1 + 12863 + 547398143 + -2105376001 + -757935361 + -336860161 + 1684301055 + -1263225856 + 0 + 512 + 12863 + 547398143 + -2105376001 + -757935361 + -336860161 + 1684301055 + -1263225793 + -2147483648 + 5120 + 12863 + 513712639 + 1686267135 + -925710081 + -924071681 + 1687577855 + 2025093183 + -2147483648 + 12800 + 12863 + 513712639 + -2104065281 + -925710081 + -924071681 + 1687577855 + -1765239233 + -2147483648 + 20480 + 12863 + 513712639 + 1686267135 + -925710081 + -924071681 + 1687577855 + 2025093183 + -2147483648 + 20737 + 12863 + 547398143 + -1263225601 + -757935361 + -336860161 + -1263225601 + -926365696 + 0 + 21248 + 12863 + 547398143 + -1263225601 + -757935361 + -336860161 + -1263225601 + -926365696 + 0 + 25600 + 12863 + 513712639 + -1936290561 + -1094140161 + -336860161 + 1685218559 + -1431330816 + 0 + 33280 + 12863 + 513712639 + -1934324481 + -1009925121 + -622077185 + 1686398207 + -1850635264 + 0 + 40704 + 12863 + 513712639 + -1936290561 + -1094140161 + -336860161 + 1685218559 + -1431330816 + 0 + 40962 + 12863 + 513712639 + 1686267135 + -925710081 + -924071681 + 1687577855 + 2025093120 + 0 + 41472 + 12863 + 513712639 + 1686267135 + -925710081 + -924071681 + 1687577855 + 2025093120 + 0 + 41728 + 12863 + 513712639 + 1686267135 + -925710081 + -924071681 + 1687577855 + 2025093120 + 0 + 48128 + 12863 + 513712639 + -1936290561 + -1094140161 + -336860161 + 1687577855 + -1431330816 + 0 + 34013187 + 335544320 + 117557826 + 1476395074 + 1476395008 + 3 + 459008 + 119275520 + 8847799 + 1113063424 + 1113063424 + 15 + 285671424 + 262584 + 48 + 16384256 + 119799808 + 9372091 + 1111490560 + 1111490560 + 77 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1111490560 + 1111490560 + 77 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 30097840 + 16816 + 0 + 257 + 1778450441 + 603979777 + -2029950143 + -1342177215 + -1342177280 + 1792 + 70666 + 197062 + 29819137 + 22594 + 33554688 + 1024 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 0 + 132864 + 51642368 + 459212 + 1103101952 + 1103101952 + 0 + 16869889 + 599040 + 100097 + 1799471104 + 4308992 + 0 + 117440513 + 336199683 + 29753800 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 30229080 + 16984 + 0 + 257 + 1778450441 + 603979777 + -2029950142 + 1476395074 + 1476395008 + 1792 + 70666 + 197062 + 30015745 + 22594 + 33554688 + 1024 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 0 + 132864 + 51642368 + 459214 + 1104150528 + 1104150528 + 0 + 16869889 + 531456 + 34561 + 1799475200 + 4313088 + 0 + 118095875 + 29753801 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 30360064 + 16896 + 0 + 257 + 1778450441 + 603979777 + -2029950142 + 66 + 0 + 1792 + 70666 + 197062 + 28639489 + 22594 + 33554688 + 1024 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 0 + 132864 + 34340864 + 328144 + 1114636288 + 0 + 16869889 + 599040 + 100097 + 1799497728 + 4335616 + 0 + 117440513 + 336199683 + 29753772 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 28066344 + 16936 + 0 + 768 + 117506055 + 469762048 + -2029930686 + 671088706 + 671088640 + 3857 + 117440512 + 67221504 + 12288 + -100597753 + 603979776 + -1895711934 + 402653250 + 402653184 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 402653250 + 402653184 + 19712 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 515 + 201728 + 1793 + -784193536 + 4335616 + 0 + 327930 + 16779044 + 143 + 30556712 + 16936 + 0 + 18153472 + 985600 + 50445312 + 1157627911 + 16779036 + 135 + 30622248 + 16936 + 0 + 987399 + 2 + 30670848 + 3145978 + 16778788 + 143 + 30753280 + 16896 + 0 + 18219008 + 983552 + 33674752 + 30867712 + 86245376 + 9372094 + 1102053376 + 1101529088 + 279 + 33 + 1025 + 533504 + 134913 + -666669056 + 4333568 + 1 + 402657555 + -15790321 + -2146496753 + 1041 + 131840 + 51642368 + 459222 + 1107296256 + 1107296256 + 0 + 16788995 + 269312 + 34560 + -1606287360 + 4325376 + 0 + 251658240 + 589831 + 16779044 + 143 + 10567936 + 16640 + 0 + 18415616 + 788742 + 10616832 + 3145735 + 16779300 + 143 + 10699136 + 16640 + 0 + 18481152 + 856327 + 4 + 10747904 + 3145735 + 16779044 + 143 + 10830080 + 16640 + 0 + 2359296 + 592134 + 10878976 + 3145735 + 16779044 + 143 + 10961152 + 16640 + 0 + 65536 + 395526 + 11010048 + 3145735 + 16779300 + 143 + 11092352 + 16640 + 0 + 3080192 + 463111 + 4 + 11141120 + 3145735 + 16778780 + 135 + 11223296 + 16640 + 0 + 198918 + 11272192 + 3145735 + 16779300 + 143 + 11354368 + 16768 + 0 + 18546688 + 921863 + 4 + 11403264 + 3145735 + 16779300 + 143 + 11485568 + 16768 + 0 + 3211264 + 987399 + 4 + 11534336 + 3145735 + 16779300 + 143 + 11616512 + 16768 + 0 + 3276800 + 725255 + 4 + 11665408 + 3145730 + 50332436 + 7 + 31015376 + 16848 + 0 + 1280 + -100597753 + 603979776 + -1895706047 + -805306303 + -805306368 + 72704 + 3850 + 197052 + 4521984 + 117506055 + 469762048 + -2029923519 + -805306303 + -805306368 + 3857 + 117440512 + 33674240 + 12288 + -100597754 + 603979776 + -1895705278 + 66 + 0 + 71168 + 3842 + 131542 + 120577 + 336896 + 36609 + -1102991360 + 4302848 + 1 + 385875968 + 553648132 + 16779556 + 527 + 30950256 + 16928 + 0 + 18350105 + 402591503 + 260050703 + 255934464 + 4 + 285213191 + 201728 + 1793 + -633176064 + 4358144 + 0 + 65898 + 16779556 + 391 + 23806592 + 17024 + 0 + 458752 + 18090496 + 50447873 + -620691200 + 5784066 + 65536 + 262144 + 328046 + 0 + 0 + 251658240 + 335544320 + 1048576 + 1376512 + 4352 + 5632 + 18 + 42 + 16777216 + 0 + 34013187 + 335544320 + 117562178 + -2147483582 + -2147483648 + 3 + 459008 + 119275520 + 8847799 + 1115684864 + 1115684864 + 15 + 285671424 + 262584 + 48 + 16384256 + 119799808 + 9372091 + 1114112000 + 1114112000 + 14 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1114112000 + 1114112000 + 14 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 31211952 + 16816 + 0 + 256 + -100597754 + 469762048 + -2029929663 + -1342177215 + -1342177280 + 3850 + 197052 + 4521984 + 3584 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 106 + 20 + 0 + 301989888 + 1342373994 + 1507328 + 5308416 + 6144 + 20993 + 25 + 83 + 0 + 1795162112 + 1677721600 + 1703936 + 10420992 + 1795189760 + 40960 + 109 + 162 + 16777216 + 520093696 + -1560281088 + 2097152 + 12321024 + 0 + 519 + 201728 + 1793 + -582866944 + 4335616 + 0 + 65786 + 16779044 + 143 + 29049368 + 16920 + 0 + 5046272 + 985600 + 50445312 + 1157627904 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 0 + 132864 + 51642368 + 459230 + 1115684864 + 1115684864 + 0 + 33556225 + 465920 + 34561 + -1220378624 + 4358144 + 0 + 252774144 + 1025 + -1207959552 + 805370369 + 467968 + 36609 + -1153275904 + 4352000 + 0 + 234881024 + 252313603 + 31391813 + 0 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 0 + 34013188 + 469762048 + -2029920190 + 805306434 + 805306368 + 3840 + 2 + 459008 + 68419584 + 459233 + 1110441984 + 1110441984 + 16908770 + 3016448 + 103546880 + 143589493 + 1108344832 + 1108344832 + 272 + 15 + 16777216 + 65543 + 16778780 + 519 + 7684624 + 16912 + 9 + 83886080 + 268435456 + 805306368 + 385879808 + 1 + 12 + 1 + 16777217 + -486539264 + 33619968 + 31719424 + 196864 + 124160 + 1025 + 486 + 5 + 16777217 + -419430400 + 100728832 + 31981568 + 459008 + 125184 + 2049 + 490 + 9 + 16777217 + -352321536 + 167837696 + 32243712 + 721152 + 126208 + 3073 + 494 + 13 + 16777217 + -285212672 + 234946560 + 32505856 + 983296 + 127232 + 4097 + 498 + 17 + 16777217 + -218103808 + 302055424 + 32768000 + 1245440 + 128256 + 5121 + 502 + 21 + 16777217 + -150994944 + 369164288 + 1 + 7667712 + 131329 + 151060481 + 23 + 0 + 50 + 0 + 256 + 12801 + 33030144 + 131072 + 3277056 + 0 + 50331648 + 838926841 + 4 + 50 + 16906752 + 1280 + 12801 + 33226752 + 393216 + 3277057 + -67108864 + 117440512 + 838926845 + 8 + 50 + 16907776 + 2304 + 12801 + 33488896 + 655360 + 3277058 + 0 + 184549376 + 838926849 + 12 + 50 + 16908800 + 3328 + 12801 + 33751040 + 917504 + 3277058 + 67108864 + 251658240 + 838926853 + 16 + 50 + 16909824 + 4352 + 12801 + 34013184 + 1179648 + 3277058 + 134217728 + 318767104 + 838926857 + 20 + 50 + 16910848 + 5376 + 12801 + 34275328 + 1441792 + 3277058 + 184549376 + 67112704 + 1 + 524 + 1 + 16777218 + 218103808 + 33619968 + 34471936 + 196864 + 0 + 16900352 + 257 + 65536 + 262144 + 0 + 3277282 + 1 + 50 + 34537472 + 131072 + 3277328 + 3 + 50 + 34668546 + 117441564 + 135 + 34750896 + 16816 + 0 + 983040 + 512 + 117506053 + 335544320 + 117563713 + -1342177215 + -1342177271 + 50331648 + 134341120 + 772210694 + 738197512 + -1895795391 + -1879048127 + -1879048192 + 19712 + 3841 + 0 + 16779009 + 400384 + 132864 + 1967230976 + 4296704 + 2309 + 16 + 48 + 23 + 983040 + 256 + 3072 + 257 + 483 + 2 + 16777217 + -469762048 + 50397184 + + + + none + 124416 + 1281 + 487 + 6 + 16777217 + -402653184 + 117506048 + 32047104 + 524544 + 125440 + 2305 + 491 + 10 + 16777217 + -335544320 + 184614912 + 32309248 + 786688 + 126464 + 3329 + 495 + 14 + 16777217 + -268435456 + 251723776 + 32571392 + 1048832 + 127488 + 4353 + 499 + 18 + 16777217 + -201326592 + 318832640 + 32833536 + 1310976 + 128512 + 5377 + 503 + 22 + 16777216 + 256 + 1962934272 + 33620233 + 16777472 + 5888 + 0 + 12800 + 0 + 65536 + 3277057 + -134217728 + 33554432 + 838926336 + 3 + 50 + 16906496 + 1024 + 12801 + 33161216 + 327680 + 3277057 + -83886080 + 100663296 + 838926844 + 7 + 50 + 16907520 + 2048 + 12801 + 33423360 + 589824 + 3277057 + -16777216 + 167772160 + 838926848 + 11 + 50 + 16908544 + 3072 + 12801 + 33685504 + 851968 + 3277058 + 50331648 + 234881024 + 838926852 + 15 + 50 + 16909568 + 4096 + 12801 + 33947648 + 1114112 + 3277058 + 117440512 + 301989888 + 838926856 + 19 + 50 + 16910592 + 5120 + 12801 + 34209792 + 1376256 + 3277058 + 184549376 + 369098752 + 838926859 + 4 + 983040 + 256 + 134144 + 257 + 525 + 2 + 16777218 + 234881024 + 50397184 + 1 + 31522816 + 131328 + 16842752 + 4 + 0 + 50 + 31588352 + 524288 + 65536 + 3277327 + 4 + 2 + 50 + 34603008 + 524288 + 196608 + 3277329 + 8 + 132864 + 51642368 + 459283 + 1109917696 + 1109917696 + 0 + 16869889 + 599040 + 100097 + 1799497728 + 4335616 + 0 + 117440513 + 336199683 + 29753876 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 34882088 + 16936 + 0 + 1024 + 117506055 + 469762048 + -2029930686 + 671088706 + 671088640 + 3857 + 117440512 + 67221504 + 12288 + 117506056 + 603979776 + -1895795390 + 402653250 + 402653184 + 19712 + 3857 + 117440512 + 268571904 + 12288 + -100597753 + 603979776 + -1895711934 + 402653250 + 402653184 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 402653250 + 402653184 + 19712 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1794 + 373434368 + 4335616 + 0 + 65898 + 16779556 + 391 + 23806504 + 16936 + 0 + 458752 + 18090496 + 50447874 + 385941760 + 5784066 + 65536 + 262144 + 328046 + 0 + 0 + 251658240 + 335544320 + 1048576 + 1376512 + 4352 + 5632 + 18 + 42 + 16777216 + 0 + 34013187 + 335544320 + 117577538 + 671088706 + 671088640 + 4 + 459008 + 119275520 + 8847799 + 1109917696 + 1109917696 + 15 + 285671424 + 262584 + 48 + 459008 + 136577024 + 9371765 + 1108869120 + 1108869120 + 77 + 15 + 285671424 + 1049112 + 48 + 16384256 + 119799808 + 9372091 + 1108869120 + 1108869120 + 77 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1108869120 + 1108869120 + 77 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 35210125 + -2147466736 + 0 + 1536 + 922812424 + 469762048 + -2029905341 + -1929379774 + 201326592 + 3865 + 251658497 + 50291812 + 1677722386 + 4914959 + 252641289 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610626817 + 533504 + 36610 + 457411968 + 4194304 + 1 + 486539264 + 219221504 + 16908290 + -1315861 + 16777220 + -805292287 + 531456 + 34562 + 473956352 + 4329472 + 0 + 186191616 + 16843519 + 1684300800 + 51512330 + -13158601 + 661775 + 16777216 + 67436413 + 2105409460 + -1263206446 + -757923861 + -336919491 + -1330580930 + -286328258 + -50525889 + 783200256 + 257 + 1344 + 3604736 + 153354240 + 9372189 + 1073741824 + 1108082688 + 286 + 14 + 420413441 + 16973668 + 1684275203 + 302254847 + -336860416 + 169414401 + 4 + 83852669 + 2113909940 + -1258302766 + -754979861 + -352043600 + -1326301458 + -285589764 + -49725650 + -1364197376 + 65792 + 344064 + 922812423 + 469762048 + -2029904317 + -1920991168 + 0 + 1809 + 234881282 + 196407 + 926351616 + 372736 + 721485829 + 469762048 + -2029904061 + -1920991166 + 268435456 + 3842 + 66080 + 14 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 335544320 + 1179648 + 5243648 + 1778390784 + 20736 + 24 + 82 + 16777216 + 419430400 + 1392508928 + 7012352 + 6553600 + 6656 + 40707 + 7012460 + 160 + 0 + 1828716544 + -1124007936 + 2031616 + 12451840 + 8192 + 55041 + 0 + 328218 + 7 + -2097151741 + 50331648 + 42139649 + 50462720 + 33536 + 16974336 + 643 + 66306 + 3 + 33554433 + -2097151741 + 33554432 + 25362433 + 50528256 + 65536 + 1048576 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255785 + -1751515136 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255785 + -1751515136 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187945 + -1751515136 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677545 + -1751515136 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187945 + -1751515136 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926400745 + -1751515136 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926400745 + -1751515136 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348452585 + -1751515136 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316208873 + -1751515136 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348452585 + -1751515136 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187945 + -1751515136 + 10813696 + 3292922 + -84344948 + -1265827956 + -1265827956 + -1601372316 + -1771765876 + -1265877312 + -1060175872 + 11207168 + 3292922 + -84344948 + -1265827956 + -1265827956 + -1601372316 + -1771765876 + -1265877312 + -1060175872 + 12386304 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187945 + -1751515136 + 12451840 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187945 + -1751515136 + 14090240 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348452585 + -1751514597 + 1 + 33554689 + 12 + 0 + 16777266 + -1315861 + 2 + 50 + -15790321 + 20 + 16777266 + -15790321 + 80 + 50 + -15790321 + 81 + 16777266 + -4934476 + 83 + 50 + -1315861 + 100 + 16777266 + -1315861 + 159 + 50 + -1315861 + 160 + 16777266 + -1315861 + 189 + 50 + -15790321 + 190 + 50 + -1315861 + 215 + 50 + -1315861 + 35520512 + 66048 + 16842752 + 786432 + 256 + 3342135 + 926351360 + 131072 + 3342315 + -336920576 + 1310976 + 3342315 + -336920576 + 5242880 + 3342315 + -336920576 + 5308672 + 3342260 + -1263271936 + 5439488 + 3342095 + 252641280 + 6553856 + 3342095 + 252641280 + 10420224 + 3342095 + 252641280 + 10486016 + 3342095 + 252641280 + 12386304 + 3342315 + -336920576 + 12451840 + 3342095 + 252641280 + 14090240 + 3342095 + 252641820 + 1 + 33554689 + 12 + 0 + 16777266 + -13158601 + 2 + 50 + -1315861 + 20 + 16777266 + -1315861 + 80 + 50 + -1315861 + 81 + 50 + -15790321 + 83 + 50 + -15790321 + 100 + 50 + -15790321 + 159 + 50 + -15790321 + 160 + 50 + -15790321 + 189 + 50 + -15790321 + 190 + 50 + -15790321 + 215 + 50 + -15790321 + 35454976 + 66048 + 16842752 + 786432 + 256 + 3342315 + -336920576 + 131072 + 3342095 + 252641280 + 1310976 + 3342095 + 252641280 + 5242880 + 3342095 + 252641280 + 5308416 + 3342315 + -336920576 + 5439488 + 3342315 + -336920576 + 6553600 + 3342315 + -336920576 + 10420224 + 3342315 + -336920576 + 10485760 + 3342315 + -336920576 + 12386304 + 3342315 + -336920576 + 12451840 + 3342315 + -336920576 + 14090240 + 3342315 + -336920574 + 50332436 + 7 + 35734016 + 16896 + 0 + 768 + -100597755 + 469762048 + -2029923006 + 66 + 0 + 3842 + 131542 + 120577 + 336896 + 36609 + -1102991360 + 4302848 + 1 + 520093696 + 251658244 + 16779556 + 527 + 30950256 + 16928 + 0 + 18350105 + 402591503 + 260050703 + 255934464 + 4 + 285213187 + 201728 + 1794 + 574750720 + 4325376 + 0 + 196858 + 16778524 + 135 + 30753280 + 16896 + 0 + 983552 + 33674752 + 30867712 + 86245376 + 9372094 + 1102053376 + 1101529088 + 287 + 15 + 1025 + 533504 + 134913 + -666669056 + 4333568 + 1 + 402657555 + -15790321 + -2146496753 + 1041 + 131840 + 51642368 + 459299 + 1109917696 + 1126694912 + 0 + 134219521 + 400384 + 3842 + 608315392 + 4335616 + 1 + 537461504 + 1025 + -1207957759 + 400384 + 3842 + 625092608 + 4335616 + 1 + 554238720 + 1025 + -1207957759 + 400384 + 3842 + 641869824 + 4335616 + 1 + 571015936 + 1025 + -1207957759 + 400384 + 3842 + 658647040 + 4335616 + 1 + 587793152 + 1025 + -1207957759 + 465920 + 3842 + 675420160 + 4331520 + 1 + 605095680 + 1026 + 687865856 + 805308161 + 465920 + 3842 + 708974592 + 4331520 + 1 + 621872896 + 1026 + 721420288 + 805308161 + 465920 + 3842 + 742529024 + 4331520 + 1 + 638650112 + 1026 + 754974720 + 805308161 + 465920 + 3842 + 776083456 + 4331520 + 0 + 1292961536 + 1026 + 788529152 + 805306883 + 201728 + 1794 + 809619456 + 4378624 + 0 + 524295 + 16778780 + 15 + 35930576 + 16848 + 0 + 19335427 + 4 + 29491207 + 16778780 + 15 + 35996112 + 16848 + 0 + 19400963 + 4 + 29491207 + 16778780 + 15 + 36061648 + 16848 + 0 + 19466499 + 4 + 29491207 + 16778780 + 15 + 36127184 + 16848 + 0 + 19073283 + 4 + 29491207 + 16779036 + 15 + 36192720 + 16848 + 0 + 19534087 + 4 + 36241408 + 3145735 + 16779036 + 15 + 36323792 + 16848 + 0 + 19599623 + 4 + 36372480 + 3145735 + 16779036 + 15 + 36454864 + 16848 + 0 + 19665159 + 4 + 36503552 + 3145735 + 16778772 + 7 + 36585936 + 16848 + 4359 + 4 + 36634624 + 3145730 + 117441564 + 135 + 36782978 + 17000 + 0 + 983040 + 1024 + 771948548 + 469762048 + -2030002109 + -2113929150 + 1744830464 + 3840 + 9 + 459008 + 119799808 + 9371809 + 1090519040 + 1090519040 + 301 + 12 + 151388322 + 48 + 459008 + 136577024 + 9371811 + 1131675648 + 1090519040 + 302 + 13 + 285671424 + 262308 + 48 + 459008 + 119799808 + 9371813 + 1090519040 + 1090519040 + 276 + 9 + 151388326 + 48 + 459008 + 119799808 + 9371815 + 1090519040 + 1090519040 + 303 + 6 + 151388328 + 48 + 459008 + 136577024 + 9371817 + 1131675648 + 1090519040 + 47 + 7 + 285671424 + 262314 + 48 + 459008 + 102498304 + 8847531 + 1090519040 + 1090519040 + 3 + 151388332 + 48 + 459008 + 136577024 + 9371821 + 1090519040 + 1109917696 + 304 + 14 + 285671424 + 262318 + 48 + 459008 + 136577024 + 9371823 + 1131675648 + 1109917696 + 49 + 15 + 285671424 + 262320 + 48 + 459008 + 136577024 + 9371825 + 1090519040 + 1109917696 + 50 + 11 + 285671424 + 262322 + 48 + 459008 + 119799808 + 34537589 + 1108344832 + 1108344832 + 305 + 591104 + 4096 + 12288 + 67174409 + 603979776 + -1895681469 + 1275068481 + -1342177280 + 78336 + 1049 + 1409281003 + -335585184 + 1610612736 + 285212672 + 16778241 + 599040 + 36610 + 860048384 + 4304896 + 1 + 855638016 + 68768767 + -1600085761 + 252645120 + 4352 + 512 + 5376 + 251658240 + 65536 + 31719424 + 65792 + 124160 + 513 + 486 + 3 + 16777217 + -419430400 + 67174400 + 31981568 + 327936 + 125184 + 1537 + 490 + 7 + 16777217 + -352321536 + 134283264 + 32243712 + 590080 + 126208 + 2561 + 494 + 11 + 16777217 + -285212672 + 201392128 + 32505856 + 852224 + 127232 + 3585 + 498 + 15 + 16777217 + -218103808 + 268500992 + 32768000 + 1114368 + 128256 + 4609 + 502 + 19 + 16777217 + -150994944 + 335609856 + 1 + 7667712 + 131329 + 151060481 + 21 + 0 + 50 + 0 + 256 + 12801 + 33095680 + 131072 + 3277057 + -100663296 + 50331648 + 838926843 + 4 + 50 + 16907264 + 1280 + 12801 + 33357824 + 393216 + 3277057 + -33554432 + 117440512 + 838926847 + 8 + 50 + 16908288 + 2304 + 12801 + 33619968 + 655360 + 3277058 + 33554432 + 184549376 + 838926851 + 12 + 50 + 16909312 + 3328 + 12801 + 33882112 + 917504 + 3277058 + 100663296 + 251658240 + 838926855 + 16 + 50 + 16910336 + 4352 + 12801 + 34144256 + 1179648 + 3277058 + 167772160 + 318767104 + 838926859 + 20 + 50 + 16911104 + 34013188 + 469762048 + -2029898685 + 536870978 + 268435456 + 3840 + 4 + 3015424 + 68943872 + 8847520 + 1126170624 + 1108344832 + 15 + 0 + 150996737 + 467968 + 36608 + -1589575680 + 4259840 + 1 + 872415232 + 201917952 + -1577058304 + 805308161 + 533504 + 36608 + -1555886080 + 4259840 + 1 + 889192448 + 219219712 + 1024 + -1543503872 + 805308161 + 467968 + 36608 + -1522466816 + 4259840 + 1 + 905969664 + 151586304 + -1509949440 + 805308161 + 467968 + 36608 + -1488912384 + 4259840 + 1 + 922746880 + 101254656 + -1476395008 + 805308161 + 533504 + 36608 + -1455222784 + 4259840 + 0 + 788529152 + 118556416 + 1024 + -1442840576 + 805308161 + 400384 + 34560 + -1421803520 + 4259840 + 0 + 50923008 + -1409286144 + 805308161 + 533504 + 36608 + -1388249088 + 4300800 + 1 + 939524096 + 235996928 + 1024 + -1375731712 + 805308161 + 533504 + 36608 + -1354559488 + 4300800 + 0 + 822083584 + 252774144 + 1024 + -1342177280 + 805308161 + 533504 + 36608 + -1321140224 + 4300800 + 0 + 838860800 + 185665280 + 1024 + -1308622848 + 805308161 + 467968 + 134912 + 1967230976 + 4296704 + 1 + 956303621 + 16 + 48 + 262400 + 170131456 + 9372210 + 1123680256 + 1101004800 + 39 + 4 + 559415275 + -336855200 + 1616920896 + 0 + 1114112 + 65540 + 16779812 + 143 + 36913914 + 16800 + 0 + 20578304 + 270679 + -6250336 + -15790321 + 1094713344 + 17 + 2 + 21 + 983040 + 256 + 123904 + 257 + 485 + 2 + 16777217 + -436207616 + 50397184 + 31916032 + 262400 + 124928 + 1281 + 489 + 6 + 16777217 + -369098752 + 117506048 + 32178176 + 524544 + 125952 + 2305 + 493 + 10 + 16777217 + -301989888 + 184614912 + 32440320 + 786688 + 126976 + 3329 + 497 + 14 + 16777217 + -234881024 + 251723776 + 32702464 + 1048832 + 128000 + 4353 + 501 + 18 + 16777217 + -167772160 + 318832640 + 32964608 + 1310976 + 0 + 16807168 + 513 + 17367296 + 16777216 + 352321536 + 0 + 838860800 + 1 + 50 + 16906496 + 512 + 12801 + 33161216 + 196608 + 3277057 + -83886080 + 67108864 + 838926844 + 5 + 50 + 16907520 + 1536 + 12801 + 33423360 + 458752 + 3277057 + -16777216 + 134217728 + 838926848 + 9 + 50 + 16908544 + 2560 + 12801 + 33685504 + 720896 + 3277058 + 50331648 + 201326592 + 838926852 + 13 + 50 + 16909568 + 3584 + 12801 + 33947648 + 983040 + 3277058 + 117440512 + 268435456 + 838926856 + 17 + 50 + 16910592 + 4608 + 12801 + 34209792 + 1245184 + 3277058 + 184549376 + 335544320 + 838926859 + 132864 + 51642368 + 459317 + 1133346816 + 1108344832 + 0 + 100677377 + 531456 + 34562 + 440634624 + 4328448 + 0 + 253300480 + 16843519 + 1684300800 + 51511370 + -15790321 + 594190 + 4 + 83853954 + -2097171276 + -1258302766 + -754979861 + -352059392 + 16151 + -1751498976 + -1600045184 + 17076 + 256 + 286720 + 922812424 + 603979776 + -1895687357 + -1920991168 + 0 + 72960 + 3345 + 234881282 + 196587 + -336920320 + 315392 + 922812424 + 469762048 + -2029904832 + 66 + 268435456 + 2841 + 251658497 + 50291812 + 1677722386 + 67829559 + 926351370 + 420413696 + 1028 + -8553091 + -4934476 + -2960686 + -1315861 + 71151792 + -230756626 + -96535299 + 155135662 + -1342177280 + 16842752 + 88080439 + 16779556 + 143 + 35471360 + 16908 + 0 + 18743296 + 923919 + 65794 + -10197916 + 201220 + 184544235 + -352318951 + 251723776 + 263423 + 2105376255 + -1263225601 + -757935361 + -336860412 + 1034989810 + 1055846138 + 1056767241 + 1060023984 + 1 + 16777221 + 1073755905 + 465920 + 34562 + 507743616 + 4194304 + 0 + 118558208 + 16908290 + -13158601 + 16777221 + -1342166271 + 334848 + 34562 + 910396800 + 4329472 + 0 + 251789313 + 37158912 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 48385 + 31 + 190 + 0 + 536870912 + -687800320 + 5 + 35258368 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 387 + 66307 + 1 + 16 + 0 + 16777266 + 1059102881 + -8224126 + -2960686 + -1315861 + -10197916 + -4934476 + 1058510746 + 2 + 50 + 1059102881 + -8224126 + -2960686 + -1315861 + -10197916 + -4934476 + 1058510746 + 20 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1058510746 + 50 + 50 + 1058971297 + -8219006 + -3616056 + -3609656 + -10185116 + -6895466 + 1058510746 + 80 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1058510746 + 81 + 16777266 + 1059102881 + -4934476 + -2960686 + -1315861 + -4934476 + -3618616 + 1058510746 + 83 + 50 + 1059102881 + -4934476 + -2960686 + -1315861 + -4934476 + -3618616 + 1058510746 + 100 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10194332 + -5591136 + 1058510746 + 130 + 50 + 1058971297 + -7555956 + -3945021 + -2429990 + -10189724 + -7229044 + 1058510746 + 159 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10194332 + -5591136 + 1058510746 + 160 + 33554482 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1058510746 + 165 + 16777266 + 1056635640 + -7555956 + -7555956 + -7561076 + -10185116 + -7555956 + 1052819663 + 171 + 33554482 + 1056635640 + -7555956 + -7555956 + -7561076 + -10185116 + -7555956 + 1052819663 + 189 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1058510746 + 190 + 50 + 1058971297 + -10190236 + -3616056 + -3609656 + -10185116 + -8866696 + 1058510746 + 215 + 50 + 1058971297 + -7563636 + -4273986 + -1315861 + -10185116 + -5591136 + 1058510746 + 35323904 + 66048 + 16842752 + 786432 + 256 + 3342315 + -336920576 + 131072 + 3342095 + 252641280 + 1310976 + 3342095 + 252641280 + 5242880 + 3342095 + 252641280 + 5308672 + 3342260 + -1263271936 + 5439488 + 3342315 + -336920576 + 6553856 + 3342315 + -336920576 + 10420224 + 3342315 + -336920576 + 10486016 + 3342315 + -336920576 + 12386304 + 3342095 + 252641280 + 12451840 + 3342315 + -336920576 + 14090240 + 3342315 + -336920034 + 1 + 33554689 + 12 + 0 + 16777266 + -13158601 + 2 + 50 + -1315861 + 20 + 16777266 + -1315861 + 80 + 50 + -1315861 + 81 + 16777266 + -4934476 + 83 + 50 + -15790321 + 100 + 16777266 + -15790321 + 159 + 50 + -15790321 + 160 + 16777266 + -15790321 + 189 + 50 + -1315861 + 190 + 50 + -15790321 + 215 + 50 + -15790321 + 35389440 + 66048 + 16842752 + 786432 + 256 + 3342135 + 926351360 + 131072 + 3342315 + -336920576 + 1310976 + 3342315 + -336920576 + 5242880 + 3342315 + -336920576 + 5308416 + 3342095 + 252641280 + 5439488 + 3342095 + 252641280 + 6553600 + 3342095 + 252641280 + 10420224 + 3342095 + 252641280 + 10485760 + 3342095 + 252641280 + 12386304 + 3342095 + 252641280 + 12451840 + 3342095 + 252641280 + 14090240 + 3342095 + 252641821 + 1 + 33554689 + 12 + 0 + 16777266 + -1315861 + 2 + 50 + -15790321 + 20 + 16777266 + -15790321 + 80 + 50 + -15790321 + 81 + 50 + -1315861 + 83 + 50 + -1315861 + 100 + 50 + -1315861 + 159 + 50 + -1315861 + 160 + 50 + -1315861 + 189 + 50 + -1315861 + 190 + 50 + -1315861 + 215 + 50 + -1315861 + 132864 + 51642368 + 459320 + 1116733440 + 1111490560 + 0 + 33555457 + 533504 + 36608 + -549250304 + 4306944 + 1 + 989855744 + 219223551 + 842150465 + 1342177280 + 1314816 + 772210692 + 469762048 + -2029990846 + -1879048126 + 1073741824 + 3840 + 2 + 459008 + 68419584 + 459321 + 1116733440 + 1111490560 + 16908858 + 459008 + 85721088 + 34013755 + 0 + 1111490560 + 66050 + 1006632960 + 0 + 16923392 + 769 + 17236225 + 16843017 + 3 + 0 + 50 + 0 + 0 + 0 + 16777216 + 838860800 + 4200857 + -1711210496 + 1966080 + 3276800 + 541328 + 256 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 201728 + 1794 + 1027751936 + 4341760 + 0 + 131118 + 117441564 + 135 + 13386304 + 16960 + 0 + 13565952 + 512 + 117506052 + 335544320 + 117587522 + 1073741890 + 1073741825 + 33701632 + 117506055 + 738197506 + 788676674 + 1073741824 + 0 + 80896 + 512 + 16908865 + 0 + 1 + 37748736 + 196865 + 33620231 + 16845056 + 768 + 0 + 12800 + 0 + 0 + 1 + 50 + 1070386381 + 0 + 16777216 + 503316480 + 843202560 + 0 + 134283268 + 16779300 + 143 + 14631707 + 16824 + 0 + 20774912 + 856341 + -13487566 + 1095761920 + 5136 + 2 + 983040 + 0 + 4096 + 15360 + 0 + 2 + 117441036 + 5 + 37896816 + 0 + 257 + 1778450442 + 603979777 + -2029950142 + 671088706 + 671088640 + 1792 + 70674 + 268632518 + 37945924 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 37962280 + 16936 + 0 + 512 + -100597753 + 603979776 + -1895711934 + 402653250 + 402653184 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 402653250 + 402653184 + 19712 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1794 + 1161953280 + 4325376 + 0 + 65582 + 117441564 + 135 + 13386240 + 16896 + 0 + 983040 + 512 + 117506052 + 335544320 + 117589570 + 66 + 1 + 33703680 + 117506054 + 603979778 + -2029893566 + 66 + 0 + 256 + 16908873 + 0 + 1 + 38273024 + 131329 + 151060737 + 4 + 0 + 50 + 4325376 + 0 + 16777216 + 838926336 + 0 + 3866624 + 3277122 + 0 + 15360 + 12800 + 1107296256 + 2 + 983040 + 0 + 4096 + 15360 + 0 + 2 + 117441300 + 7 + 38420992 + 16896 + 0 + 512 + 772210692 + 469762048 + -2029990846 + 66 + 0 + 52992 + 2 + 459008 + 85196800 + 459326 + 1107296256 + 1107296256 + 151191552 + 262731 + 459008 + 120324096 + 36635200 + 1107296256 + 0 + 64 + 2 + 66050 + 1275068416 + 0 + 16924672 + 769 + 16908545 + 117506313 + 3 + 0 + 50 + 0 + 0 + 0 + 16777216 + 843041996 + -855638016 + 65536 + 1966080 + 3293696 + 0 + 524544 + 67174408 + 603979776 + -1895768253 + 452984897 + -1207959552 + 81152 + 3345 + 369046066 + 843141120 + 20 + 268435456 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013187 + 335544320 + 117591361 + -805306303 + -805306368 + 2 + 16384256 + 119799808 + 9372091 + 1103101952 + 1103101952 + 74 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1103101952 + 1103101952 + 74 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 38683088 + 16848 + 0 + 257 + 1778450442 + 603979777 + -2029950143 + -805306303 + -805306368 + 1792 + 70674 + 268632518 + 38601284 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 38748672 + 16896 + 0 + 512 + 67174408 + 603979776 + -1895768253 + 452984897 + -1207959552 + 80640 + 3345 + 369046066 + 843141120 + 20 + 268447239 + 269312 + 34560 + -868089856 + 4325376 + 0 + 251658240 + 131079 + 16778260 + 7 + 37306880 + 16896 + 258 + 38207495 + 16778524 + 519 + 37421056 + 16896 + 1 + 33704192 + 0 + 258 + 989855744 + 50397447 + 16843009 + 17367040 + 196608 + 0 + 3276800 + 0 + 0 + 256 + + + + none + 429496833 + 30 + 50 + 8 + 1107296256 + 16777216 + 33558272 + 0 + 16 + 30 + 16777216 + 0 + 34013188 + 469762048 + -2029891517 + 1879048258 + 671088640 + 3840 + 5 + 459008 + 119799808 + 42402385 + 1131413504 + 1109917696 + 15 + 591362 + 1375731712 + 805308161 + 400384 + 34560 + 1749250048 + 4335616 + 0 + 252249602 + 1392508928 + 805308161 + 467968 + 165634 + 1413705728 + 4335616 + 0 + 251660550 + 38993920 + 3145771 + 16778524 + 15 + 39142234 + 16896 + 0 + 1966592 + 16930304 + 67174409 + 603979776 + -1895808958 + 536870977 + -805306368 + 81408 + 3865 + 402620651 + 553586447 + 255950848 + 82 + 352321536 + 134221568 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 1179648 + 196864 + 5888 + 1024 + 24 + 5 + 16777216 + 419430400 + 100663296 + 1703936 + 459008 + 0 + 67125248 + 257 + 0 + 262144 + 256 + 3342208 + -350224384 + 262400 + 3342278 + 286195712 + 393472 + 3342278 + 286195712 + 459008 + 3342278 + 286195816 + 1 + 16845056 + 768 + 0 + 12801 + 1 + 50 + 16777216 + 33554432 + 838861396 + 2 + 16845057 + 65536 + 327680 + 0 + 3276802 + 1392508928 + 16777216 + 838861395 + 2 + 50 + 16930560 + 768 + 12801 + 39256064 + 262144 + 3276802 + 1459769600 + 257 + 17367040 + 262144 + 0 + 3276800 + 1024 + 12801 + 5 + 50 + 16777216 + 117440512 + 838926338 + 117441300 + 131 + 39338764 + 0 + 983040 + 1280 + 117506054 + 469762050 + -2097000125 + 201326592 + 3840 + 151388761 + 48 + 459008 + 85196800 + 8585320 + 1124859904 + 15 + 151388762 + 48 + 459008 + 102498304 + 42140244 + 1124859904 + 15 + 591362 + 1526726656 + 805317377 + 334848 + 3842 + 1430455296 + 4308992 + 0 + 235012097 + 39190532 + 16779556 + 143 + 4211184 + 16784 + 0 + 20905984 + 989463 + -8328416 + -15790321 + 1094713344 + 21013 + 8 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 1507328 + 262144 + 6144 + 1281 + 25 + 6 + 0 + 436207616 + 117506048 + 4 + 38862848 + 65793 + 150994944 + 67108864 + 0 + 838860800 + 262144 + 3277056 + 1280 + 12801 + 7 + 50 + 16803840 + 257 + 17367040 + 196608 + 0 + 3277056 + 256 + 12801 + 2 + 50 + 152576 + 257 + 17367040 + 327680 + 0 + 3276800 + 256 + 12800 + 2 + 50 + 16777216 + 50331648 + 838926336 + 262144 + 3276800 + 1073741824 + 16842752 + 4 + 0 + 16777266 + -8328416 + 4 + 16777266 + -3796721 + 6 + 50 + -3796721 + 7 + 50 + -3796721 + 132864 + 51642368 + 459356 + 1109917696 + 1109917696 + 0 + 16869889 + 599040 + 100097 + 1799497728 + 4335616 + 0 + 117440513 + 336199683 + 29753949 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 2 + 117441300 + 7 + 39666216 + 16936 + 0 + 1024 + 117506055 + 469762048 + -2029930686 + 671088706 + 671088640 + 3857 + 117440512 + 67221504 + 12288 + 117506056 + 603979776 + -1895795390 + 402653250 + 402653184 + 19712 + 3857 + 117440512 + 33709568 + 12288 + -100597753 + 603979776 + -1895711934 + 402653250 + 402653184 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 402653250 + 402653184 + 19712 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1794 + 1598160896 + 4325376 + 0 + 65898 + 16779556 + 391 + 23806464 + 16896 + 0 + 458752 + 18090496 + 50447874 + 1610678528 + 5784066 + 65536 + 262144 + 328046 + 0 + 0 + 251658240 + 335544320 + 1048576 + 1376512 + 4352 + 5632 + 18 + 42 + 16777216 + 0 + 34013187 + 335544320 + 117596226 + 66 + 0 + 4 + 459008 + 119275520 + 8847799 + 1107296256 + 1107296256 + 15 + 285671424 + 262594 + 48 + 459008 + 136577024 + 9371765 + 1105199104 + 1105199104 + 77 + 15 + 285671424 + 131681 + 48 + 16384256 + 119799808 + 9372091 + 1105199104 + 1105199104 + 77 + 15 + 167772929 + -1140833024 + 3604736 + 170655744 + 13566397 + 1105199104 + 1105199104 + 77 + 0 + 15 + 420413441 + 16973668 + 1684275203 + 302009012 + -336860416 + 152112640 + 1028 + -8224126 + -4934476 + -2960686 + -1315861 + 67108864 + 4134807 + -1707138912 + -1589673984 + 4371456 + 65536 + 73400320 + 917519 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 27136 + 5120 + 18 + 80 + 50358784 + 385875968 + 1358954496 + 1572864 + 5374208 + 6400 + 21248 + 107 + 100 + 0 + 436207616 + -1627193237 + 7077888 + 10485760 + 27904 + 41473 + 31 + 163 + 0 + 536870912 + -1140785152 + 1 + 29163520 + 492288 + 16974592 + 643 + 66306 + 0 + -2097151741 + 33554432 + 42139649 + 50462720 + 197120 + 99072 + 16974336 + 257 + 17170432 + 917504 + 256 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263271936 + 0 + 131072 + 3292960 + -1599996030 + -2105344046 + -757923861 + -336855196 + 1684340660 + -1263255680 + 0 + 1310720 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 3276800 + 3292958 + -1633550462 + -1769799736 + -758579256 + -339148956 + -1771765866 + -929677440 + 0 + 5242880 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267187840 + 0 + 5308672 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 5439488 + 3292960 + -1599995980 + -1263206446 + -757923861 + -336855116 + -1263206456 + -926416896 + 0 + 6553600 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 8519680 + 3292958 + -1633550452 + -1265827901 + -842792998 + -337969308 + -2073755759 + -1316225024 + 0 + 10420224 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + 1919221674 + -1348468736 + 0 + 10486272 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10616832 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 10682368 + 3292958 + -1633550492 + -2107310136 + -758579256 + -339148956 + -1771765896 + -1267204096 + 0 + 12320768 + 3292958 + -1633550452 + -1769144386 + -927006741 + -336855196 + -1771765846 + -1348468736 + 2 + 117441300 + 7 + 39993936 + 16976 + 0 + 512 + -100597753 + 603979776 + -1895711934 + 1073741890 + 1073741824 + 19712 + 3850 + 197052 + 4521984 + 922812426 + 738197504 + -821969598 + 1073741890 + 1073741824 + 19712 + 0 + 3865 + 251658497 + 50291812 + 1677722386 + 4895979 + -336920567 + 286130176 + 263423 + -2105376001 + -1263225601 + -757935361 + -336860412 + 0 + 1058510746 + 1059102881 + 1065353216 + 1119092736 + 16777220 + 1610612736 + 234884864 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 1310720 + 4608 + 20483 + 6946839 + 81 + 0 + 402653184 + 1375797248 + 1638400 + 5439488 + 27392 + 25600 + 26 + 159 + 50359040 + 1811939328 + -1610612736 + 7143424 + 10617088 + 7936 + 41728 + 32 + 188 + 16777216 + 257 + -1124073472 + 126025729 + 50528256 + 164608 + 16974336 + 131 + 66306 + 2 + -2097151741 + 33554432 + 50462720 + 25362433 + 50462720 + 65793 + 100663296 + 234881024 + 65536 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1275068416 + 0 + 33554432 + 842997920 + -1577090430 + -2097163566 + -754979861 + -335584156 + 1694479540 + -1270906880 + 0 + 335544320 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 838860800 + 842997406 + -1577090410 + -2097166126 + -922760981 + -922786666 + 1694471880 + -1774223360 + 0 + 1342177280 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2017427456 + 0 + 1359020032 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1392508928 + 842997920 + -1577077580 + -1258302766 + -754979861 + -335563596 + -1258305336 + -939524096 + 0 + 1677721600 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -2113929216 + 842997406 + -1577087820 + -1929395251 + -1006642453 + -620796796 + 1694470577 + -1946157056 + 0 + -1627389952 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584142 + 1694476975 + -1610612736 + 0 + -1610481664 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1577058304 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1560281088 + 842997406 + -1577098110 + 1694484690 + -922760981 + -922786666 + 1694464180 + 2013265920 + 0 + -1140850688 + 842997406 + -1577087850 + -1929396536 + -1090524181 + -335584106 + 1694476975 + -1610612736 + 519 + 201728 + 1794 + 1665273856 + 4329472 + 0 + 65898 + 16779812 + 391 + 23806480 + 16912 + 0 + 458752 + 18092560 + 50447874 + 1644315649 + 16777304 + 1107427329 + 4 + 5 + 23986176 + 0 + 3840 + 5120 + 16 + 21 + 16777216 + 285212672 + 369098752 + 1179648 + 2752768 + 0 + 519 + 201728 + 1794 + 1682067456 + 4345856 + 0 + 65898 + 16779812 + 391 + 23806544 + 16976 + 0 + 458752 + 18092560 + 50447874 + 1644315649 + 16777304 + 1107427329 + 4 + 5 + 23986176 + 0 + 3840 + 5120 + 16 + 21 + 16777216 + 285212672 + 369098752 + 1179648 + 2752768 + 0 + 515 + 201728 + 1794 + 1698889728 + 4380672 + 0 + 65543 + 16778516 + 7 + 10109696 + 17112 + 2310 + 40239104 + 3145730 + 50332436 + 7 + 40321856 + 17216 + 0 + 256 + 117506054 + 469762048 + -2029885373 + 1073741891 + 1073741824 + 3849 + 100821248 + 12288 + 34013187 + 335544320 + 117598786 + 268435522 + -1476395008 + 2 + 3016448 + 68943872 + 8847564 + 1108344832 + 1118306304 + 207 + 0 + 33556225 + 267264 + 1794 + 1799491584 + 4368384 + 66050 + 1811941121 + 470016 + 143106 + 1833046016 + 0 + 1 + 1073741824 + 33554690 + 40763392 + 0 + 66157 + 3 + 16843265 + 17236225 + 150994944 + 50331648 + 0 + 838860800 + 0 + 0 + 65536 + 3276800 + 0 + 256 + 7680 + 12866 + -1476395008 + 2049 + 262400 + 136577024 + 9371871 + 1125842944 + 1102577664 + 317 + 13 + 286654258 + 842154320 + 0 + 336592896 + 131087 + 0 + 0 + 268435456 + 1006632960 + 0 + 132864 + 51642368 + 459375 + 1103101952 + 1113587712 + 0 + 33566215 + 269312 + 34560 + -868106240 + 4349952 + 0 + -822083584 + 131079 + 16778516 + 7 + 40583696 + 17064 + 2310 + 40894464 + 3145735 + 16779308 + 559 + 40714688 + 0 + 0 + 21037056 + 131081 + 100823296 + 12288 + 0 + 258 + 1828716544 + 50397442 + 16844545 + 17367040 + 196608 + 0 + 3276800 + 0 + 0 + 256 + 12800 + 0 + 1 + 30 + 50 + 1113587712 + 8 + 16778241 + 533504 + 36608 + -549250304 + 4306944 + 1 + 1023410176 + 219223551 + 842150465 + 1342177280 + 1314816 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 269312 + 34562 + 1916899328 + 4349952 + 0 + 251658240 + 131076 + 16779300 + 143 + 14631707 + 16824 + 0 + 20643840 + 856341 + -13487566 + 1095761920 + 5136 + 3016448 + 68943872 + 8847564 + 1099956224 + 1113587712 + 15 + 0 + 33556225 + 400384 + 34562 + 960598016 + 4349952 + 0 + 252249602 + 1929379840 + 805308161 + 467968 + 165634 + 994152448 + 0 + 0 + 251660550 + 41156608 + 3145728 + 0 + 66107 + 2 + 16845057 + 16908288 + 196608 + 0 + 3276800 + 0 + 256 + 12801 + 1113587712 + 60 + 50 + 16777216 + 0 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013188 + 469762048 + -2029882047 + -671088574 + -1476395008 + 3840 + 2 + 262400 + 136577024 + 9371871 + 1125842944 + 1102577664 + 315 + 13 + 286654258 + 842154320 + 0 + 336592942 + 117441564 + 135 + 13386200 + 17064 + 0 + 983040 + 512 + 117506054 + 469762048 + -2029897407 + -671088574 + -1476395008 + 3849 + 100824576 + 12288 + 117506055 + 603979778 + -2029896895 + -671088640 + 0 + 3840 + 151388791 + 48 + 0 + 1 + 37421056 + 131329 + 151060738 + 3 + 0 + 50 + 0 + 0 + 16777216 + 838943400 + 0 + 3932160 + 3277056 + 0 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 515 + 201728 + 1794 + 2017554432 + 4288512 + 0 + 65543 + 16779036 + 135 + 41435504 + 16752 + 0 + 987399 + 4 + 41484288 + 3145730 + 50332436 + 7 + 41566576 + 16752 + 0 + 256 + 117506055 + 469762048 + -2029880767 + 1879048257 + 1879048192 + 3857 + 117440512 + 67271424 + 12288 + 33751043 + 335544320 + 117603393 + 1879048257 + 1879048192 + 1 + 459008 + 119275520 + 8847996 + 1097859072 + 1097859072 + 15 + 285671424 + 262781 + 48 + 132864 + 51642368 + 459390 + 1141440512 + 1097859072 + 0 + 16788999 + 201728 + 1792 + -867956480 + 4288512 + 0 + 131079 + 16779036 + 135 + 14500662 + 16544 + 0 + 987399 + 4 + 41877504 + 3145774 + 50333228 + 17031 + 14566198 + 16544 + 0 + 983041 + 0 + 16779009 + 398336 + 1792 + -566020608 + 4235264 + 1115904 + 1026 + -2147483648 + 805306368 + 0 + 16834048 + 513 + 17367297 + 16777216 + 50331648 + 0 + 838878006 + 0 + 65536 + 3277120 + 1428076544 + 51200 + 12801 + 1127612416 + 2 + 983040 + 0 + 4096 + 15360 + 0 + 2 + 50332436 + 7 + 42025978 + 17028 + 0 + 256 + 67174407 + 469762048 + -2030024381 + -100663230 + -2080374784 + 3857 + 369093391 + -348028928 + 20 + 285213191 + 201728 + 1794 + -2109487104 + 4288512 + 0 + 65582 + 117441300 + 7 + 13386696 + 16752 + 0 + 512 + 117506054 + 469762048 + 251714883 + -889192383 + 1879048192 + 82441 + 100827904 + 12288 + 771948549 + 603979842 + 117497411 + -939524031 + 1879048192 + 16777216 + 65543 + 16778516 + 7 + 14566344 + 16752 + 2310 + 42205184 + 3145728 + 0 + 65758 + 2 + 16845057 + 16842752 + 196608 + 0 + 3276867 + -939524096 + 256 + 12801 + 1075000115 + 200 + 50 + 21219328 + 0 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013187 + 335544320 + 117605699 + -1501560767 + 536870912 + 1 + 3016448 + 51642368 + 458956 + 1134985216 + 1092616192 + 0 + 33556225 + 400384 + 3840 + -582768512 + 4268032 + 0 + 1342768642 + -2046820352 + 805318147 + 336896 + 4327168 + -565991808 + 4268032 + 256 + 1 + 459008 + 85196800 + 458974 + 1134985216 + 1092616192 + 151388807 + 48 + 0 + 1 + 14548992 + 131329 + 151060737 + 3 + 0 + 50 + 4433536 + 0 + 16777216 + 838942677 + 515375104 + 13107200 + 3277123 + -1501560832 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 201728 + 1794 + -2008865024 + 4235264 + 0 + 65582 + 117441300 + 7 + 13386535 + 16544 + 0 + 512 + 117506054 + 469762048 + 251714883 + 687865920 + -1610612736 + 82697 + 100829440 + 12288 + 771948549 + 603979842 + 117497411 + 654311488 + -1610612736 + 16777216 + 65543 + 16778516 + 7 + 14566183 + 16544 + 2310 + 42598400 + 3145728 + 0 + 65758 + 2 + 16845057 + 16842752 + 196608 + 0 + 3276867 + 654311424 + 256 + 12801 + 1062584975 + 200 + 50 + 21178112 + 0 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013186 + 201326592 + 50498372 + 1795162112 + 1 + 3016448 + 34340864 + 196812 + 1147863040 + 0 + 33556225 + 332800 + 2816 + -582717952 + 1 + 1141442050 + -1946157056 + 805318147 + 269312 + 4326144 + -565941504 + 256 + 1 + 459008 + 67895296 + 196830 + 1147863040 + 151388813 + 48 + 0 + 1 + 14548992 + 131329 + 151060737 + 3 + 0 + 50 + 4483840 + 0 + 16777216 + 838942870 + 1717960704 + 13107200 + 3277124 + 1795162112 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 201728 + 1794 + -1908136320 + 4288512 + 0 + 65582 + 117441300 + 7 + 13386790 + -2147466896 + 0 + 512 + 117506054 + 469762048 + 251714884 + 679477313 + -1610612736 + 83209 + 100830976 + 12288 + 771948549 + 603979842 + 117497412 + 645922881 + -1610612736 + 16777216 + 65543 + 16778516 + 7 + 14566438 + -2147466848 + 2310 + 42991616 + 3145728 + 0 + 65758 + 2 + 16845057 + 16842752 + 196608 + 0 + 3276868 + 645922816 + 256 + 12801 + 1079320248 + 200 + 50 + 21243520 + 0 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013187 + 335544320 + 117608771 + -1493172159 + 536870912 + 1 + 3016448 + 51642368 + 458956 + 1135017984 + 1092616192 + 0 + 33556225 + 400384 + 3840 + -582768384 + 4268032 + 0 + 1342768642 + -2046820352 + 805318147 + 336896 + 4327168 + -565991680 + 4268032 + 256 + 1 + 459008 + 85196800 + 458974 + 1135017984 + 1092616192 + 151388807 + 48 + 0 + 1 + 14548992 + 131329 + 151060737 + 3 + 0 + 50 + 4433664 + 0 + 16777216 + 838942677 + -1030815744 + 13107200 + 3277123 + -1493172224 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 515 + 201728 + 1794 + -1841089024 + 4304896 + 0 + 65543 + 16779036 + 135 + 43205430 + 16816 + 0 + 987399 + 8 + 43253760 + 3145730 + 117441564 + 135 + 43336128 + 16832 + 0 + 983040 + 512 + -100597753 + 603979776 + -1895711935 + -2147483583 + -2147483648 + 69632 + 3850 + 197052 + 4521984 + 117506056 + 603979778 + -2029873599 + -1073741759 + -1073741824 + 3840 + 285671424 + 262807 + 48 + 14 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 335544320 + 1179648 + 5243648 + 1778390784 + 20736 + 24 + 82 + 16777216 + 419430400 + 1392508928 + 7012352 + 6553600 + 6656 + 40707 + 7012460 + 160 + 0 + 1828716544 + -1576992768 + 2031616 + 10682368 + 8192 + 48129 + 0 + 66198 + 1 + 16845056 + 1024 + 0 + 12800 + 80 + 50 + 0 + 1358954496 + 838926336 + 5373952 + 3277056 + 34013187 + 335544320 + 117610564 + 150995009 + 1879048192 + 1 + 3016448 + 51642368 + 458956 + 1141440512 + 1097859072 + 0 + 33556225 + 465920 + 34560 + -582797824 + 4235264 + 0 + 252774144 + 1026 + -1728053248 + 805318147 + 404480 + 4359936 + -566020608 + 4235264 + 0 + 251658496 + 1 + 459008 + 101974016 + 458974 + 1127612416 + 1084227584 + 285671424 + 262810 + 48 + 0 + 1 + 14548992 + 131329 + 151060737 + 3 + 0 + 50 + 4404736 + 0 + 16777216 + 838942805 + 515375104 + 13107200 + 3277123 + 905969664 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 201728 + 1794 + -1690072832 + 4255744 + 0 + 65582 + 117441300 + 7 + 13386633 + 16624 + 0 + 512 + 117506055 + 469762048 + -2029986493 + -1996488640 + -268435456 + 3857 + 117440512 + 67279104 + 12288 + 771948550 + 738197570 + -2029986236 + 150995008 + -268435456 + 3840 + 16777216 + 65543 + 16778772 + 7 + 14566281 + 16624 + 4359 + 4 + 43646976 + 3145728 + 0 + 65758 + 2 + 16845057 + 16842752 + 196608 + 0 + 3276868 + 150994944 + 256 + 12801 + 1079320248 + 200 + 50 + 21203200 + 0 + 33558272 + 0 + 16 + 60 + 0 + 0 + 34013187 + 335544320 + 117611587 + -1233125311 + 536870912 + 1 + 3016448 + 51642368 + 458956 + 1136033792 + 1092616192 + 0 + 33556225 + 465920 + 34560 + -582764928 + 4268032 + 0 + 252774144 + 1026 + -1728053248 + 805318147 + 404480 + 4359936 + -565987712 + 4268032 + 0 + 251658496 + 1 + 459008 + 101974016 + 458974 + 1136033792 + 1092616192 + 285671424 + 262810 + 48 + 0 + 1 + 14548992 + 131329 + 151060737 + 3 + 0 + 50 + 4437632 + 0 + 16777216 + 838942805 + 515375104 + 13107200 + 3277123 + -1996488704 + 512 + 251658240 + 0 + 1048576 + 3932160 + 0 + 519 + 201728 + 1794 + -1656680448 + 4263936 + 0 + 131079 + 16779036 + 135 + 4735248 + 16656 + 0 + 987399 + 8 + 43909120 + 3145735 + 16779044 + 647 + 43991312 + 16656 + 0 + 983049 + 83886080 + 134217728 + 805306368 + 335548160 + 1 + 672 + 1 + 16777218 + -1593835520 + 33619968 + 44171264 + 196864 + 172800 + 1025 + 676 + 5 + 16777218 + -1526726656 + 100728832 + 44433408 + 459008 + 173824 + 2049 + 680 + 9 + 16777218 + -1459617792 + 167837696 + 44695552 + 721152 + 174848 + 3073 + 684 + 13 + 16777218 + -1392508928 + 234946560 + 44957696 + 983296 + 175872 + 4097 + 688 + 17 + 16777218 + -1325400064 + 302055424 + 45219840 + 1245440 + 0 + 33572864 + 257 + 65536 + 655360 + 0 + 3277470 + 5 + 50 + 45285376 + 655360 + 3277470 + 11 + 50 + 45285376 + 786432 + 3277470 + 13 + 50 + 45285376 + 917504 + 3277470 + 17 + 50 + 45285376 + 1179648 + 3277470 + 19 + 50 + 45286047 + 2 + 16845057 + 65536 + 1310720 + 0 + 3276800 + 0 + 16777216 + 838927028 + 2 + 50 + 16954624 + 768 + 12801 + 45481984 + 262144 + 3277058 + -1224736768 + 83886080 + 838860800 + 6 + 50 + 16955392 + 1792 + 12801 + 45678592 + 524288 + 3277058 + -1174405120 + 150994944 + 838927035 + 10 + 50 + 16956416 + 2816 + 12801 + 45940736 + 786432 + 3277058 + -1107296256 + 218103808 + 838927039 + 14 + 50 + 16957440 + 3840 + 12801 + 46202880 + 1048576 + 3277058 + -1040187392 + 285212672 + 838927043 + 18 + 50 + 16958464 + 4864 + 12801 + 46465026 + 117441300 + 7 + 46547216 + 16656 + 0 + 256 + 117506055 + 469762048 + -2030013119 + 268435521 + 268435456 + 3857 + 117440512 + 134399744 + 12288 + 768 + 251658240 + 65536 + 44040192 + 65792 + 172288 + 513 + 0 + 65653 + 1 + 16777472 + 768 + 0 + 12802 + -956301312 + 16777216 + 839043072 + 512 + 12802 + -922746361 + 201728 + 1794 + -901705728 + 4263936 + 0 + 131079 + 16779036 + 135 + 4735248 + 16656 + 0 + 987399 + 8 + 46858240 + 3145735 + 16779044 + 647 + 46940432 + 16656 + 0 + 983049 + 83886080 + 134217728 + 805306368 + 184553216 + 1 + 672 + 1 + 16777218 + -1593835520 + 33619968 + 44171264 + 196864 + 172800 + 1025 + 676 + 5 + 16777218 + -1526726656 + 100728832 + 44433408 + 459008 + 173824 + 2049 + 680 + 9 + 16777218 + -855638016 + 167837696 + 2 + 4718592 + 65792 + 16777216 + 67108864 + 0 + 839043840 + 768 + 12802 + -838860800 + 83886080 + 839044864 + 2560 + 12802 + -838677504 + 513 + 17367296 + 16777216 + 184549376 + 0 + 838860800 + 1 + 50 + 16961536 + 512 + 12801 + 47251456 + 196608 + 3277058 + -771751936 + 67108864 + 838927059 + 5 + 50 + 0 + 1536 + 12801 + 47448064 + 458752 + 3277058 + -721420288 + 134217728 + 838927062 + 9 + 50 + 16963328 + 2560 + 12800 + 47644674 + 117441300 + 7 + 47726864 + 16656 + 0 + 256 + 117506055 + 469762048 + -2030013119 + 268435521 + 268435456 + 3857 + 117440512 + 134404352 + 12288 + 514 + -637534208 + 65536 + 47906816 + 65792 + 0 + 16807168 + 257 + 65536 + 131072 + 0 + 3277529 + 1 + 50 + 47972354 + 50332436 + 7 + 48054640 + 16752 + 0 + 256 + 117506055 + 469762048 + -2030013119 + 1879048257 + 1879048192 + 3857 + 117440512 + 134405632 + 12288 + 33751043 + 335544320 + 117628738 + -402653119 + -2147483648 + 9 + 262400 + 153354240 + 9371889 + 1122500608 + 1098907648 + 74 + 15 + 421003023 + 252706575 + 252657920 + 0 + 1409286148 + 16779300 + 143 + 15876840 + 16768 + 0 + 4915200 + 987413 + -15790321 + 1090519040 + 21504 + 262400 + 136577024 + 9371891 + 1122500608 + 1098907648 + 76 + 15 + 286654223 + 252657920 + 0 + 1409286148 + 16779300 + 143 + 16007912 + 16768 + 0 + 4718592 + 987413 + -15790321 + 1090519040 + 21504 + 262400 + 153354240 + 9371894 + 1122500608 + 1098907648 + 11 + 15 + 421003023 + 252706575 + 252657920 + 0 + 1409286148 + 16779300 + 143 + 16204520 + 16768 + 0 + 21168128 + 987413 + -15790321 + 1090519040 + 21504 + 262400 + 136577024 + 9371896 + 1122500608 + 1098907648 + 3 + 15 + 286654223 + 252657920 + 0 + 1409286148 + 16779300 + 143 + 16335592 + 16768 + 0 + 11534336 + 987413 + -15790321 + 1090519040 + 21504 + 262400 + 119275520 + 8847433 + 1122500608 + 1098907648 + 15 + 286654336 + -350207744 + 0 + 1409286146 + 117441564 + 135 + 48251464 + 16968 + 0 + 983040 + 1024 + 771948549 + 603979776 + -1895784382 + -1207959486 + -872415232 + 83456 + 3840 + 9 + 459008 + 119799808 + 9371809 + 1090519040 + 1090519040 + 327 + 12 + 151388322 + 48 + 459008 + 136577024 + 9371811 + 1117257728 + 1090519040 + 328 + 13 + 285671424 + 262308 + 48 + 459008 + 119799808 + 9371813 + 1090519040 + 1090519040 + 329 + 9 + 151388326 + 48 + 459008 + 119799808 + 9371815 + 1090519040 + 1090519040 + 330 + 6 + 151388328 + 48 + 459008 + 136577024 + 9371817 + 1117257728 + 1090519040 + 47 + 7 + 285671424 + 262314 + 48 + 459008 + 102498304 + 8847531 + 1090519040 + 1090519040 + 3 + 151388332 + 48 + 459008 + 136577024 + 9371821 + 1090519040 + 1118568448 + 331 + 14 + 285671424 + 262318 + 48 + 459008 + 136577024 + 9371823 + 1117257728 + 1118568448 + 49 + 15 + 285671424 + 262320 + 48 + 459008 + 136577024 + 9371825 + 1090519040 + 1118568448 + 50 + 11 + 285671424 + 262322 + 48 + 6357248 + 86245376 + 1082589282 + 1112014848 + 1112539136 + 15 + 16777292 + 16778788 + 143 + 5259776 + 16816 + 0 + 21757952 + 786944 + 33575168 + 4980992 + 119799808 + 9371727 + 1107296256 + 1102053376 + 333 + 12 + 33554944 + 1275134208 + 256 + 1536 + 251658240 + 0 + 1048576 + 65792 + 22528 + 512 + 89 + 3 + 16777216 + 1509949440 + 67108864 + 5963776 + 1639168 + 1509949440 + 515 + 269312 + 34562 + -515749888 + 4343808 + 0 + 251658240 + 262190 + 50332964 + 143 + 10502800 + 17092 + 0 + 21889024 + 983040 + 2304 + 117506055 + 603979776 + -1895784127 + 65 + 0 + 85760 + 3081 + 100704768 + 12288 + 117506056 + 603979776 + -1895783614 + 1610612801 + 0 + 86016 + 3345 + 117440512 + 67150848 + 12288 + 117506055 + 603979776 + -1895783103 + 65 + 0 + 86272 + 2313 + 100705792 + 12288 + 117506055 + 603979776 + -1895782591 + 65 + 0 + 86528 + 1545 + 100706304 + 12288 + 117506056 + 603979776 + -1895782078 + 1610612801 + 0 + 12032 + 1809 + 117440512 + 67152384 + 12288 + 117506054 + 469762048 + -2029999295 + 65 + 0 + 777 + 100707328 + 12288 + 117506056 + 603979776 + -1895781055 + 66 + -1543503872 + 86784 + 3601 + 117440512 + 67153408 + 12288 + 117506056 + 603979776 + -1895780542 + 1610612802 + -1543503872 + 12544 + 3857 + 117440512 + 67153920 + 12288 + 117506056 + 603979776 + -1895780031 + 66 + -1543503872 + 12800 + 2833 + 117440512 + 67154432 + 12288 + 1627455493 + 603979840 + -2030017982 + 1207959618 + 1207959552 + 3841 + 19457 + 467968 + 36608 + 1329725440 + 4304896 + 1 + 1409286144 + 201457666 + 4980993 + 1 + 4980992 + 103022592 + 9371728 + 1107296256 + 1102053376 + 341 + 12 + 33554944 + 1358954498 + 117441564 + 135 + 48382536 + 16968 + 0 + 983040 + 768 + 1627455493 + 603979840 + -2030017982 + 1207959618 + 1207959552 + 3841 + 19457 + 467968 + 36608 + 1329704960 + 4288512 + 1 + 1442840576 + 201457666 + 4980993 + 1 + 4980992 + 103022592 + 9371728 + 1102053376 + 1097859072 + 343 + 12 + 33554944 + 1358954496 + 393231 + 0 + 0 + 268435456 + 16842752 + 5767168 + 131072 + 22784 + 769 + 90 + 4 + 0 + 1526726656 + 419627098 + 0 + 131840 + 68943872 + 8848099 + 1112014848 + 1112014848 + 15 + 0 + 16802049 + 336896 + 4228864 + 1648510976 + 4343808 + 0 + 251723776 + 33751043 + 335544320 + 117630019 + 1610612801 + -939524096 + 5 + 3604736 + 136052736 + 983781 + 1130102784 + 1101529088 + 344 + 420413441 + 16973583 + -955318270 + 168035016 + 262335232 + 257 + 1568 + 3604736 + 136052736 + 983782 + 1073741824 + 1101529088 + 345 + 420413441 + 16973583 + -955318270 + 168035016 + -1263225856 + 257 + 1568 + 3604736 + 136052736 + 983783 + 1073741824 + 1101529088 + 346 + 420413441 + 16973583 + -955318270 + 168035016 + 842150400 + 257 + 1568 + 3604736 + 136052736 + 983784 + 1130364928 + 1073741824 + 347 + 420413441 + 16973583 + -955318270 + 168035016 + 842150400 + 257 + 1568 + 3604736 + 136052736 + 983785 + 1130364928 + 1073741824 + 348 + 420413441 + 16973583 + -955318270 + 168035016 + -1263225856 + 257 + 1568 + 131840 + 51642368 + 459498 + 1130364928 + 1107296256 + 0 + 83900161 + 531456 + 3842 + -448570368 + 4317184 + 1 + 1561923328 + 16843519 + 264703744 + 34210818 + -938499349 + 1 + 16777222 + 536884993 + 531456 + 3842 + -432013312 + 4317184 + 1 + 1578700544 + 16843519 + 264703744 + 34210818 + -927681356 + 1 + 16777222 + 536884993 + 531456 + 3842 + -415236096 + 4317184 + 0 + 1377373952 + 16843519 + 264703744 + 34210818 + -936234446 + 1 + 16777222 + 536884993 + 463872 + 1794 + -398237696 + 4194304 + 1642240 + 16843519 + 264703744 + 34210818 + -936234446 + 1 + 16777222 + 536884993 + 531456 + 3842 + -381460480 + 4194304 + 1 + 1595477760 + 16843519 + 264703744 + 34210818 + -927681356 + 1 + 16777222 + 536871427 + 201728 + 1794 + -347824128 + 4356096 + 0 + 65543 + 16779036 + 135 + 10110112 + 17016 + 0 + 332039 + 4 + 49020928 + 3145730 + 50332436 + 7 + 49104032 + 17016 + 0 + 256 + 117506056 + 603979776 + -1895785916 + -1610612670 + 2013265920 + 90112 + 1297 + 117440512 + 67300864 + 12288 + 33751043 + 335544320 + 117632836 + 536870978 + 805306368 + 1 + 459008 + 136577024 + 9371802 + 1142947840 + 1110441984 + 352 + 5 + 285671424 + 262896 + 48 + 131840 + 51642368 + 459505 + 1142947840 + 1110441984 + 0 + 16779009 + 465920 + 34560 + -1706811392 + 4337664 + 0 + 85001984 + 1026 + -234881024 + 805306883 + 201728 + 1794 + -213778432 + 4325376 + 0 + 65543 + 16778260 + 7 + 49562112 + 16896 + 258 + 49610754 + 50332436 + 7 + 49693713 + 17287 + 0 + 256 + 117506054 + 469762048 + -2030003644 + 285212739 + -2030043136 + 3849 + 100857600 + 12288 + 33751043 + 335544320 + + + + none + -2030043136 + 1 + 459008 + 102498304 + 8847514 + 1141964800 + 1132920832 + 15 + 151388921 + 48 + 132864 + 68943872 + 8848122 + 1120403456 + 1120403456 + 15 + 0 + 33568513 + 666624 + 52992 + 742578176 + 4380672 + 0 + -1325400064 + 0 + 253300480 + 16843519 + 252674048 + 68814210 + -6250336 + 2 + 2 + 1 + 16777219 + -268423677 + 269312 + 34560 + -1606236160 + 4376576 + 0 + 251658240 + 589831 + 16779044 + 143 + 10568064 + 16768 + 0 + 23134208 + 788742 + 50003968 + 3145735 + 16779300 + 143 + 10699400 + 16768 + 0 + 10027008 + 856327 + 4 + 50069504 + 3145735 + 16779044 + 143 + 10830208 + 16768 + 0 + 10092544 + 592134 + 50135040 + 3145735 + 16779044 + 143 + 10961280 + 16768 + 0 + 21626880 + 395526 + 50200576 + 3145735 + 16779300 + 143 + 11092616 + 16768 + 0 + 3670016 + 463111 + 4 + 50266112 + 3145735 + 16778780 + 135 + 11223424 + 16768 + 0 + 198918 + 50331648 + 3145735 + 16779300 + 143 + 11354496 + 17032 + 0 + 23199744 + 921863 + 4 + 50397184 + 3145735 + 16779300 + 143 + 11485832 + 17032 + 0 + 3801088 + 987399 + 4 + 50462720 + 3145735 + 16779300 + 143 + 11616640 + 17032 + 0 + 3866624 + 725255 + 4 + 50528256 + 3145728 + 393231 + 0 + 0 + 268435456 + 16842752 + 1114112 + 131072 + 4608 + 769 + 50 + 4 + 0 + 855638016 + 83951616 + 1 + 2883584 + 131584 + 16843009 + 100663296 + 100663296 + 0 + 855613600 + -1610612736 + 0 + 16777216 + 855613600 + -1610612736 + 0 + 33554432 + 855632875 + 255819776 + 0 + 50331648 + 855632875 + 255819776 + 0 + 67108864 + 855632875 + 255819776 + 0 + 83886080 + 855632875 + 255819776 + 519 + 269312 + 34563 + 71544320 + 4335616 + 0 + 251658240 + 196615 + 16778780 + 519 + 50676654 + 16936 + 9 + 100861440 + 12288 + 117506053 + 335544320 + 117638979 + -1375731646 + 671088649 + 100861952 + 12288 + 67174409 + 603979776 + -1895808957 + -1493172158 + 0 + 90880 + 1305 + 402600498 + 855576335 + 255950848 + 84 + 335544320 + 100667136 + 0 + 16 + 1 + 16777216 + 385875968 + 33554432 + 1572864 + 196864 + 4352 + 1024 + 18 + 5 + 16777216 + 768 + 1073741824 + 33619968 + 16843520 + 1536 + 0 + 13055 + 842150400 + 90880 + 256 + 13055 + 842150400 + 90880 + 512 + 13055 + 1684300800 + 91136 + 768 + 13055 + 1684300800 + 91136 + 1024 + 13055 + 842150400 + 90880 + 1280 + 13055 + 842150400 + 90883 + 83886080 + 16843017 + 6 + 0 + 50 + 0 + 16777216 + 838860800 + 131072 + 3277056 + 768 + 12801 + 4 + 50 + 0 + 83886080 + 838861575 + 2 + 16845057 + 65536 + 393216 + 0 + 3277059 + 134217728 + 16777216 + 838927112 + 2 + 50 + 198144 + 768 + 12800 + 50724864 + 262144 + 3277059 + 134217728 + 83886080 + 838927112 + 132864 + 68943872 + 8848137 + 1135476736 + 1109917696 + 15 + 0 + 100665089 + 400384 + 3843 + 172211200 + 4347904 + 1 + 1695090179 + 184549376 + 805308161 + 467968 + 134915 + 205765632 + 4347904 + 1 + 1694501126 + 51183616 + 3145774 + 50332964 + 16399 + 51266492 + 16784 + 0 + 23462144 + 1 + 459008 + 119799808 + 17761039 + 1136394240 + 1114112000 + 359 + 360 + 151388939 + 48 + 3015424 + 103546880 + 1108280080 + 1136394240 + 1099956224 + 358 + 65536 + 256 + 117506055 + 603979777 + 251858755 + -1140850622 + 1744830464 + 91904 + 92169 + 100863232 + 12288 + 67174409 + 603979776 + -1895808957 + -1493172158 + 0 + 92416 + 1305 + 402608208 + 1358892815 + 255950848 + 84 + 335545345 + 666624 + 167683 + 289646336 + 4325376 + 1 + 1761607680 + 83892503 + -11513776 + -15790321 + 1098907648 + 21524 + 6 + 983040 + 0 + 4096 + 257 + 23 + 2 + 0 + 402653184 + 50397184 + 1114112 + 262144 + 4608 + 1281 + 0 + 393280 + 2 + 16777217 + 16973824 + 393216 + 0 + 3342160 + 1347420160 + 23658496 + 65536 + 3342160 + 1347420160 + 23658496 + 131072 + 3342220 + -1936982016 + 23724032 + 196608 + 3342220 + -1936982016 + 23724032 + 262144 + 3342095 + 252641280 + 23789568 + 327680 + 3342095 + 252641280 + 23790346 + 2 + 16844289 + 16973824 + 393216 + 0 + 3293056 + 0 + 23396352 + 65536 + 3293056 + 0 + 23396352 + 131072 + 3293056 + 0 + 23396352 + 196608 + 3293056 + 0 + 23396352 + 262144 + 3293056 + 0 + 23855104 + 327680 + 3295171 + 1342177280 + 23921420 + 3 + 16844289 + 16974081 + 150994944 + 100663296 + 0 + 843022336 + 1 + 1694498816 + 65536 + 3293056 + 0 + 23396352 + 512 + 12863 + -2147483648 + 91392 + 3 + 50 + 1065353216 + 357 + 0 + 67108864 + 843022336 + 1 + 1845559296 + 327680 + 3295171 + 1342177280 + 24051971 + 234881024 + 16843017 + 4 + 0 + 50 + 16777216 + 50331648 + 838926336 + 262144 + 3276800 + 1280 + 12800 + 51380224 + 65793 + 150994944 + 67108864 + 0 + 838860800 + 196608 + 3276800 + 1024 + 12801 + 5 + 50 + 16978176 + 513 + 257 + 50331648 + 100663296 + 0 + 855593040 + 1342177281 + 1761607680 + 16777216 + 855593040 + 1342177281 + 1761607680 + 33554432 + 855608460 + -1946157055 + 1778384896 + 50331648 + 855608460 + -1946157055 + 1778384896 + 67108864 + 855632875 + 251658241 + 1879048192 + 83886080 + 855632875 + 251658241 + 1879048711 + 269312 + 34563 + 306394112 + 4333568 + 0 + 251658240 + 196615 + 16778780 + 519 + 51594036 + 16888 + 9 + 100865024 + 12288 + 117506053 + 335544320 + 117642563 + 872415297 + -134217719 + 100865536 + 12288 + 67174409 + 603979776 + -1895808957 + 671088705 + -536870912 + 70912 + 1305 + 402600498 + 855576335 + 255938560 + 84 + 335544320 + 100667136 + 0 + 16 + 1 + 16777216 + 385875968 + 33554432 + 1572864 + 196864 + 4352 + 1024 + 18 + 5 + 16777216 + 768 + 1073741824 + 16842752 + 6 + 0 + 16777266 + -13487566 + 1 + 16777266 + -13487566 + 2 + 16777266 + -10197916 + 3 + 16777266 + -10197916 + 4 + 50 + -13487566 + 5 + 50 + -13487566 + 51576832 + 131328 + 16843017 + 6 + 0 + 50 + 51642368 + 256 + 12803 + 335544320 + 131072 + 3277588 + 16777216 + 50331648 + 839062529 + 4 + 50 + 51773440 + 1280 + 12803 + 369099541 + 2 + 16777473 + 17367040 + 393216 + 0 + 3277590 + 16777216 + 16777216 + 839063041 + 2 + 50 + 51773440 + 768 + 12803 + 335544320 + 262144 + 3277590 + 16777216 + 83886080 + 839063041 + 132864 + 68943872 + 8848151 + 1127481344 + 1109393408 + 15 + 0 + 83887873 + 400384 + 3840 + 977482752 + 4331520 + 0 + 1376323075 + 402653184 + 805318147 + 336896 + 4198147 + 239285248 + 4268032 + 1 + 1593901056 + 256 + 117506054 + 469762048 + 251861315 + 872415298 + 536870912 + 94473 + 100866048 + 12288 + 771948550 + 738197570 + 251861571 + 872415297 + 536870912 + 89856 + 16777216 + 65543 + 16778780 + 15 + 51987252 + 16928 + 0 + 24185094 + 52101120 + 3145732 + 16779556 + 143 + 4211496 + 16864 + 0 + 20512768 + 334103 + -13487566 + -15790321 + 1095761920 + 21524 + 262400 + 170655744 + 42926865 + 1126694912 + 1105199104 + 370 + 5 + 1644543 + 1347440895 + 252645185 + 1342177280 + 5510144 + 1536 + 251658240 + 0 + 1048576 + 65792 + 5888 + 512 + 24 + 3 + 16777216 + 285212672 + 67108864 + 1179648 + 327936 + 0 + 67125248 + 513 + 257 + 50331648 + 100663296 + 65536 + 855585330 + 838860801 + 956301312 + 16842752 + 855585330 + 838860801 + 956301312 + 33619968 + 855603320 + 2013265921 + 956301312 + 50397184 + 855603320 + 2013265921 + 956301312 + 67108864 + 855585330 + 838860800 + 117440512 + 83886080 + 855585330 + 838860800 + 117455360 + 769 + 16908545 + 50397185 + 4 + 0 + 50 + 1108869120 + 82 + 51904512 + 196608 + 3293720 + 0 + 5374744 + 4 + 50 + 1109393408 + 105 + 52101120 + 327680 + 3293728 + 0 + 6882075 + 52035584 + 65793 + 150994944 + 67108864 + 0 + 838860800 + 196608 + 3276800 + 1024 + 12801 + 5 + 50 + 16978176 + 513 + 257 + 50331648 + 100663296 + 65536 + 855593040 + 1342177281 + 1912602624 + 16842752 + 855593040 + 1342177281 + 1912602624 + 33619968 + 855608460 + -1946157055 + 1912602624 + 50397184 + 855608460 + -1946157055 + 1912602624 + 67108864 + 855632875 + 251658241 + 1929379840 + 83886080 + 855632875 + 251658241 + 1929380359 + 269312 + 34563 + 474138624 + 4376576 + 0 + 251658240 + 131127 + 16779820 + 207 + 2900688 + 17104 + 0 + 1376256 + 0 + 989455 + 65794 + -15790208 + 268805 + -2097176416 + -1610612736 + 33554432 + 33554432 + 16842752 + 66060334 + 50332964 + 16519 + 10502856 + 17096 + 0 + 983296 + 9 + 459008 + 119799808 + 9371809 + 1098907648 + 1098907648 + 353 + 12 + 151388923 + 48 + 459008 + 136577024 + 9371811 + 1116209152 + 1098907648 + 153 + 13 + 285671424 + 262908 + 48 + 459008 + 119799808 + 9371813 + 1098907648 + 1098907648 + 154 + 9 + 151388925 + 48 + 459008 + 119799808 + 9371815 + 1098907648 + 1098907648 + 330 + 6 + 151388926 + 48 + 459008 + 136577024 + 9371817 + 1116209152 + 1098907648 + 56 + 7 + 285671424 + 262911 + 48 + 459008 + 102498304 + 8847531 + 1098907648 + 1098907648 + 3 + 151388928 + 48 + 459008 + 136577024 + 9371821 + 1098907648 + 1116209152 + 354 + 14 + 285671424 + 262913 + 48 + 459008 + 136577024 + 9371823 + 1116209152 + 1116209152 + 58 + 15 + 285671424 + 262914 + 48 + 459008 + 136577024 + 9371825 + 1098907648 + 1116209152 + 59 + 11 + 285671424 + 262915 + 48 + 6 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 3276800 + 262144 + 13056 + 1281 + 0 + 65580 + 2 + 33554689 + 16844288 + 1536 + 0 + 13055 + -1600086016 + 0 + 256 + 13055 + -1600086016 + 0 + 512 + 13055 + -336916673 + -2147483648 + 768 + 13055 + -336916673 + -2147483648 + 1024 + 13055 + -336916673 + -2147483648 + 1280 + 13055 + -336916673 + -2147483648 + 34013187 + 335544320 + 117644610 + -2147483582 + -2147483648 + 1 + 16384256 + 102498304 + 8847803 + 1115684864 + 1115684864 + 15 + 167772929 + -553618688 + 14 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 335544320 + 1179648 + 5243648 + 1778390784 + 20736 + 24 + 82 + 16777216 + 419430400 + 1392508928 + 7012352 + 6553600 + 6656 + 40707 + 7012460 + 160 + 0 + 1828716544 + -1576992768 + 2031616 + 10682368 + 8192 + 48129 + 0 + 2 + 50332436 + 7 + 52315100 + 16912 + 0 + 512 + 922812423 + 335544320 + 117645123 + -603979710 + 268435481 + 251658497 + 50269967 + -2147482862 + 67829739 + -1961951229 + 286130176 + 65792 + 1 + 0 + 1 + 16777222 + -1879047167 + 531456 + 35584 + 1229135872 + 1 + 1946157056 + 253302783 + -1 + 65 + -2147483648 + 1184000 + 34013187 + 335544320 + 117645378 + -2147483582 + -2147483648 + 1 + 16384256 + 102498304 + 8847803 + 1115684864 + 1115684864 + 15 + 167772929 + -553618944 + 14 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 1778384896 + 335544320 + 1179648 + 5243648 + 1778390784 + 20736 + 24 + 82 + 16777216 + 419430400 + 1392508928 + 7012352 + 6553600 + 6656 + 40707 + 7012460 + 160 + 0 + 1828716544 + -1576992768 + 2031616 + 10682368 + 8192 + 48129 + 0 + 2 + 50332436 + 7 + 52511584 + 16848 + 0 + 512 + 922812423 + 335544320 + 117645123 + 1644167233 + -805306343 + 251658497 + 50269967 + -2147482862 + 67829739 + -1961951229 + 286130176 + 65792 + 1 + 0 + 1 + 16777222 + -1879047167 + 599040 + 36608 + 1229118464 + 4296704 + 0 + -687865856 + 253302783 + -1 + 65 + 1073741824 + 1184000 + 33751045 + 603979777 + -2029837757 + -100663230 + 1207959552 + 3840 + 95488 + 1 + 3016448 + 86245376 + 25625379 + 1140457472 + 1112014848 + 15 + 373 + 0 + 16788995 + 336896 + 100099 + 608434688 + 4343808 + 0 + 251658241 + 1962934272 + 131076 + 16779820 + 159 + 52773882 + 16968 + 0 + 24510464 + 24576000 + 989463 + -11513841 + -11513841 + 1099956224 + 5140 + 262400 + 153354240 + 9896742 + 1140457472 + 1112014848 + 375 + 15 + 421003243 + -351273136 + 1343177104 + 0 + 336920576 + 131087 + 0 + 0 + 268435456 + 503513103 + 1 + 52690944 + 65793 + 67108864 + 50331648 + 171108 + 838860800 + 1459617792 + 251829348 + 838860801 + 2013265920 + 503316480 + 838860800 + 1459618307 + 269312 + 67331 + 658733568 + 4311040 + 1 + 2030043136 + 65582 + 117441828 + 391 + 52642682 + 16840 + 0 + 983040 + 24707072 + 256 + 771948549 + 603979777 + -2029837245 + 2046820417 + -939524096 + 3840 + 96512 + 2 + 262400 + 153354240 + 9372453 + 1132068864 + 1103626240 + 74 + 15 + 421003088 + 1343225680 + 1343176992 + 0 + 336855044 + 16779292 + 135 + 52839290 + 16840 + 0 + 989463 + -1316081 + -11513841 + 1092616192 + 5140 + 2 + 983040 + 0 + 4096 + 7683 + 983040 + 66340 + 1 + 16843776 + 768 + 2 + 1687958016 + 22272 + 3842 + 1687958016 + 96256 + 7680 + 12800 + 22272 + 34013188 + 469762048 + -2029836221 + -939524030 + 536870912 + 3840 + 4 + 6619392 + 103022592 + 42401894 + 1137180672 + 1109393408 + 15 + 65792 + 1728079105 + 334848 + 34560 + 1749272576 + 4333568 + 0 + 251724032 + 1761608705 + 599040 + 36608 + 1078181376 + 4317184 + 0 + 704643072 + 253302783 + -336860161 + 252645185 + -2147483648 + 5510400 + 234946564 + 469762048 + 251661890 + 603979841 + 805306368 + 96768 + 0 + 369102592 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 327680 + 4608 + 3075 + 6946839 + 13 + 0 + 402653184 + 234946560 + 1638400 + 983040 + 27392 + 8192 + 26 + 91 + 50359040 + 1811939328 + 1543503872 + 7143424 + 6553856 + 7936 + 25856 + 32 + 126 + 16777216 + 838860800 + 2130706432 + 7208960 + 9502720 + 13056 + 52483 + 7209071 + 206 + 0 + 1879048192 + -553648128 + 7405568 + 18481920 + 1879057664 + 72448 + 38 + 284 + 16777216 + 1024 + 1711276032 + 33620233 + 16844288 + 5632 + 1 + 12800 + 1065353216 + 2 + 50 + 20938752 + 0 + 83886080 + 838942592 + 0 + 786432 + 3277119 + -2147483648 + 3329 + 12800 + 1065353216 + 15 + 50 + 0 + 0 + 536870912 + 838876928 + 0 + 4063232 + 3276800 + 0 + 23296 + 12800 + 1056964608 + 92 + 50 + 20938752 + 0 + 1610612736 + 838942592 + 0 + 6553856 + 3277119 + -2147483648 + 25857 + 12801 + 1065353216 + 126 + 50 + 20938752 + 0 + 2130706432 + 838942592 + 0 + 9502720 + 3277119 + -2147483648 + 52480 + 12801 + 1065353216 + 206 + 50 + 16777216 + 0 + -553648128 + 838942464 + 0 + 16580608 + 3277056 + 0 + 72192 + 12801 + 1056964608 + 283 + 16777266 + 20873216 + 26624 + 513 + 17170689 + 150994944 + 335544320 + 65536 + 843022336 + 65536 + 131072 + 3293056 + 256 + 1280 + 12800 + 1 + 12 + 16777266 + 0 + 16777216 + 218169344 + 843022336 + 65536 + 983296 + 3293056 + 256 + 23296 + 12863 + -2147483647 + 92 + 50 + 1065353216 + 0 + 1677721600 + 843022336 + 0 + 6619392 + 3293056 + 0 + 32256 + 12800 + 0 + 127 + 50 + 1065353216 + 16777216 + -1862270976 + 838860800 + 65536 + 11468800 + 3292928 + 256 + 52481 + 12800 + 1 + 206 + 50 + 1065353216 + 16777216 + -553648128 + 838860800 + 65536 + 16580608 + 3292928 + 256 + 72192 + 12800 + 1 + 283 + 16777266 + 1065353216 + 16793600 + 257 + 0 + 1114112 + 256 + 3342315 + -336920576 + 131072 + 3342315 + -336920576 + 327680 + 3342315 + -351338496 + 786432 + 3342315 + -351338496 + 851968 + 3342240 + -1600126976 + 917504 + 3342240 + -1600126976 + 983040 + 3342230 + -1768554496 + 5963776 + 3342230 + -1768554496 + 6029312 + 3342315 + -351338496 + 6553600 + 3342315 + -336920576 + 6619136 + 3342315 + -351338496 + 8257536 + 3342315 + -351338496 + 8323072 + 3342315 + -336920576 + 9502720 + 3342315 + -351338496 + 11468800 + 3342315 + -343932928 + 13434880 + 3342315 + -351338496 + 13500416 + 3342315 + -336920562 + 3 + 16777217 + 65792 + 33554432 + 117440512 + 0 + 838860800 + 0 + 512 + 12800 + 687875840 + 671088640 + 50331648 + 838860800 + 654321664 + 3072 + 12800 + 9984 + 671088640 + 1526726656 + 838860800 + 654321664 + 23552 + 12801 + -2097142016 + 671088640 + 1560281088 + 838860800 + 654321664 + 34013188 + 469762048 + -2029948093 + -1778384830 + 268435456 + 3840 + 4 + 6619392 + 103022592 + 42401894 + 1133903872 + 1108344832 + 15 + 65792 + 1728079105 + 334848 + 34560 + 1749259776 + 4329472 + 0 + 251724032 + 1761608705 + 533504 + 36608 + 1078168576 + 4317184 + 0 + -956301312 + 252777471 + -336860161 + 252645120 + 5510400 + 234946564 + 469762048 + 251661890 + 603979841 + 805306368 + 96768 + 0 + 369102592 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 6946816 + 327680 + 4608 + 3075 + 6946839 + 13 + 0 + 402653184 + 234946560 + 1638400 + 983040 + 27392 + 8192 + 26 + 91 + 16777216 + 1811939328 + 1543503872 + 7143424 + 6553856 + 7936 + 25856 + 32 + 126 + 16777216 + 838860800 + 2130706432 + 7208960 + 9502720 + 13056 + 52483 + 7209071 + 206 + 0 + 1879048192 + -553648128 + 7405568 + 18481920 + 1879057664 + 72448 + 38 + 284 + 16777216 + 1024 + 1073741824 + 16842752 + 17 + 0 + 16777266 + -1315861 + 2 + 50 + -1315861 + 5 + 50 + -1316081 + 12 + 50 + -1316081 + 13 + 50 + -6250336 + 14 + 50 + -6250336 + 15 + 50 + -6908266 + 91 + 50 + -6908266 + 92 + 50 + -1316081 + 100 + 50 + -1315861 + 101 + 50 + -1316081 + 126 + 50 + -1316081 + 127 + 50 + -1315861 + 145 + 50 + -1316081 + 175 + 50 + -1315968 + 205 + 50 + -1316081 + 206 + 50 + -1315861 + 6684672 + 131329 + 151060742 + 22 + 0 + 16777266 + 4161536 + 0 + 33554432 + 838942592 + 0 + 327680 + 3277119 + -2147483648 + 3072 + 12801 + 1065353216 + 13 + 16777266 + 4161536 + 0 + 251658240 + 838860800 + 0 + 2097152 + 3276863 + 0 + 15872 + 12800 + 0 + 91 + 50 + 4128768 + 0 + 1543503872 + 838942592 + 0 + 6291456 + 3277119 + -2147483648 + 25601 + 12801 + 1065353216 + 101 + 16777266 + 20938752 + 0 + 2113929216 + 838942592 + 0 + 8323072 + 3277119 + -2147483648 + 37120 + 12801 + 1065353216 + 205 + 50 + 20938752 + 0 + -838860800 + 838926336 + 0 + 14614528 + 3277119 + 0 + 64768 + 12801 + 0 + 282 + 50 + 20905984 + 1 + 453050368 + 838942336 + 104 + 2 + 16844289 + 17367040 + 1310720 + 256 + 3293056 + 256 + 512 + 12863 + -2147483647 + 5 + 50 + 0 + 16777216 + 201392128 + 838860800 + 65536 + 852224 + 3293056 + 256 + 3841 + 12863 + -2147483647 + 91 + 50 + 1065353216 + 16777216 + 1543503872 + 843022336 + 0 + 6553600 + 3293056 + 0 + 25857 + 12863 + -2147483648 + 126 + 50 + 0 + 0 + 2130706432 + 843022336 + 65536 + 9502720 + 3276800 + 256 + 44800 + 12863 + 1 + 205 + 16777266 + 0 + 16777216 + -838860800 + 843022336 + 65536 + 14614528 + 3276800 + 256 + 64768 + 12863 + 1 + 282 + 50 + 0 + 16777217 + 453050368 + 843022336 + 65550 + 3 + 16777217 + 65792 + 33554432 + 117440512 + 0 + 838860800 + 0 + 512 + 12800 + 687875840 + 671088640 + 50331648 + 838860800 + 654321664 + 3072 + 12800 + 9984 + 671088640 + 1526726656 + 838860800 + 654321664 + 23552 + 12801 + -2097142016 + 671088640 + 1560281088 + 838860800 + 654321664 + 33751043 + 335544320 + 117647683 + -1879048125 + -1677721600 + 1 + 459008 + 85721088 + 8847514 + 1133510656 + 1134297088 + 15 + 16909098 + 131840 + 51642368 + 459563 + 1107296256 + 1107296256 + 0 + 16788995 + 269312 + 34560 + -1606287360 + 4325376 + 0 + 251658240 + 589831 + 16779044 + 143 + 10567936 + 16640 + 0 + 18415616 + 788742 + 10616832 + 3145735 + 16779300 + 143 + 10699136 + 16640 + 0 + 18481152 + 856327 + 4 + 10747904 + 3145735 + 16779044 + 143 + 10830080 + 16640 + 0 + 2359296 + 592134 + 10878976 + 3145735 + 16779044 + 143 + 10961152 + 16640 + 0 + 65536 + 395526 + 11010048 + 3145735 + 16779300 + 143 + 11092352 + 16640 + 0 + 3080192 + 463111 + 4 + 11141120 + 3145735 + 16778780 + 135 + 11223296 + 16640 + 0 + 198918 + 11272192 + 3145735 + 16779300 + 143 + 11354368 + 16768 + 0 + 18546688 + 921863 + 4 + 11403264 + 3145735 + 16779300 + 143 + 11485568 + 16768 + 0 + 3211264 + 987399 + 4 + 11534336 + 3145735 + 16779300 + 143 + 11616512 + 16768 + 0 + 3276800 + 725255 + 4 + 11665408 + 3145730 + 50332436 + 7 + 53232800 + 17460 + 0 + 256 + 117506054 + 469762048 + -2030003644 + -1610612668 + 872415232 + 3849 + 50331648 + 268643584 + 33751044 + 469762048 + -2030031552 + -1073741760 + -1073741824 + 3840 + 1 + 3015424 + 68943872 + 8847520 + 1086324736 + 1086324736 + 15 + 0 + 151009025 + 531456 + 34563 + 775946240 + 4194304 + 0 + 51973888 + 16843519 + 252674048 + 51512330 + -13487566 + 200974 + 1 + 16777216 + 65536 + 0 + 65792 + 458752 + 922812425 + 603979776 + -1895616704 + 64 + 0 + 63744 + 1561 + 251658497 + 50269967 + -2147482862 + 67766834 + 842137603 + 286130176 + 65792 + 1 + 0 + 1 + 16777223 + 14081 + 599040 + 36611 + 809500672 + 4194304 + 0 + 134217728 + 119082752 + 16843519 + 252674048 + 51512330 + -13487566 + 200974 + 1 + 16777216 + 65536 + 0 + 65792 + 458752 + 922812425 + 603979776 + -1895616192 + 64 + 0 + 97024 + 2329 + 251658497 + 50269967 + -2147482862 + 67766834 + 842137603 + 286130176 + 65792 + 1 + 0 + 1 + 16777223 + 14081 + 599040 + 36611 + 843055104 + 4194304 + 1 + 268435456 + 202968832 + 16843519 + 252674048 + 51512330 + -1315861 + 200974 + 1 + 16777216 + 65536 + 0 + 65792 + 458752 + 922812425 + 603979776 + -1895615680 + 64 + 0 + 10496 + 3353 + 251658497 + 50269967 + -2147482862 + 67829739 + -336920573 + 286130176 + 65792 + 1 + 0 + 1 + 16777223 + 14081 + 599040 + 36611 + 876609536 + 4194304 + 0 + 1375731712 + 186191616 + 16843519 + 252674048 + 51512330 + -13487566 + 200974 + 1 + 16777216 + 65536 + 0 + 65792 + 458752 + 922812425 + 603979776 + -1895615168 + 64 + 0 + 18176 + 3609 + 251658497 + 50269967 + -2147482862 + 67829739 + -336920573 + 286130176 + 65792 + 1 + 0 + 1 + 16777223 + 14081 + 599040 + 36611 + 910163968 + 4194304 + 0 + 1291845632 + 253300480 + 16843519 + 252674048 + 51512330 + -7566196 + 200974 + 1 + 16777216 + 65536 + 0 + 65792 + 458752 + 33751044 + 469762048 + -2029832381 + -2013265854 + -603979776 + 3840 + 1 + 3015424 + 68943872 + 8847520 + 1132986368 + 1121714176 + 15 + 0 + 150996737 + 467968 + 36608 + -1589542912 + 4292608 + 1 + 2080374784 + 201917952 + -1275068416 + 805308161 + 533504 + 36608 + -1555861416 + 1178697728 + 1 + 2097152000 + 219219712 + 1024 + -1258291200 + 805308161 + 467968 + 36608 + -1522434048 + 4292608 + 1 + 2113929216 + 151586304 + -1241513984 + 805308161 + 467968 + 36608 + -1488879616 + 4292608 + 1 + 2130706432 + 101254656 + -1224736768 + 805308161 + 533504 + 36608 + -1455198120 + 1178697728 + 0 + 939524096 + 118556416 + 1024 + -1207959552 + 805308161 + 400384 + 34560 + -1421770752 + 4292608 + 0 + 50923008 + -1191182336 + 805308161 + 533504 + 36608 + -1388216320 + 4365313 + 16777217 + -2147483648 + 235996928 + 1024 + -1174405120 + 805308161 + 533504 + 36608 + -1354534824 + 1178770433 + 16777216 + 973078528 + 252774144 + 1024 + -1157627904 + 805308161 + 533504 + 36608 + -1321107456 + 4365313 + 16777216 + 989855744 + 185665280 + 1024 + -1140850688 + 805306883 + 201728 + 1795 + 944021504 + 4469760 + 0 + 196654 + 117441300 + 7 + 54084992 + 536822835 + -65536 + 512 + 117506056 + 738197506 + -1761396156 + 1291845699 + 268435456 + 98560 + 3840 + 151191552 + 66363 + 459008 + 119799808 + 9896764 + 1145896960 + 1125122048 + 385 + 15 + 151191552 + 66363 + 0 + 2 + 54263808 + 131329 + 50397184 + 2 + 0 + 50 + 17 + 1 + 4100 + 50 + 386 + 16 + 54132736 + 196865 + 50397184 + 16845056 + 1024 + 0 + 12800 + 4352 + 256 + 2819 + 50 + 387 + 1 + 11 + 67108864 + 838860801 + -2080374784 + 16842752 + 268697600 + 3276800 + 25493504 + 1048832 + 772210692 + 469762050 + 117652805 + -2145386684 + 872414976 + 0 + 33556225 + 535552 + 169731 + 1044663552 + 4395008 + 1 + -2130706432 + 251660547 + 1 + 54460423 + 16779044 + 151 + 54543437 + 17168 + 0 + 25231360 + 985347 + 1 + 54460416 + 0 + 131904 + 2 + 16843521 + 0 + 131072 + 0 + 3276800 + 1114112 + 65536 + 268697600 + 3276800 + 25296896 + 1049406 + 3 + 16843521 + 257 + 150994944 + 67108864 + 0 + 838860800 + 285212672 + 16777216 + 184745984 + 3276800 + 25362432 + 65536 + 721920 + 12800 + 99328 + 257 + 4100 + 50 + 389 + 16 + 16791297 + 599040 + 149251 + 1095016448 + 4469760 + 4145152 + 6415 + 65794 + -15790208 + 201220 + 184487701 + 1644167953 + 234881024 + 16842752 + 256 + 0 + 257 + 1904 + 132864 + 51642368 + 459586 + 1151336448 + 1144258560 + 0 + 16791297 + 531456 + 50756 + -1610612668 + 872415294 + -858993408 + 3865 + 251658761 + 54493184 + 16715535 + 251659026 + 67829519 + 252641287 + 286130176 + 197631 + 252645375 + -437918209 + 252645123 + 0 + 0 + 0 + 1 + 16777223 + -536870912 + 67112704 + 0 + 16 + 1 + 16777216 + 285212672 + 33554432 + 1179648 + 196864 + 0 + 515 + 201728 + 1795 + 1128570880 + 4469760 + 0 + 196654 + 117441300 + 7 + 54084992 + 536822835 + -65536 + 768 + 117506057 + 872415234 + -1627178428 + 1291845699 + 268435456 + 99840 + 100096 + 3840 + 151191552 + 66363 + 459008 + 119799808 + 9896764 + 1145896960 + 1125122048 + 391 + 15 + 151191552 + 66363 + 3604736 + 136052736 + 4653889 + 1142947840 + 1139802112 + 1050253722 + 420413441 + 16973583 + 260046851 + 302254847 + 421091840 + 51449344 + 257 + 0 + 16777216 + 0 + 16842752 + 124780544 + 0 + 131900 + 1 + 16843520 + 512 + 0 + 12800 + 4352 + 713728 + 12800 + 100355 + 973078528 + 33620227 + 16845056 + 1024 + 0 + 12800 + 99840 + 2148 + 50 + 393 + 8 + 1694498816 + 838860801 + -1979645952 + 182714368 + 3276800 + 25493760 + 772210692 + 469762050 + 117652805 + -2145386684 + 872414976 + 0 + 33556225 + 603136 + 171779 + 977554688 + 4395008 + 1 + -2046820351 + -2030043136 + 251660547 + 1 + 54460423 + 16779044 + 151 + 54281293 + 17168 + 0 + 25624576 + 985347 + 1 + 54460416 + 0 + 131900 + 1 + 16843520 + 512 + 0 + 12800 + 4352 + 713728 + 12800 + 100355 + 973078528 + 33620227 + 16845056 + 1024 + 0 + 12800 + 99840 + 2148 + 50 + 393 + 8 + 1694498816 + 838860801 + -1979645952 + 182714368 + 3276800 + 25493760 + 922812425 + 603979778 + 1191395652 + 536870979 + -268435393 + 1073741824 + 420413441 + 16973583 + 260046851 + 302254847 + 253059584 + 51449344 + 257 + 0 + 16777216 + 0 + 16842752 + 124780546 + 117441300 + 7 + 54805664 + 17460 + 0 + 1536 + 771948548 + 469762048 + 251872580 + -1610612669 + 536870912 + 101120 + 8 + 459008 + 85196800 + 458810 + 1126170624 + 1126170624 + 151388998 + 48 + 459008 + 102498304 + 983833 + 1126170624 + 1126170624 + 396 + 151388998 + 48 + 459008 + 102498304 + 983879 + 1126170624 + 1126170624 + 397 + 151388998 + 48 + 459008 + 102498304 + 983880 + 1126170624 + 1126170624 + 226 + 151388998 + 48 + 459008 + 102498304 + 983881 + 1126170624 + 1126170624 + 390 + 151388998 + 48 + 459008 + 102498304 + 983882 + 1126170624 + 1126170624 + 398 + 151388998 + 48 + 459008 + 102498304 + 983883 + 1126170624 + 1126170624 + 399 + 151388998 + 48 + 459008 + 102498304 + 983884 + 1126170624 + 1126170624 + 400 + 151388998 + 48 + 3015424 + 68943872 + 983885 + 1151336448 + 1126170624 + 401 + 0 + 134219521 + 332800 + 1792 + 977477632 + 4399104 + 591363 + 1174405120 + 805308161 + 400384 + 3843 + 423829504 + 4399104 + 1 + -1945565693 + 1174405120 + 805308161 + 400384 + 3843 + 1195581440 + 4399104 + 1 + -1928788477 + 1174405120 + 805308161 + 400384 + 3843 + 1212358656 + 4399104 + 0 + -502725117 + 1174405120 + 805308161 + 400384 + 3843 + 1229135872 + 4399104 + 1 + -2046228989 + 1174405120 + 805308161 + 400384 + 3843 + 1245913088 + 4399104 + 1 + -1912011261 + 1174405120 + 805308161 + 400384 + 3843 + 1262690304 + 4399104 + 1 + -1895234045 + 1174405120 + 805308161 + 400384 + 3843 + 1279467520 + 4399104 + 1 + -1878456829 + 1174405120 + 805318147 + 269312 + 3843 + 1313120256 + 4399104 + 1 + -1845493760 + 524295 + 16778516 + 7 + 3818272 + 17184 + 2310 + 54919168 + 3145735 + 16778780 + 15 + 51987232 + 17184 + 0 + 25954566 + 54919168 + 3145735 + 16778780 + 15 + 55001888 + 17184 + 0 + 26020102 + 54919168 + 3145735 + 16778780 + 15 + 55067424 + 17184 + 0 + 14813446 + 54919168 + 3145735 + 16778780 + 15 + 55132960 + 17184 + 0 + 25561350 + 54919168 + 3145735 + 16778780 + 15 + 55198496 + 17184 + 0 + 26085638 + 54919168 + 3145735 + 16778780 + 15 + 55264032 + 17184 + 0 + 26151174 + 54919168 + 3145735 + 16778780 + 15 + 55329568 + 17184 + 0 + 26216710 + 54919168 + 3145774 + 50332700 + 15 + 55526560 + 17184 + 0 + 26411008 + 2048 + 117506053 + 335544320 + 117455427 + 536870979 + 536870921 + 100877824 + 12288 + 117506054 + 469762048 + 251861315 + 536870979 + 536870912 + 101385 + 100877824 + 12288 + 117506054 + 469762048 + 251873091 + 536870979 + 536870912 + 101641 + 100877824 + 12288 + 117506054 + 469762048 + 251873347 + 536870979 + 536870912 + 57865 + 100877824 + 12288 + 117506054 + 469762048 + 251873603 + 536870979 + 536870912 + 99849 + 100877824 + 12288 + 117506054 + 469762048 + 251873859 + 536870979 + 536870912 + 101897 + 100877824 + 12288 + 117506054 + 469762048 + 251874115 + 536870979 + 536870912 + 102153 + 100877824 + 12288 + 117506054 + 469762048 + 251874371 + 536870979 + 536870912 + 102409 + 100877824 + 12288 + 771948548 + 469762048 + 251875396 + -1610612669 + 536870912 + 103424 + 8 + 459008 + 85196800 + 458810 + 1126170624 + 1126170624 + 151388998 + 48 + 459008 + 102498304 + 983833 + 1126170624 + 1126170624 + 396 + 151388998 + 48 + 459008 + 102498304 + 983879 + 1126170624 + 1126170624 + 397 + 151388998 + 48 + 459008 + 102498304 + 983880 + 1126170624 + 1126170624 + 226 + 151388998 + 48 + 459008 + 102498304 + 983881 + 1126170624 + 1126170624 + 390 + 151388998 + 48 + 459008 + 102498304 + 983882 + 1126170624 + 1126170624 + 398 + 151388998 + 48 + 459008 + 102498304 + 983883 + 1126170624 + 1126170624 + 399 + 151388998 + 48 + 459008 + 102498304 + 983884 + 1126170624 + 1126170624 + 400 + 151388998 + 48 + 3015424 + 68943872 + 983889 + 1151336448 + 1126170624 + 405 + 0 + 134219521 + 332800 + 1792 + 977477632 + 4399104 + 591363 + 1174405120 + 805308161 + 400384 + 3843 + 423829504 + 4399104 + 1 + -1945565693 + 1174405120 + 805308161 + 400384 + 3843 + 1195581440 + 4399104 + 1 + -1928788477 + 1174405120 + 805308161 + 400384 + 3843 + 1212358656 + 4399104 + 0 + -502725117 + 1174405120 + 805308161 + 400384 + 3843 + 1229135872 + 4399104 + 1 + -2046228989 + 1174405120 + 805308161 + 400384 + 3843 + 1245913088 + 4399104 + 1 + -1912011261 + 1174405120 + 805308161 + 400384 + 3843 + 1262690304 + 4399104 + 1 + -1895234045 + 1174405120 + 805308161 + 400384 + 3843 + 1279467520 + 4399104 + 1 + -1878456829 + 1174405120 + 805306368 + 0 + 100877568 + 257 + 16973824 + 131072 + 0 + + + + linear + 47120384 + 3276800 + 26280781 + 1 + 16843520 + 512 + 0 + 12800 + 102656 + 184064 + 12800 + 102915 + 1308622848 + 16843011 + 2 + 0 + 50 + 402 + 719 + 50 + 403 + 55574528 + 65793 + 50331648 + 33554432 + 0 + 838860801 + -1811939326 + -822083584 + 838860801 + -1794945280 + 257 + 16973824 + 131072 + 0 + 3276800 + 26411008 + 47120384 + 3276800 + 26477393 + 1 + 16843520 + 1024 + 0 + 12800 + 103680 + 92160 + 12800 + 103936 + 92416 + 12800 + 101120 + 184064 + 12800 + 101120 + 33882115 + 335544320 + 117658179 + -897580989 + 1946157056 + 4 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 132864 + 86245376 + 9372499 + 1119879168 + 1119879168 + 407 + 15 + 0 + 33566211 + 269312 + 34560 + -1606238208 + 4374528 + 0 + 251658240 + 589831 + 16778524 + 135 + 55853568 + 16896 + 0 + 196866 + 55902215 + 16778788 + 143 + 55984640 + 16896 + 0 + 26738688 + 4653314 + 56033287 + 16778788 + 143 + 56115712 + 16896 + 0 + 22151168 + 393474 + 56164359 + 16778788 + 143 + 56246784 + 16896 + 0 + 26804224 + 9109762 + 56295431 + 16778788 + 143 + 56377856 + 16896 + 0 + 4194304 + 13566210 + 56426503 + 16778788 + 143 + 56508928 + 16896 + 0 + 26869760 + 9306370 + 56557575 + 16778788 + 143 + 56640000 + 16896 + 0 + 26935296 + 590082 + 56688647 + 16778788 + 143 + 56771072 + 16896 + 0 + 27000832 + 5046530 + 56819719 + 16778788 + 143 + 56902144 + 16896 + 0 + 27066368 + 786690 + 56950788 + 16779300 + 143 + 279172 + 16928 + 0 + 27131904 + 987413 + -15790321 + 1099956224 + 1024 + 4 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 0 + 132864 + 68943872 + 8848230 + 1119879168 + 1119879168 + 15 + 0 + 16778241 + 533504 + 36608 + 71468032 + 4333568 + 1 + -1644167168 + 85005823 + 252645185 + -1879048192 + 266240 + 1024 + 251658240 + 0 + 1048576 + 65792 + 4352 + 512 + 18 + 3 + 16777216 + 0 + 34013187 + 335544320 + 117663555 + -897580989 + 1946157056 + 1 + 3604736 + 101449728 + 410784 + 17460 + 6415 + 133379 + 1065353216 + -15790208 + 201220 + 184487695 + 251660049 + 234881024 + 50593551 + 252706789 + -437911793 + 252642048 + 0 + 0 + 0 + 257 + 2016 + 4 + 983040 + 0 + 4096 + 257 + 17 + 2 + 0 + 301989888 + 50397184 + 0 + 131840 + 68943872 + 8847409 + 1107296256 + 1107296256 + 15 + 0 + 16788995 + 269312 + 34560 + -1606287360 + 4325376 + 0 + 251658240 + 262151 + 16779044 + 143 + 10568064 + 16768 + 0 + 3801088 + 788742 + 11796480 + 3145735 + 16779044 + 143 + 10830208 + 16768 + 0 + 3866624 + 592134 + 11927552 + 3145735 + 16779044 + 143 + 10961280 + 16768 + 0 + 3670016 + 395526 + 11993088 + 3145735 + 16778780 + 135 + 11223424 + 16768 + 0 + 198918 + 12124160 + 3145730 + 117441300 + 7 + 57164352 + 16960 + 0 + 256 + 117506055 + 469762048 + -2030013118 + 1073741890 + 1073741824 + 3857 + 117440512 + 134441216 + 12288 + 2819 + 1778384896 + 65536 + 57344000 + 65792 + 224256 + 513 + 877 + 3 + 16777219 + 1845493760 + 67174400 + 57606144 + 327936 + 225280 + 1537 + 881 + 7 + 16777219 + 1912602624 + 134283264 + 57868288 + 590080 + 226304 + 2561 + 0 + 65653 + 1 + 16777472 + 2816 + 0 + 12803 + 1761607680 + 16777216 + 839087360 + 512 + 12803 + 1979711488 + 50331648 + 839087872 + 1024 + 12803 + 2013265920 + 83886080 + 839088384 + 1536 + 12803 + 2046820352 + 117440512 + 839088896 + 2048 + 12803 + 2080374784 + 150994944 + 839089408 + 2560 + 12803 + 2113929731 + 201728 + 1795 + 2135068672 + 4349952 + 0 + 65543 + 16778516 + 7 + 10109584 + 16992 + 2310 + 58720256 + 3145730 + 50332436 + 7 + 58802902 + 17066 + 0 + 256 + 117506053 + 335544320 + 117480002 + -704643006 + -1442840567 + 100893184 + 12288 + 33751043 + 335544320 + 117670722 + -1879048126 + 1610612736 + 1 + 459008 + 85196800 + 459652 + 1116733440 + 1113587712 + 151389061 + 48 + 131840 + 51642368 + 459654 + 1121320960 + 1118437376 + 0 + 16779009 + 332800 + 1792 + -1706895872 + 4368896 + 591363 + -2030043136 + 805306883 + 201728 + 1795 + -2008903680 + 4349952 + 0 + 65543 + 16778516 + 7 + 10109584 + 16992 + 2310 + 59310080 + 3145730 + 50332436 + 7 + 59392726 + 17066 + 0 + 256 + 117506053 + 335544320 + 117480002 + -704643006 + -1442840567 + 100895488 + 12288 + 33751043 + 335544320 + 117673025 + -1342177214 + -2046820352 + 1 + 459008 + 101974016 + 458906 + 1102053376 + 1116078080 + 285671424 + 66445 + 48 + 131840 + 51642368 + 459662 + 1117782016 + 1132527616 + 0 + 16779009 + 398336 + 1792 + -1706909696 + 4423936 + 1115904 + 515 + -1895825408 + 805306883 + 201728 + 1795 + -1874681856 + 4410368 + 0 + 65543 + 16778516 + 7 + 10109600 + 17228 + 2310 + 59834368 + 3145730 + 50332436 + 7 + 59916844 + 16940 + 0 + 256 + 117506054 + 335544320 + 117480002 + 738197570 + 738197521 + 117440512 + 67343104 + 12288 + 33751043 + 335544320 + 117675074 + -1879048126 + -1879048192 + 1 + 459008 + 85196800 + 458906 + 1116733440 + 1116733440 + 151389077 + 48 + 131840 + 51642368 + 459670 + 1140129792 + 1133379584 + 0 + 16779009 + 332800 + 1792 + -1706822400 + 4427264 + 591363 + -1761607680 + 805306883 + 201728 + 1795 + -1740362688 + 4453632 + 0 + 65543 + 16778772 + 7 + 10109996 + 1073759221 + 4359 + 1 + 60358656 + 3145730 + 50332436 + 7 + 60441554 + 17294 + 0 + 256 + 117506053 + 335544320 + 117480003 + -771751869 + -1912602615 + 100899584 + 12288 + 33751043 + 335544320 + 117677124 + 331350083 + -184549376 + 1 + 459008 + 85196800 + 458906 + 1142145024 + 1140129792 + 151389085 + 48 + 131840 + 51642368 + 459678 + 1113063424 + 1113587712 + 0 + 16779009 + 398336 + 1792 + -1706928128 + 4349952 + 1115904 + 259 + -1627389952 + 805306883 + 201728 + 1795 + -1606244864 + 4365312 + 0 + 65543 + 16778772 + 7 + 10109606 + 17052 + 4359 + 1 + 60882944 + 3145730 + 50332436 + 7 + 60965464 + 16992 + 0 + 256 + 117506054 + 335544320 + 117480002 + 1476395074 + 1610612753 + 117440512 + 17015552 + 12288 + 33751043 + 335544320 + 117679170 + -1509949374 + -1677721600 + 1 + 459008 + 101974016 + 458906 + 1118175232 + 1117519872 + 285671424 + 66469 + 48 + 131840 + 51642368 + 459686 + 1113063424 + 1113587712 + 0 + 16779009 + 398336 + 1792 + -1706928128 + 4349952 + 1115904 + 259 + -1493172224 + 805306883 + 201728 + 1795 + -1472027136 + 4365312 + 0 + 65543 + 16778772 + 7 + 10109606 + 17052 + 4359 + 1 + 61407232 + 3145730 + 50332436 + 7 + 61490129 + 17299 + 0 + 256 + 117506055 + 469762048 + 251697731 + -788529085 + -1828716544 + 106257 + 117440512 + 17017600 + 12288 + 33751043 + 335544320 + 117681220 + 549453891 + -184549376 + 1 + 459008 + 101974016 + 459195 + 1142996992 + 1140129792 + 285671424 + 66477 + 48 + 131840 + 51642368 + 459694 + 1120010240 + 1115684864 + 0 + 16779009 + 400384 + 34560 + -1706900992 + 4358144 + 0 + 252248832 + 2051 + -1358953981 + 201728 + 1795 + -1337816064 + 4358144 + 0 + 65543 + 16778780 + 135 + 10109580 + 17024 + 0 + 985347 + 8 + 61931522 + 50332436 + 7 + 62014092 + 17024 + 0 + 256 + 117506054 + 469762048 + -2030003646 + -1946156990 + -2147483648 + 3849 + 50331648 + 134460160 + 33751043 + 335544320 + 117683268 + 318767171 + -1275068416 + 1 + 459008 + 68419584 + 458906 + 1142095872 + 1135869952 + 16909237 + 131840 + 51642368 + 459702 + 1132593152 + 1127088128 + 0 + 16779009 + 332800 + 1795 + -1220312576 + 4402688 + 590592 + 259 + -1207959037 + 201728 + 1795 + -1186758144 + 4428032 + 0 + 65543 + 16778516 + 7 + 10109826 + 17297 + 2307 + 1 + 62521346 + 50332436 + 7 + 62604247 + 17367 + 0 + 256 + 117506052 + 335544320 + 117480003 + -687865789 + -687865855 + 33799168 + 33751043 + 335544320 + 117685571 + -1451229117 + -1426063360 + 1 + 459008 + 102498304 + 1507482 + 1138851840 + 1138982912 + 416 + 151191552 + 66494 + 131840 + 51642368 + 459711 + 1135181824 + 1135280128 + 0 + 16779009 + 400384 + 5891 + -1069293184 + 4449152 + 1 + -1610022144 + 259 + -1056964093 + 201728 + 1795 + -1035753088 + 4434688 + 0 + 65543 + 16778780 + 23 + 63128545 + -2147466269 + -2147483648 + 27265283 + 1 + 63176706 + 50332436 + 7 + 63259561 + -2147466325 + 0 + 256 + 117506054 + 469762048 + 386123331 + -511705021 + -478150656 + 106505 + 50331648 + 17024768 + 33751043 + 335544320 + 117688387 + -1451229117 + -1426063360 + 1 + 459008 + 102498304 + 1508288 + 1138851840 + 1138982912 + 416 + 151191552 + 66505 + 131840 + 51642368 + 459722 + 1140162560 + 1136230400 + 0 + 16779009 + 400384 + 5888 + -1706810496 + 4454144 + 1 + -1610022144 + 259 + -889191933 + 201728 + 1795 + -867958464 + 4438400 + 0 + 65543 + 16778780 + 23 + 10109996 + 1073759223 + 0 + 27265283 + 1 + 63766530 + 50332436 + 7 + 63849484 + -1073724458 + 0 + 256 + 117506053 + 335544320 + 117480004 + 213909571 + -704643063 + 50331648 + 134467328 + 33751043 + 335544320 + 117690435 + -570425277 + -536870912 + 1 + 459008 + 68419584 + 458906 + 1138622464 + 1138753536 + 16909265 + 131840 + 51642368 + 459730 + 1135050752 + 1137737728 + 0 + 16779009 + 400384 + 5888 + -1706828032 + 4459264 + 1 + -1593244928 + 2051 + -754974205 + 201728 + 1795 + -733749120 + 4446464 + 0 + 65543 + 16778516 + 7 + 10109920 + -2147466279 + 2307 + 1 + 64290818 + 50332436 + 7 + 64373729 + -2147466269 + -2147483648 + 256 + 117506052 + 335544320 + 117480003 + -511705021 + -478150655 + 33806080 + 33751043 + 335544320 + 117692484 + 297795651 + 486539264 + 1 + 459008 + 85196800 + 458906 + 1142013952 + 1125974016 + 151191552 + 66521 + 131840 + 51642368 + 459738 + 1138917376 + 1138196480 + 0 + 16779009 + 332800 + 1792 + -1706827136 + 4446080 + 590592 + 259 + -620756477 + 201728 + 1795 + -599522496 + 4430336 + 0 + 65543 + 16778780 + 23 + 10110011 + -2147466276 + 0 + 27396355 + 1 + 64815106 + 50332436 + 7 + 64898051 + 1073759130 + 0 + 256 + 117506054 + 469762048 + 385915460 + 998244419 + -603979776 + 107017 + 50331648 + 17030912 + 33751043 + 335544320 + 117694531 + 2013265987 + 301989888 + 1 + 459008 + 101974016 + 458906 + 1131937792 + 1125253120 + 285671424 + 66529 + 48 + 131840 + 51642368 + 459746 + 1131937792 + 1125253120 + 0 + 16779009 + 398336 + 1792 + -1706854400 + 4395520 + 1115904 + 259 + -486539264 + 805306883 + 201728 + 1795 + -465337600 + 4426752 + 0 + 65543 + 16778516 + 7 + 10109827 + 17292 + 2307 + 1 + 65339394 + 50332436 + 7 + 65422262 + 17064 + 0 + 256 + 117506054 + 335544320 + 117480003 + -1241513918 + -1476394991 + 117440512 + 17032960 + 12288 + 33751043 + 335544320 + 117696579 + -2097151933 + -1946157056 + 1 + 459008 + 85196800 + 458906 + 1132658688 + 1133248512 + 151191552 + 66537 + 131840 + 51642368 + 459754 + 1132527616 + 1132593152 + 0 + 16779009 + 332800 + 1792 + -1706852096 + 4424192 + 590592 + 259 + -352321021 + 201728 + 1795 + -331131648 + 4425472 + 0 + 65543 + 16779036 + 23 + 10109710 + 17204 + 0 + 27463943 + 1 + 65863680 + 3145730 + 50332436 + 7 + 65946499 + 17297 + 0 + 256 + 117506053 + 335544320 + 117480003 + -2097151933 + -1862270967 + 50331648 + 17035008 + 33751043 + 335544320 + 117698627 + 2080374851 + 704643072 + 1 + 459008 + 101974016 + 458906 + 1132199936 + 1126825984 + 285671424 + 66545 + 48 + 131840 + 51642368 + 459762 + 1131741184 + 1124990976 + 0 + 16779009 + 398336 + 1792 + -1706855168 + 4394496 + 1115904 + 259 + -218103808 + 805306883 + 201728 + 1795 + -196902656 + 4407808 + 0 + 65543 + 16778516 + 7 + 10109825 + 17218 + 2307 + 1 + 66387970 + 50332436 + 7 + 66470787 + 17292 + 0 + 256 + 117506053 + 335544320 + 117480003 + -2097151933 + -1946157047 + 50331648 + 17037056 + 33751043 + 335544320 + 117700675 + -2097151933 + -1946157056 + 1 + 459008 + 85196800 + 458906 + 1132658688 + 1133248512 + 151191552 + 66553 + 131840 + 51642368 + 459770 + 1132593152 + 1133576192 + 0 + 16779009 + 332800 + 1792 + -1706851840 + 4428032 + 590592 + 259 + -83885565 + 201728 + 1795 + -62684416 + 4426752 + 0 + 65543 + 16778516 + 7 + 10109827 + 17292 + 2307 + 1 + 66912258 + 50332436 + 7 + 66995075 + 17292 + 0 + 256 + 117506053 + 335544320 + 117480003 + -2097151933 + -1946157047 + 50331648 + 17039104 + 33751043 + 335544320 + 117702723 + -2113929149 + -1862270976 + 1 + 459008 + 85196800 + 458906 + 1135083520 + 1133576192 + 151191552 + 66561 + 131840 + 51642368 + 459778 + 1138163712 + 1138163712 + 0 + 16779009 + 332800 + 1792 + -1706830080 + 4445952 + 590592 + 260 + 50332163 + 201728 + 1796 + 71530496 + 4395520 + 0 + 65543 + 16778772 + 7 + 10109816 + 17170 + 4359 + 1 + 67436544 + 3145730 + 50332436 + 7 + 67519491 + 1073759130 + 0 + 256 + 117506053 + 335544320 + 117480004 + 16777283 + -1761607671 + 50331648 + 17041152 + 33751043 + 335544320 + 117704771 + -2113929149 + -1946157056 + 1 + 459008 + 85196800 + 458906 + 1132593152 + 1133248512 + 151191552 + 66569 + 131840 + 51642368 + 459786 + 1138098176 + 1138819072 + 0 + 16779009 + 332800 + 1792 + -1706830336 + 4448512 + 590592 + 260 + 184549891 + 201728 + 1796 + 205750784 + 4414464 + 0 + 65543 + 16778516 + 7 + 10109826 + 17244 + 2307 + 1 + 67960834 + 50332436 + 7 + 68043735 + 17320 + 0 + 256 + 117506053 + 335544320 + 117480003 + -687865789 + -1476394999 + 50331648 + 17043200 + 33751044 + 469762048 + 251924547 + -905969597 + 872415232 + 18944 + 1 + 262400 + 119275520 + 8847433 + 1137311744 + 1127481344 + 15 + 286654258 + 842154240 + 0 + 335544322 + 50332436 + 7 + 68240330 + -2147466444 + 0 + 256 + 67174407 + 469762048 + -2030024381 + -897580989 + 872415232 + 3857 + 369046066 + 843157504 + 81 + 515 + 269312 + 3844 + 306432512 + 4404224 + 0 + 1241513984 + 65540 + 16779036 + 135 + 4801482 + 17204 + 0 + 987413 + -13487566 + 1090519040 + 4352 + 131840 + 51642368 + 459795 + 1109393408 + 1109393408 + 0 + 16779009 + 465920 + 34560 + -1706942464 + 4333568 + 0 + 252774144 + 2052 + 335544320 + 805306883 + 201728 + 1796 + 356655104 + 4333568 + 0 + 65543 + 16779036 + 135 + 10109472 + 16928 + 0 + 987399 + 8 + 68550656 + 3145730 + 50332436 + 7 + 68633120 + 16928 + 0 + 256 + 117506055 + 469762048 + -2030003646 + 536870978 + 536870912 + 3857 + 117440512 + 134486016 + 12288 + 33751043 + 335544320 + 117709122 + 536870978 + 536870912 + 1 + 459008 + 119275520 + 8847514 + 1109393408 + 1109393408 + 15 + 285671424 + 525338 + 48 + 131840 + 51642368 + 459803 + 1137344512 + 1127481344 + 0 + 16778241 + 465920 + 34560 + 1229179520 + 4404224 + 0 + 252777983 + 842150465 + -1879048192 + 5505024 + 33751044 + 469762048 + 251927619 + -905969597 + 872415232 + 18944 + 1 + 262400 + 119275520 + 8847433 + 1137311744 + 1127481344 + 15 + 286654258 + 842154304 + 0 + 335544322 + 117441300 + 7 + 69026256 + 16848 + 0 + 257 + 1778450441 + 603979777 + -2029950143 + -805306303 + -805306368 + 1792 + 70666 + 197062 + 34865409 + 22594 + 33554688 + 1024 + 1281 + 1845493760 + 0 + 983040 + 1310720 + 4096 + 5377 + 17 + 22 + 0 + 301989888 + 704708608 + 0 + 132864 + 51642368 + 459806 + 1104150528 + 1104150528 + 0 + 16869889 + 599040 + 100097 + 1799475200 + 4313088 + 0 + 117440513 + 336199683 + 29753879 + 16842752 + 1480720896 + 16777216 + 67108864 + 83979776 + 0 + 15 + 20 + 0 + 268435456 + 352387072 + 1114112 + 1441792 + 4608 + 10753 + 0 + 0 + + + + + + text_Button + 240.000000 + 20.000000 + 25.000000,1.000000,0.000000 + 5 + 0xff323232 + 0xff0f0f0f + 11.000000 + 4112 + + + + + text_Button1 + 240.000000 + 20.000000 + 24.000000,0.000000,0.000000 + 5 + false + 0xff323232 + 0xff0f0f0f + 11.000000 + 4112 + + + + + TickBox_Norm + 18.000000 + 18.000000 + 2.000000,1.000000,0.000000 + 16 + Graphics\Tickbox_Norm.png + 48 + + + + + TickBox_Over + 18.000000 + 18.000000 + 2.000000,1.000000,0.000000 + false + 16 + Graphics\Tickbox_Over.png + 48 + + + + + Tick + 28.000000 + 24.000000 + 0.000000,-1.000000,0.000000 + false + Graphics\Tick.png + 48 + + + + + XuiSoundXACT + 15.000000 + 14.000000 + 70.000000,21.000000,0.000000 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_DLCMain.xui b/Minecraft.Client/Common/Media/xuiscene_DLCMain.xui index 94121083..bf5303dd 100644 --- a/Minecraft.Client/Common/Media/xuiscene_DLCMain.xui +++ b/Minecraft.Client/Common/Media/xuiscene_DLCMain.xui @@ -1,1092 +1,250 @@ - -1280.000000 -720.000000 - - - -DLCMain -620.000000 -440.000000 -330.000092,194.000000,0.000000 -CScene_DLCMain -XuiScene -OffersList - - - -XuiOffersList -576.000000 -390.000000 -22.000032,24.000000,0.000000 -CXuiCtrl4JList -XuiListRecessedDLC - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - - -Timer -182.000000 -168.000000 -208.000000,134.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -true -MenuTitleLogo - - + + 1280.000000 + 720.000000 + + + + DLCMain + 620.000000 + 440.000000 + 330.000092,194.000000,0.000000 + CScene_DLCMain + XuiScene + OffersList + + + + XuiOffersList + 576.000000 + 390.000000 + 22.000032,24.000000,0.000000 + CXuiCtrl4JList + XuiListRecessedDLC + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + + Timer + 182.000000 + 168.000000 + 208.000000,134.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_DLCMain_480.xui b/Minecraft.Client/Common/Media/xuiscene_DLCMain_480.xui index 2e7e98f5..35d30db6 100644 --- a/Minecraft.Client/Common/Media/xuiscene_DLCMain_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_DLCMain_480.xui @@ -1,1021 +1,189 @@ - -640.000000 -480.000000 - - - -DLCMain -400.000000 -290.000000 -120.000046,124.000046,0.000000 -CScene_DLCMain -GraphicPanel -OffersList - - - -XuiOffersList -376.000000 -261.000000 -12.000000,11.999996,0.000000 -CXuiCtrl4JList -XuiListRecessedDLCThin - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - - -Timer -184.000000 -170.000000 -150.000000,104.639999,0.000000 -0.500000,0.500000,1.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 480.000000 + + + + DLCMain + 400.000000 + 290.000000 + 120.000046,124.000046,0.000000 + CScene_DLCMain + GraphicPanel + OffersList + + + + XuiOffersList + 376.000000 + 261.000000 + 12.000000,11.999996,0.000000 + CXuiCtrl4JList + XuiListRecessedDLCThin + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + + Timer + 184.000000 + 170.000000 + 150.000000,104.639999,0.000000 + 0.500000,0.500000,1.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_DLCOffers.xui b/Minecraft.Client/Common/Media/xuiscene_DLCOffers.xui index 6f08eefb..f341dc56 100644 --- a/Minecraft.Client/Common/Media/xuiscene_DLCOffers.xui +++ b/Minecraft.Client/Common/Media/xuiscene_DLCOffers.xui @@ -1,1355 +1,513 @@ - -1280.000000 -720.000000 - - - -DLCOffers -960.000000 -448.000000 -160.000000,196.000000,0.000000 -CScene_DLCOffers -XuiScene -OffersList - - - -XuiDLCPriceTag -440.000000 -36.000000 -494.000000,224.000000,0.000000 -DLC_PriceTag - - - - -XuiDLCBackground -440.000000 -196.000000 -494.000000,28.000000,0.000000 -DLCOffersOfferBackground - - - - -XuiDLCBanner -440.000000 -196.000000 -494.000000,28.000000,0.000000 -CXuiCtrl4JIcon -ItemBanner - - - - -XuiOffersList -456.000000 -400.000000 -22.000032,25.999996,0.000000 -CXuiCtrl4JList -XuiListRecessedDLC -XuiCheckboxAvatar -XuiCheckboxThemes - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_DLC_L - - - - - -XuiHTMLSellText -440.000000 -130.000000 -494.000000,260.000000,0.000000 -false -XuiHtmlControl - - - - -Timer -182.000000 -168.000000 -150.000031,134.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -true -MenuTitleLogo - - + + 1280.000000 + 720.000000 + + + + DLCOffers + 960.000000 + 448.000000 + 160.000000,196.000000,0.000000 + CScene_DLCOffers + XuiScene + OffersList + + + + XuiDLCPriceTag + 440.000000 + 36.000000 + 494.000000,224.000000,0.000000 + DLC_PriceTag + + + + + XuiDLCBackground + 440.000000 + 196.000000 + 494.000000,28.000000,0.000000 + DLCOffersOfferBackground + + + + + XuiDLCBanner + 440.000000 + 196.000000 + 494.000000,28.000000,0.000000 + CXuiCtrl4JIcon + ItemBanner + + + + + XuiOffersList + 456.000000 + 400.000000 + 22.000032,25.999996,0.000000 + CXuiCtrl4JList + XuiListRecessedDLC + XuiCheckboxAvatar + XuiCheckboxThemes + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_DLC_L + + + + + + XuiHTMLSellText + 440.000000 + 130.000000 + 494.000000,260.000000,0.000000 + false + XuiHtmlControl + + + + + Timer + 182.000000 + 168.000000 + 150.000031,134.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_DLCOffers_480.xui b/Minecraft.Client/Common/Media/xuiscene_DLCOffers_480.xui index 8ee73a65..339e0a36 100644 --- a/Minecraft.Client/Common/Media/xuiscene_DLCOffers_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_DLCOffers_480.xui @@ -1,1211 +1,341 @@ - -640.000000 -480.000000 - - - -DLCOffers -540.000000 -286.000000 -50.000000,124.000046,0.000000 -CScene_DLCOffers -GraphicPanel -OffersList - - - -XuiOffersList -284.000000 -264.000000 -10.000004,9.999996,0.000000 -CXuiCtrl4JList -XuiListRecessedDLCThin - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_DLC_LThin - - - - - -XuiHTMLSellText -226.000000 -102.000000 -300.000000,152.000000,0.000000 -false -XuiHtmlControl_Small - - - - -Timer -184.000000 -170.000000 -102.000000,104.000000,0.000000 -0.500000,0.500000,1.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -XuiDLCBackground -226.000000 -96.000000 -300.000000,22.000000,0.000000 -DLCOffersOfferBackground - - - - -XuiDLCPriceTag -226.000000 -26.000000 -300.000000,118.000000,0.000000 -DLC_PriceTag480 - - - - -XuiDLCBanner -226.000000 -96.000000 -300.000000,22.000000,0.000000 -CXuiCtrl4JIcon -ItemBanner480 - - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -true -MenuTitleLogo - - + + 640.000000 + 480.000000 + + + + DLCOffers + 540.000000 + 286.000000 + 50.000000,124.000046,0.000000 + CScene_DLCOffers + GraphicPanel + OffersList + + + + XuiOffersList + 284.000000 + 264.000000 + 10.000004,9.999996,0.000000 + CXuiCtrl4JList + XuiListRecessedDLCThin + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_DLC_LThin + + + + + + XuiHTMLSellText + 226.000000 + 102.000000 + 300.000000,152.000000,0.000000 + false + XuiHtmlControl_Small + + + + + Timer + 184.000000 + 170.000000 + 102.000000,104.000000,0.000000 + 0.500000,0.500000,1.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage.xui b/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage.xui index 19c64d36..e1d269a3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage.xui +++ b/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage.xui @@ -1,36 +1,26 @@ - -1280.000000 -720.000000 - - - -NewUpdate -800.000000 -430.000000 -240.000046,200.000000,0.000000 -CScene_NewUpdateMessage -XuiScene -OffersList - - - -XuiHTMLMessage -744.000000 -364.000000 -28.000034,24.000000,0.000000 -XuiHtmlControl - - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -true -MenuTitleLogo - - + + 1280.000000 + 720.000000 + + + + NewUpdate + 800.000000 + 430.000000 + 240.000046,200.000000,0.000000 + CScene_NewUpdateMessage + XuiScene + OffersList + + + + XuiHTMLMessage + 744.000000 + 364.000000 + 28.000034,24.000000,0.000000 + XuiHtmlControl + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage_480.xui b/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage_480.xui index 6c6b5ba3..8e8ec3ac 100644 --- a/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_NewUpdateMessage_480.xui @@ -1,37 +1,27 @@ - -640.000000 -480.000000 - - - -NewUpdate -500.000000 -286.000000 -70.000000,124.000046,0.000000 -CScene_NewUpdateMessage -GraphicPanel -OffersList - - - -XuiHTMLMessage -470.000000 -239.000000 -16.000000,20.000000,0.000000 -false -XuiHtmlControl - - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -true -MenuTitleLogo - - + + 640.000000 + 480.000000 + + + + NewUpdate + 500.000000 + 286.000000 + 70.000000,124.000046,0.000000 + CScene_NewUpdateMessage + GraphicPanel + OffersList + + + + XuiHTMLMessage + 470.000000 + 239.000000 + 16.000000,20.000000,0.000000 + false + XuiHtmlControl + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_anvil.xui b/Minecraft.Client/Common/Media/xuiscene_anvil.xui index 1dce7ab1..397842b8 100644 --- a/Minecraft.Client/Common/Media/xuiscene_anvil.xui +++ b/Minecraft.Client/Common/Media/xuiscene_anvil.xui @@ -1,4396 +1,4389 @@ - -1280.000000 -720.000000 - - - -XuiSceneAnvil -1280.000000 -720.000000 -CXuiSceneAnvil -XuiBlankScene -Pointer - - - -Group -430.000000 -430.000000 -435.000000,91.000000,0.000000 -15 -XuiScene -Pointer - - - -AnvilText -264.000000 -34.000000 -135.000031,18.000000,0.000000 -LabelContainerSceneCentre - - - - -Ingredient -54.000000 -54.000000 -42.000000,110.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical54 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -Ingredient2 -54.000000 -54.000000 -176.000000,110.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical54 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -Result -54.000000 -54.000000 -342.000000,110.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical54 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -AnvilTextInput -254.000000 -137.000000,59.000000,0.000000 -CXuiCtrl4JEdit - - - - -LabelAffordable -320.000000 -24.000000 -82.000000,170.000000,0.000000 -XuiLabelAffordable - - - - -LabelExpensive -320.000000 -27.000000 -82.000000,170.000000,0.000000 -XuiLabelExpensive - - - - -Inventory -382.000000 -150.000000 -24.000000,225.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -24.000000,364.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -375.000000 -32.000000 -26.000000,194.000000,0.000000 -LabelContainerSceneLeft - - - - -AnvilHammer -75.000000 -75.000000 -36.000000,28.000000,0.000000 -3 -AnvilHammer - - - - -AnvilPlus -39.000000 -39.000000 -116.000000,116.000000,0.000000 -3 -AnvilPlus - - - - -AnvilArrow -72.000000 -48.000000 -250.000000,112.000000,0.000000 -ArrowProgressState - - - - -AnvilCross -39.000000 -39.000000 -268.000000,118.000000,0.000000 -3 -AnvilCross - - - - -Pointer -42.000000 -42.000000 --185.000000,-83.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -435.000000,91.000000,0.000000 - - - -0 -435.000000,91.000000,0.000000 - - - -2 -100 --100 -50 -435.000000,91.000000,0.000000 - - - -0 -160.000000,91.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,91.000000,0.000000 - - - -0 -435.000000,91.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneAnvil + 1280.000000 + 720.000000 + CXuiSceneAnvil + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 18 + + + + easein + 18 + + + + none + 0 + + + + + + Group + 430.000000 + 430.000000 + 435.000000,91.000000,0.000000 + 15 + XuiScene + Pointer + + + + AnvilText + 264.000000 + 34.000000 + 135.000031,18.000000,0.000000 + LabelContainerSceneCentre + + + + + Ingredient + 54.000000 + 54.000000 + 42.000000,110.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical54 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + + Ingredient2 + 54.000000 + 54.000000 + 176.000000,110.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical54 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + + Result + 54.000000 + 54.000000 + 342.000000,110.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical54 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + + AnvilTextInput + 254.000000 + 137.000000,59.000000,0.000000 + CXuiCtrl4JEdit + + + + + LabelAffordable + 320.000000 + 24.000000 + 82.000000,170.000000,0.000000 + XuiLabelAffordable + + + + + LabelExpensive + 320.000000 + 27.000000 + 82.000000,170.000000,0.000000 + XuiLabelExpensive + + + + + Inventory + 382.000000 + 150.000000 + 24.000000,225.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 24.000000,364.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 375.000000 + 32.000000 + 26.000000,194.000000,0.000000 + LabelContainerSceneLeft + + + + + AnvilHammer + 75.000000 + 75.000000 + 36.000000,28.000000,0.000000 + 3 + AnvilHammer + + + + + AnvilPlus + 39.000000 + 39.000000 + 116.000000,116.000000,0.000000 + 3 + AnvilPlus + + + + + AnvilArrow + 72.000000 + 48.000000 + 250.000000,112.000000,0.000000 + ArrowProgressState + + + + + AnvilCross + 39.000000 + 39.000000 + 268.000000,118.000000,0.000000 + 3 + AnvilCross + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-83.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_anvil_480.xui b/Minecraft.Client/Common/Media/xuiscene_anvil_480.xui index b9f4d23e..6cc49be3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_anvil_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_anvil_480.xui @@ -1,4907 +1,4900 @@ - -640.000000 -480.000000 - - - -XuiSceneAnvil -640.000000 -480.000000 -CXuiSceneAnvil -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -AnvilText -156.000000 -26.000000 -75.500008,12.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -Ingredient -32.000000 -32.000000 -21.000000,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Ingredient2 -32.000000 -32.000000 -103.999985,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Result -32.000000 -32.000000 -201.000000,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -AnvilTextInput -152.000000 -25.000000 -78.000000,38.000008,0.000000 -CXuiCtrl4JEdit -XuiEditSmall - - - - -LabelAffordable -175.000000 -18.000000 -70.000000,118.000000,0.000000 -XuiLabelAffordableSmall - - - - -LabelExpensive -175.000000 -18.000000 -70.000000,118.000000,0.000000 -XuiLabelExpensiveSmall - - - - -Inventory -234.000000 -78.000000 -13.000000,162.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -25.000000 -12.000000,140.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -AnvilHammer -45.000000 -45.000000 -15.000000,22.000000,0.000000 -AnvilHammer - - - - -AnvilPlus -25.000000 -25.000000 -68.000000,84.000000,0.000000 -3 -AnvilPlus - - - - -AnvilArrow -32.000000 -32.000000 -146.000000,80.000000,0.000000 -3 -ArrowProgressStateSmall - - - - -AnvilCross -30.000000 -148.000000,80.000000,0.000000 -3 -AnvilCross - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -33.750000,96.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneAnvil + 640.000000 + 480.000000 + CXuiSceneAnvil + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 18 + + + + easein + 19 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + AnvilText + 156.000000 + 26.000000 + 75.500008,12.000000,0.000000 + LabelContainerSceneCentreSmall + + + + + Ingredient + 32.000000 + 32.000000 + 21.000000,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Ingredient2 + 32.000000 + 32.000000 + 103.999985,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Result + 32.000000 + 32.000000 + 201.000000,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + AnvilTextInput + 152.000000 + 25.000000 + 78.000000,38.000008,0.000000 + CXuiCtrl4JEdit + XuiEditSmall + + + + + LabelAffordable + 175.000000 + 18.000000 + 70.000000,118.000000,0.000000 + XuiLabelAffordableSmall + + + + + LabelExpensive + 175.000000 + 18.000000 + 70.000000,118.000000,0.000000 + XuiLabelExpensiveSmall + + + + + Inventory + 234.000000 + 78.000000 + 13.000000,162.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 25.000000 + 12.000000,140.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + AnvilHammer + 45.000000 + 45.000000 + 15.000000,22.000000,0.000000 + AnvilHammer + + + + + AnvilPlus + 25.000000 + 25.000000 + 68.000000,84.000000,0.000000 + 3 + AnvilPlus + + + + + AnvilArrow + 32.000000 + 32.000000 + 146.000000,80.000000,0.000000 + 3 + ArrowProgressStateSmall + + + + + AnvilCross + 30.000000 + 148.000000,80.000000,0.000000 + 3 + AnvilCross + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_anvil_small.xui b/Minecraft.Client/Common/Media/xuiscene_anvil_small.xui index be78ae7c..97a953a5 100644 --- a/Minecraft.Client/Common/Media/xuiscene_anvil_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_anvil_small.xui @@ -1,5183 +1,5176 @@ - -640.000000 -360.000000 - - - -XuiSceneAnvil -640.000000 -360.000000 -CXuiSceneAnvil -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,2.000000,0.000000 -15 -GraphicPanel -Pointer - - - -AnvilText -156.000000 -26.000000 -75.500008,12.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -Ingredient -32.000000 -32.000000 -21.000000,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Ingredient2 -32.000000 -32.000000 -103.999985,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Result -32.000000 -32.000000 -201.000000,80.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -AnvilTextInput -152.000000 -25.000000 -78.000000,38.000008,0.000000 -CXuiCtrl4JEdit -XuiEditSmall - - - - -LabelAffordable -175.000000 -18.000000 -70.000000,118.000000,0.000000 -XuiLabelAffordableSmall - - - - -LabelExpensive -175.000000 -18.000000 -70.000000,118.000000,0.000000 -XuiLabelExpensiveSmall - - - - -Inventory -234.000000 -78.000000 -13.000000,162.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -25.000000 -12.000000,140.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -AnvilHammer -45.000000 -45.000000 -15.000000,22.000000,0.000000 -AnvilHammer - - - - -AnvilPlus -25.000000 -25.000000 -68.000000,84.000000,0.000000 -3 -AnvilPlus - - - - -AnvilArrow -32.000000 -32.000000 -146.000000,80.000000,0.000000 -3 -ArrowProgressStateSmall - - - - -AnvilCross -30.000000 -148.000000,80.000000,0.000000 -3 -AnvilCross - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,2.000000,0.000000 - - - -0 -33.750000,2.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneAnvil + 640.000000 + 360.000000 + CXuiSceneAnvil + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 18 + + + + easein + 19 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,2.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + AnvilText + 156.000000 + 26.000000 + 75.500008,12.000000,0.000000 + LabelContainerSceneCentreSmall + + + + + Ingredient + 32.000000 + 32.000000 + 21.000000,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Ingredient2 + 32.000000 + 32.000000 + 103.999985,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Result + 32.000000 + 32.000000 + 201.000000,80.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + AnvilTextInput + 152.000000 + 25.000000 + 78.000000,38.000008,0.000000 + CXuiCtrl4JEdit + XuiEditSmall + + + + + LabelAffordable + 175.000000 + 18.000000 + 70.000000,118.000000,0.000000 + XuiLabelAffordableSmall + + + + + LabelExpensive + 175.000000 + 18.000000 + 70.000000,118.000000,0.000000 + XuiLabelExpensiveSmall + + + + + Inventory + 234.000000 + 78.000000 + 13.000000,162.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 25.000000 + 12.000000,140.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + AnvilHammer + 45.000000 + 45.000000 + 15.000000,22.000000,0.000000 + AnvilHammer + + + + + AnvilPlus + 25.000000 + 25.000000 + 68.000000,84.000000,0.000000 + 3 + AnvilPlus + + + + + AnvilArrow + 32.000000 + 32.000000 + 146.000000,80.000000,0.000000 + 3 + ArrowProgressStateSmall + + + + + AnvilCross + 30.000000 + 148.000000,80.000000,0.000000 + 3 + AnvilCross + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_base.xui b/Minecraft.Client/Common/Media/xuiscene_base.xui index 851e29ed..f35ecec0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_base.xui +++ b/Minecraft.Client/Common/Media/xuiscene_base.xui @@ -1,2113 +1,1927 @@ - -1280.000000 -720.000000 - - - -XuiBaseScene -1280.000000 -720.000000 -CXuiSceneBase -XuiBlankScene -FadeIn - - - -BasePlayer3 -1280.000000 -720.000000 -15 -true -XuiBlankScene - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -64.000000,648.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -64.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -XuiDarkOverlay -1280.000000 -720.000000 -false -XuiDarkOverlay - - - - -Background -1280.000000 -720.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiSceneChatRoot -1280.000000 -720.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -1280.000000 -720.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -40.000000 -15 -false -RStick_Button -true -22532 - - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -TooltipsSmall -200.000000 -28.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -28.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -28.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -28.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -28.000000 -15 -false -RTriggerSmall -true -22535 - - - - -LTrigger -200.000000 -28.000000 -15 -false -LTriggerSmall -true -22534 - - - - -YButton -200.000000 -28.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -28.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -28.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -28.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -440.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -1000.000000 -51.000000 -140.000000,36.000000,0.000000 -false - - - -TitleText -1000.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -334.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress1 -200 - - - - -ProgressBar2 -666.000000 -15.000000 -167.000000,36.000000,0.000000 -BossHealthProgress2 -200 - - - - -ProgressBar3 -940.000000 -15.000000 -30.000031,36.000000,0.000000 -BossHealthProgress3 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -416.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -300.000031,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiGamertag -290.000000 -926.000000,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowedRight - - - - - -BasePlayer2 -1280.000000 -720.000000 -15 -true -XuiBlankScene - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -64.000000,648.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -64.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -XuiDarkOverlay -1280.000000 -720.000000 -false -XuiDarkOverlay - - - - -Background -1280.000000 -720.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiSceneChatRoot -1280.000000 -720.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -1280.000000 -720.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -40.000000 -15 -false -RStick_Button -true -22532 - - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -TooltipsSmall -200.000000 -28.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -28.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -28.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -28.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -28.000000 -15 -false -RTriggerSmall -true -22535 - - - - -LTrigger -200.000000 -28.000000 -15 -false -LTriggerSmall -true -22534 - - - - -YButton -200.000000 -28.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -28.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -28.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -28.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -440.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -1000.000000 -51.000000 -140.000000,36.000000,0.000000 -false - - - -TitleText -1000.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -334.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress1 -200 - - - - -ProgressBar2 -666.000000 -15.000000 -167.000000,36.000000,0.000000 -BossHealthProgress2 -200 - - - - -ProgressBar3 -940.000000 -15.000000 -30.000031,36.000000,0.000000 -BossHealthProgress3 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -416.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -300.000031,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiGamertag -290.000000 -926.000000,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowedRight - - - - - -BasePlayer1 -1280.000000 -720.000000 -15 -true -XuiBlankScene - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -64.000000,648.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -64.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -XuiDarkOverlay -1280.000000 -720.000000 -false -XuiDarkOverlay - - - - -Background -1280.000000 -720.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiSceneChatRoot -1280.000000 -720.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -1280.000000 -720.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -40.000000 -15 -false -RStick_Button -true -22532 - - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -TooltipsSmall -200.000000 -28.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -28.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -28.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -28.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -28.000000 -15 -false -RTriggerSmall -true -22535 - - - - -LTrigger -200.000000 -28.000000 -15 -false -LTriggerSmall -true -22534 - - - - -YButton -200.000000 -28.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -28.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -28.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -28.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -440.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -1000.000000 -51.000000 -140.000000,36.000000,0.000000 -false - - - -TitleText -1000.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -334.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress1 -200 - - - - -ProgressBar2 -666.000000 -15.000000 -167.000000,36.000000,0.000000 -BossHealthProgress2 -200 - - - - -ProgressBar3 -940.000000 -15.000000 -30.000031,36.000000,0.000000 -BossHealthProgress3 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -416.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -300.000031,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiGamertag -290.000000 -926.000000,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowedRight - - - - - -BasePlayer0 -1280.000000 -720.000000 -15 -true -XuiBlankScene - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -64.000000,648.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -64.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -XuiDarkOverlay -1280.000000 -720.000000 -false -XuiDarkOverlay - - - - -Background -1280.000000 -720.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiSceneChatRoot -1280.000000 -720.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -1280.000000 -720.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -40.000000 -15 -false -RStick_Button -true -22532 - - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -TooltipsSmall -200.000000 -28.000000 -0.000000,0.000061,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -28.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -28.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -28.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -28.000000 -15 -false -RTriggerSmall -true -22535 - - - - -LTrigger -200.000000 -28.000000 -15 -false -LTriggerSmall -true -22534 - - - - -YButton -200.000000 -28.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -28.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -28.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -28.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -440.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -1000.000000 -51.000000 -140.000000,36.000000,0.000000 -false - - - -TitleText -1000.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -334.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress1 -200 - - - - -ProgressBar2 -666.000000 -15.000000 -167.000000,36.000000,0.000000 -BossHealthProgress2 -200 - - - - -ProgressBar3 -940.000000 -15.000000 -30.000031,36.000000,0.000000 -BossHealthProgress3 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -416.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -333.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -300.000031,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiGamertag -290.000000 -926.000000,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowedRight - - - - - -XuiPressStartMessage -400.000000 -88.000000 -440.000061,316.000031,0.000000 -0.800000 -false -QuadrantJoinGame - - - - -XuiSceneDebugContainer -1280.000000 -720.000000 -207 -true -XuiBlankScene - - - - -XuiSavingIcon -48.000000 -73.000000 -1168.000000,36.000000,0.000000 -false -SaveIcon - - - - -XuiTrialTimer -1280.000000 -47.000000 -0.000000,64.000000,0.000000 -false -XuiLabelLight_ShadowCentred - - - - -SafeArea -1280.000000 -720.000000 -48 -false - - - -1280.000000 -36.000000 -0.000000,683.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -1280.000000 -36.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -64.000000 -720.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -64.000000 -720.000000 -1215.000000,0.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiSoundXACTBack -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonBack -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraft -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraft -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraftFail -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraftFail -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTFocus -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonFocus -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTPress -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonPress -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTScroll -17.000000 -11.000000 -114.000000,25.000000,0.000000 -Scroll -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - -Normal - - - -EndNormal - -stop - - -StartFlash - - - -EndFlash - -gotoandplay -StartFlash - - - - + + 1280.000000 + 720.000000 + + + + XuiBaseScene + 1280.000000 + 720.000000 + CXuiSceneBase + XuiBlankScene + FadeIn + + + + BasePlayer3 + 1280.000000 + 720.000000 + 15 + true + XuiBlankScene + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,648.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + XuiDarkOverlay + 1280.000000 + 720.000000 + false + XuiDarkOverlay + + + + + Background + 1280.000000 + 720.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 1280.000000 + 138.000000 + 0.000000,56.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 1280.000000 + 720.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 1280.000000 + 720.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 40.000000 + 15 + false + RStick_Button + true + 22532 + + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + TooltipsSmall + 200.000000 + 28.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 28.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 28.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 28.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 28.000000 + 15 + false + RTriggerSmall + true + 22535 + + + + + LTrigger + 200.000000 + 28.000000 + 15 + false + LTriggerSmall + true + 22534 + + + + + YButton + 200.000000 + 28.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 28.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 28.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 28.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 440.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 1000.000000 + 51.000000 + 140.000000,36.000000,0.000000 + false + + + + TitleText + 1000.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 334.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress1 + 200 + + + + + ProgressBar2 + 666.000000 + 15.000000 + 167.000000,36.000000,0.000000 + BossHealthProgress2 + 200 + + + + + ProgressBar3 + 940.000000 + 15.000000 + 30.000031,36.000000,0.000000 + BossHealthProgress3 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 416.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 300.000031,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiGamertag + 290.000000 + 926.000000,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowedRight + + + + + + BasePlayer2 + 1280.000000 + 720.000000 + 15 + true + XuiBlankScene + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,648.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + XuiDarkOverlay + 1280.000000 + 720.000000 + false + XuiDarkOverlay + + + + + Background + 1280.000000 + 720.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 1280.000000 + 138.000000 + 0.000000,56.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 1280.000000 + 720.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 1280.000000 + 720.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 40.000000 + 15 + false + RStick_Button + true + 22532 + + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + TooltipsSmall + 200.000000 + 28.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 28.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 28.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 28.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 28.000000 + 15 + false + RTriggerSmall + true + 22535 + + + + + LTrigger + 200.000000 + 28.000000 + 15 + false + LTriggerSmall + true + 22534 + + + + + YButton + 200.000000 + 28.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 28.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 28.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 28.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 440.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 1000.000000 + 51.000000 + 140.000000,36.000000,0.000000 + false + + + + TitleText + 1000.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 334.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress1 + 200 + + + + + ProgressBar2 + 666.000000 + 15.000000 + 167.000000,36.000000,0.000000 + BossHealthProgress2 + 200 + + + + + ProgressBar3 + 940.000000 + 15.000000 + 30.000031,36.000000,0.000000 + BossHealthProgress3 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 416.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 300.000031,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiGamertag + 290.000000 + 926.000000,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowedRight + + + + + + BasePlayer1 + 1280.000000 + 720.000000 + 15 + true + XuiBlankScene + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,648.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + XuiDarkOverlay + 1280.000000 + 720.000000 + false + XuiDarkOverlay + + + + + Background + 1280.000000 + 720.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 1280.000000 + 138.000000 + 0.000000,56.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 1280.000000 + 720.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 1280.000000 + 720.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 40.000000 + 15 + false + RStick_Button + true + 22532 + + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + TooltipsSmall + 200.000000 + 28.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 28.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 28.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 28.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 28.000000 + 15 + false + RTriggerSmall + true + 22535 + + + + + LTrigger + 200.000000 + 28.000000 + 15 + false + LTriggerSmall + true + 22534 + + + + + YButton + 200.000000 + 28.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 28.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 28.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 28.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 440.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 1000.000000 + 51.000000 + 140.000000,36.000000,0.000000 + false + + + + TitleText + 1000.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 334.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress1 + 200 + + + + + ProgressBar2 + 666.000000 + 15.000000 + 167.000000,36.000000,0.000000 + BossHealthProgress2 + 200 + + + + + ProgressBar3 + 940.000000 + 15.000000 + 30.000031,36.000000,0.000000 + BossHealthProgress3 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 416.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 300.000031,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiGamertag + 290.000000 + 926.000000,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowedRight + + + + + + BasePlayer0 + 1280.000000 + 720.000000 + 15 + true + XuiBlankScene + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,648.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 64.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + XuiDarkOverlay + 1280.000000 + 720.000000 + false + XuiDarkOverlay + + + + + Background + 1280.000000 + 720.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 1280.000000 + 138.000000 + 0.000000,56.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 1280.000000 + 720.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 1280.000000 + 720.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 40.000000 + 15 + false + RStick_Button + true + 22532 + + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + TooltipsSmall + 200.000000 + 28.000000 + 0.000000,0.000061,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 28.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 28.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 28.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 28.000000 + 15 + false + RTriggerSmall + true + 22535 + + + + + LTrigger + 200.000000 + 28.000000 + 15 + false + LTriggerSmall + true + 22534 + + + + + YButton + 200.000000 + 28.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 28.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 28.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 28.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 440.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 1000.000000 + 51.000000 + 140.000000,36.000000,0.000000 + false + + + + TitleText + 1000.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 334.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress1 + 200 + + + + + ProgressBar2 + 666.000000 + 15.000000 + 167.000000,36.000000,0.000000 + BossHealthProgress2 + 200 + + + + + ProgressBar3 + 940.000000 + 15.000000 + 30.000031,36.000000,0.000000 + BossHealthProgress3 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 416.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 333.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 300.000031,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiGamertag + 290.000000 + 926.000000,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowedRight + + + + + + XuiPressStartMessage + 400.000000 + 88.000000 + 440.000061,316.000031,0.000000 + 0.800000 + false + QuadrantJoinGame + + + + + XuiSceneDebugContainer + 1280.000000 + 720.000000 + 207 + true + XuiBlankScene + + + + + XuiSavingIcon + 48.000000 + 73.000000 + 1168.000000,36.000000,0.000000 + false + SaveIcon + + + + + XuiTrialTimer + 1280.000000 + 47.000000 + 0.000000,64.000000,0.000000 + false + XuiLabelLight_ShadowCentred + + + + + SafeArea + 1280.000000 + 720.000000 + 48 + false + + + + 1280.000000 + 36.000000 + 0.000000,683.000000,0.000000 + 0.700000 + true + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_base_480.xui b/Minecraft.Client/Common/Media/xuiscene_base_480.xui index f70a605a..8bd01f68 100644 --- a/Minecraft.Client/Common/Media/xuiscene_base_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_base_480.xui @@ -1,2042 +1,1855 @@ - -640.000000 -480.000000 - - - -XuiBaseScene -640.000000 -480.000000 -CXuiSceneBase -XuiBlankScene -FadeIn - - - -BasePlayer3 -640.000000 -480.000000 -15 -true -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -480.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -480.000000 -15 -false -true -XuiBackgroundPan480 - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneChatRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -640.000000 -480.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -50.000000,424.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -48.000000,444.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -48.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TooltipsSmall -200.000000 -25.000000 -46.000000,420.000000,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -25.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -25.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -25.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -25.000000 -15 -false -RTriggerSmall480 -true -22535 - - - - -LTrigger -200.000000 -25.000000 -15 -false -LTriggerSmall480 -true -22534 - - - - -YButton -200.000000 -25.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -25.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -25.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -25.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -120.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -500.000000 -51.000000 -70.000000,36.000000,0.000000 -false - - - -TitleText -500.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -167.000000 -15.000000 -166.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2 -333.000000 -15.000000 -83.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3 -400.000000 -15.000000 -50.000000,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -166.000031,36.000000,0.000000 -false -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -83.000031,36.000000,0.000000 -false -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -50.000061,36.000000,0.000000 -false -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -640.000000 -480.000000 -207 -true -XuiBlankScene - - - - - -BasePlayer2 -640.000000 -480.000000 -15 -true -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -480.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -480.000000 -15 -false -true -XuiBackgroundPan480 - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneChatRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -640.000000 -480.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -50.000000,424.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -48.000000,444.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -48.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TooltipsSmall -200.000000 -25.000000 -46.000000,420.000000,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -25.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -25.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -25.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -25.000000 -15 -false -RTriggerSmall480 -true -22535 - - - - -LTrigger -200.000000 -25.000000 -15 -false -LTriggerSmall480 -true -22534 - - - - -YButton -200.000000 -25.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -25.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -25.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -25.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -120.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -500.000000 -51.000000 -70.000000,36.000000,0.000000 -false - - - -TitleText -500.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -167.000000 -15.000000 -166.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2 -333.000000 -15.000000 -83.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3 -400.000000 -15.000000 -50.000000,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -166.000031,36.000000,0.000000 -false -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -83.000031,36.000000,0.000000 -false -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -50.000061,36.000000,0.000000 -false -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -640.000000 -480.000000 -207 -true -XuiBlankScene - - - - - -BasePlayer1 -640.000000 -480.000000 -15 -true -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -480.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -480.000000 -15 -false -true -XuiBackgroundPan480 - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneChatRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -640.000000 -480.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -50.000000,424.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -48.000000,444.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -48.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TooltipsSmall -200.000000 -25.000000 -46.000000,420.000000,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -25.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -25.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -25.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -25.000000 -15 -false -RTriggerSmall480 -true -22535 - - - - -LTrigger -200.000000 -25.000000 -15 -false -LTriggerSmall480 -true -22534 - - - - -YButton -200.000000 -25.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -25.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -25.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -25.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -120.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -500.000000 -51.000000 -70.000000,36.000000,0.000000 -false - - - -TitleText -500.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -167.000000 -15.000000 -166.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2 -333.000000 -15.000000 -83.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3 -400.000000 -15.000000 -50.000000,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -166.000031,36.000000,0.000000 -false -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -83.000031,36.000000,0.000000 -false -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -50.000061,36.000000,0.000000 -false -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -640.000000 -480.000000 -207 -true -XuiBlankScene - - - - - -BasePlayer0 -640.000000 -480.000000 -15 -true -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -480.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -480.000000 -15 -false -true -XuiBackgroundPan480 - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -MenuTitleLogo - - - - -XuiSceneHudRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneChatRoot -640.000000 -480.000000 -true -XuiBlankScene - - - - -XuiSceneContainer -640.000000 -480.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -50.000000,424.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LStick -200.000000 -40.000000 -15 -false -LStick_Nav -true -22532 - - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -48.000000,444.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -48.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TooltipsSmall -200.000000 -25.000000 -46.000000,420.000000,0.000000 - - - -RStick -200.000000 -28.000000 -15 -false -RStick_ButtonSmall -true -22532 - - - - -LStick -200.000000 -25.000000 -15 -false -LStick_NavSmall -true -22532 - - - - -LBButton -200.000000 -25.000000 -15 -false -LB_ButtonSmall -true -22532 - - - - -RBButton -200.000000 -25.000000 -15 -false -RB_ButtonSmall -true -22532 - - - - -RTrigger -200.000000 -25.000000 -15 -false -RTriggerSmall480 -true -22535 - - - - -LTrigger -200.000000 -25.000000 -15 -false -LTriggerSmall480 -true -22534 - - - - -YButton -200.000000 -25.000000 -15 -false -Y_ButtonSmall -true -22531 - - - - -XButton -200.000000 -25.000000 -15 -false -X_ButtonSmall -true -22530 - - - - -BButton -200.000000 -25.000000 -15 -false -B_ButtonSmall -true -22529 - - - - -AButton -200.000000 -25.000000 -15 -false -A_ButtonSmall -true -22528 - - - - - -SelectedItem -400.000000 -120.000061,36.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -SelectedItemSmall -400.000000 -145.000031,240.000000,0.000000 -0.800000 -XuiLabelLight_ShadowCentred - - - - -BossHealth -500.000000 -51.000000 -70.000000,36.000000,0.000000 -false - - - -TitleText -500.000000 -36.000000 -5 -BossHealthLabel - - - - -ProgressBar1 -167.000000 -15.000000 -166.000000,36.000000,0.000000 -BossHealthProgress1_480 -200 - - - - -ProgressBar2 -333.000000 -15.000000 -83.000000,36.000000,0.000000 -BossHealthProgress2_480 -200 - - - - -ProgressBar3 -400.000000 -15.000000 -50.000000,36.000000,0.000000 -BossHealthProgress3_480 -200 - - - - -ProgressBar1_small -167.000000 -15.000000 -166.000031,36.000000,0.000000 -false -BossHealthProgress1_480 -200 - - - - -ProgressBar2_small -333.000000 -15.000000 -83.000031,36.000000,0.000000 -false -BossHealthProgress2_480 -200 - - - - -ProgressBar3_small -400.000000 -15.000000 -50.000061,36.000000,0.000000 -false -BossHealthProgress3_480 -200 - - - - - -XuiSceneTutorialContainer -640.000000 -480.000000 -207 -true -XuiBlankScene - - - - - -XuiPressStartMessage -400.000000 -88.000000 -120.000046,196.000015,0.000000 -0.800000 -false -QuadrantJoinGame - - - - -XuiSceneDebugContainer -640.000000 -480.000000 -207 -true -XuiBlankScene - - - - -XuiSavingIcon -48.000000 -73.000000 -560.000000,36.000000,0.000000 -0.600000,0.600000,1.000000 -false -SaveIcon - - - - -XuiTrialTimer -640.000000 -47.000000 -0.000000,130.000000,0.000000 -false -XuiLabelLight_C_ShadowedSmall - - - - -SafeArea -640.000000 -360.000000 -false - - - -640.000000 -36.000000 -0.000000,444.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -640.000000 -36.000000 -0.700000 -192 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -48.000000 -480.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -48.000000 -480.000000 -592.000000,0.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiSoundXACTBack -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonBack -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraft -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraft -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraftFail -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraftFail -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTFocus -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonFocus -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTPress -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonPress -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTScroll -17.000000 -11.000000 -114.000000,25.000000,0.000000 -Scroll -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - -Normal - - - -EndNormal - -stop - - -StartFlash - - - -EndFlash - -gotoandplay -StartFlash - - - - + + 640.000000 + 480.000000 + + + + XuiBaseScene + 640.000000 + 480.000000 + CXuiSceneBase + XuiBlankScene + FadeIn + + + + BasePlayer3 + 640.000000 + 480.000000 + 15 + true + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 480.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 480.000000 + 15 + false + true + XuiBackgroundPan480 + + + + + Logo + 640.000000 + 70.000000 + 0.000000,48.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 640.000000 + 480.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 50.000000,424.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,444.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TooltipsSmall + 200.000000 + 25.000000 + 46.000000,420.000000,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 25.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 25.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 25.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 25.000000 + 15 + false + RTriggerSmall480 + true + 22535 + + + + + LTrigger + 200.000000 + 25.000000 + 15 + false + LTriggerSmall480 + true + 22534 + + + + + YButton + 200.000000 + 25.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 25.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 25.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 25.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 120.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 500.000000 + 51.000000 + 70.000000,36.000000,0.000000 + false + + + + TitleText + 500.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 167.000000 + 15.000000 + 166.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2 + 333.000000 + 15.000000 + 83.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3 + 400.000000 + 15.000000 + 50.000000,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 166.000031,36.000000,0.000000 + false + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 83.000031,36.000000,0.000000 + false + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 50.000061,36.000000,0.000000 + false + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 640.000000 + 480.000000 + 207 + true + XuiBlankScene + + + + + + BasePlayer2 + 640.000000 + 480.000000 + 15 + true + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 480.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 480.000000 + 15 + false + true + XuiBackgroundPan480 + + + + + Logo + 640.000000 + 70.000000 + 0.000000,48.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 640.000000 + 480.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 50.000000,424.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,444.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TooltipsSmall + 200.000000 + 25.000000 + 46.000000,420.000000,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 25.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 25.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 25.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 25.000000 + 15 + false + RTriggerSmall480 + true + 22535 + + + + + LTrigger + 200.000000 + 25.000000 + 15 + false + LTriggerSmall480 + true + 22534 + + + + + YButton + 200.000000 + 25.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 25.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 25.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 25.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 120.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 500.000000 + 51.000000 + 70.000000,36.000000,0.000000 + false + + + + TitleText + 500.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 167.000000 + 15.000000 + 166.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2 + 333.000000 + 15.000000 + 83.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3 + 400.000000 + 15.000000 + 50.000000,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 166.000031,36.000000,0.000000 + false + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 83.000031,36.000000,0.000000 + false + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 50.000061,36.000000,0.000000 + false + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 640.000000 + 480.000000 + 207 + true + XuiBlankScene + + + + + + BasePlayer1 + 640.000000 + 480.000000 + 15 + true + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 480.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 480.000000 + 15 + false + true + XuiBackgroundPan480 + + + + + Logo + 640.000000 + 70.000000 + 0.000000,48.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 640.000000 + 480.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 50.000000,424.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,444.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TooltipsSmall + 200.000000 + 25.000000 + 46.000000,420.000000,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 25.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 25.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 25.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 25.000000 + 15 + false + RTriggerSmall480 + true + 22535 + + + + + LTrigger + 200.000000 + 25.000000 + 15 + false + LTriggerSmall480 + true + 22534 + + + + + YButton + 200.000000 + 25.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 25.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 25.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 25.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 120.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 500.000000 + 51.000000 + 70.000000,36.000000,0.000000 + false + + + + TitleText + 500.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 167.000000 + 15.000000 + 166.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2 + 333.000000 + 15.000000 + 83.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3 + 400.000000 + 15.000000 + 50.000000,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 166.000031,36.000000,0.000000 + false + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 83.000031,36.000000,0.000000 + false + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 50.000061,36.000000,0.000000 + false + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 640.000000 + 480.000000 + 207 + true + XuiBlankScene + + + + + + BasePlayer0 + 640.000000 + 480.000000 + 15 + true + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 480.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 480.000000 + 15 + false + true + XuiBackgroundPan480 + + + + + Logo + 640.000000 + 70.000000 + 0.000000,48.000000,0.000000 + MenuTitleLogo + + + + + XuiSceneHudRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneChatRoot + 640.000000 + 480.000000 + true + XuiBlankScene + + + + + XuiSceneContainer + 640.000000 + 480.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 50.000000,424.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LStick + 200.000000 + 40.000000 + 15 + false + LStick_Nav + true + 22532 + + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,444.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 48.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TooltipsSmall + 200.000000 + 25.000000 + 46.000000,420.000000,0.000000 + + + + RStick + 200.000000 + 28.000000 + 15 + false + RStick_ButtonSmall + true + 22532 + + + + + LStick + 200.000000 + 25.000000 + 15 + false + LStick_NavSmall + true + 22532 + + + + + LBButton + 200.000000 + 25.000000 + 15 + false + LB_ButtonSmall + true + 22532 + + + + + RBButton + 200.000000 + 25.000000 + 15 + false + RB_ButtonSmall + true + 22532 + + + + + RTrigger + 200.000000 + 25.000000 + 15 + false + RTriggerSmall480 + true + 22535 + + + + + LTrigger + 200.000000 + 25.000000 + 15 + false + LTriggerSmall480 + true + 22534 + + + + + YButton + 200.000000 + 25.000000 + 15 + false + Y_ButtonSmall + true + 22531 + + + + + XButton + 200.000000 + 25.000000 + 15 + false + X_ButtonSmall + true + 22530 + + + + + BButton + 200.000000 + 25.000000 + 15 + false + B_ButtonSmall + true + 22529 + + + + + AButton + 200.000000 + 25.000000 + 15 + false + A_ButtonSmall + true + 22528 + + + + + + SelectedItem + 400.000000 + 120.000061,36.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + SelectedItemSmall + 400.000000 + 145.000031,240.000000,0.000000 + 0.800000 + XuiLabelLight_ShadowCentred + + + + + BossHealth + 500.000000 + 51.000000 + 70.000000,36.000000,0.000000 + false + + + + TitleText + 500.000000 + 36.000000 + 5 + BossHealthLabel + + + + + ProgressBar1 + 167.000000 + 15.000000 + 166.000000,36.000000,0.000000 + BossHealthProgress1_480 + 200 + + + + + ProgressBar2 + 333.000000 + 15.000000 + 83.000000,36.000000,0.000000 + BossHealthProgress2_480 + 200 + + + + + ProgressBar3 + 400.000000 + 15.000000 + 50.000000,36.000000,0.000000 + BossHealthProgress3_480 + 200 + + + + + ProgressBar1_small + 167.000000 + 15.000000 + 166.000031,36.000000,0.000000 + false + BossHealthProgress1_480 + 200 + + + + + ProgressBar2_small + 333.000000 + 15.000000 + 83.000031,36.000000,0.000000 + false + BossHealthProgress2_480 + 200 + + + + + ProgressBar3_small + 400.000000 + 15.000000 + 50.000061,36.000000,0.000000 + false + BossHealthProgress3_480 + 200 + + + + + + XuiSceneTutorialContainer + 640.000000 + 480.000000 + 207 + true + XuiBlankScene + + + + + + XuiPressStartMessage + 400.000000 + 88.000000 + 120.000046,196.000015,0.000000 + 0.800000 + false + QuadrantJoinGame + + + + + XuiSceneDebugContainer + 640.000000 + 480.000000 + 207 + true + XuiBlankScene + + + + + XuiSavingIcon + 48.000000 + 73.000000 + 560.000000,36.000000,0.000000 + 0.600000,0.600000,1.000000 + false + SaveIcon + + + + + XuiTrialTimer + 640.000000 + 47.000000 + 0.000000,130.000000,0.000000 + false + XuiLabelLight_C_ShadowedSmall + + + + + SafeArea + 640.000000 + 360.000000 + false + + + + 640.000000 + 36.000000 + 0.000000,444.000000,0.000000 + 0.700000 + true + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_base_small.xui b/Minecraft.Client/Common/Media/xuiscene_base_small.xui index 8edd2e65..56a3240a 100644 --- a/Minecraft.Client/Common/Media/xuiscene_base_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_base_small.xui @@ -1,1021 +1,834 @@ - -640.000000 -360.000000 - - - -XuiBaseScene -640.000000 -360.000000 -CXuiSceneBase -XuiBlankScene -FadeIn - - - -BasePlayer3 -640.000000 -360.000000 -15 -true -CScene_BasePlayer -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -360.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -360.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -640.000000 -70.000000 -0.000000,36.000000,0.000000 -16 -MenuTitle.png -48 - - - - -XuiSceneContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -XuiSceneTutorialContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -40.000000,325.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -40.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - - -BasePlayer2 -640.000000 -360.000000 -15 -true -CScene_BasePlayer -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -360.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -360.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -640.000000 -70.000000 -0.000000,36.000000,0.000000 -16 -MenuTitle.png -48 - - - - -XuiSceneContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -XuiSceneTutorialContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -40.000000,325.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -40.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - - -BasePlayer1 -640.000000 -360.000000 -15 -true -CScene_BasePlayer -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -360.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -360.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -640.000000 -70.000000 -0.000000,36.000000,0.000000 -16 -MenuTitle.png -48 - - - - -XuiSceneContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -XuiSceneTutorialContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -40.000000,325.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -40.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - - -BasePlayer0 -640.000000 -360.000000 -15 -true -CScene_BasePlayer -XuiBlankScene - - - -XuiDarkOverlay -640.000000 -360.000000 -false -XuiDarkOverlay - - - - -Background -640.000000 -360.000000 -15 -false -true -XuiBackgroundPan - - - - -Logo -640.000000 -70.000000 -0.000000,36.000000,0.000000 -16 -MenuTitle.png -48 - - - - -XuiSceneContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -XuiSceneTutorialContainer -640.000000 -360.000000 -207 -XuiBlankScene - - - - -Tooltips -200.000000 -40.000000 -0.000000,0.000061,0.000000 -0.500000,0.500000,1.000000 - - - -LBButton -200.000000 -40.000000 -15 -false -LB_Button -true -22532 - - - - -RBButton -200.000000 -40.000000 -15 -false -RB_Button -true -22532 - - - - -RTrigger -200.000000 -40.000000 -15 -false -RTrigger -true -22535 - - - - -LTrigger -200.000000 -40.000000 -15 -false -LTrigger -true -22534 - - - - -YButton -200.000000 -40.000000 -15 -false -Y_Button -true -22531 - - - - -XButton -200.000000 -40.000000 -15 -false -X_Button -true -22530 - - - - -BButton -200.000000 -40.000000 -15 -false -B_Button -true -22529 - - - - -AButton -200.000000 -40.000000 -15 -false -A_Button -true -22528 - - - - - -BottomLeftAnchorPoint -0.000000 -0.000000 -40.000000,325.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - -TopLeftAnchorPoint -0.000000 -0.000000 -40.000000,36.000000,0.000000 -false -true -XuiVisualImagePresenter -false - - - - - -XuiPressStartMessage -400.000000 -88.000000 -120.000046,136.000015,0.000000 -0.800000 -false -QuadrantJoinGame - - - - -XuiSceneDebugContainer -640.000000 -360.000000 -207 -true -XuiBlankScene - - - - -XuiSavingIcon -48.000000 -73.000000 -552.000000,35.000000,0.000000 -false -SaveIcon - - - - -XuiTrialTimer -640.000000 -47.000000 -0.000000,64.000000,0.000000 -false -XuiLabelLight_C_ShadowedSmall - - - - -SafeArea -640.000000 -360.000000 -false - - - -640.000000 -35.000000 -0.000000,325.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -640.000000 -35.000000 -0.700000 -192 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -40.000000 -360.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -40.000000 -360.000000 -600.000000,0.000000,0.000000 -0.700000 - - -0xff0f0f80 - - - - -0xffeb0f0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiSoundXACTBack -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonBack -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraft -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraft -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTCraftFail -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonCraftFail -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTFocus -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonFocus -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTPress -17.000000 -11.000000 -114.000000,25.000000,0.000000 -ButtonPress -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - -XuiSoundXACTScroll -17.000000 -11.000000 -114.000000,25.000000,0.000000 -Scroll -Sound\Xbox\MenuSounds.xsb -Sound\Xbox\MenuSounds.xwb - - - - - -Normal - - - -EndNormal - -stop - - -StartFlash - - - -EndFlash - -gotoandplay -StartFlash - - - - + + 640.000000 + 360.000000 + + + + XuiBaseScene + 640.000000 + 360.000000 + CXuiSceneBase + XuiBlankScene + FadeIn + + + + BasePlayer3 + 640.000000 + 360.000000 + 15 + true + CScene_BasePlayer + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 360.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 360.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 640.000000 + 70.000000 + 0.000000,36.000000,0.000000 + 16 + MenuTitle.png + 48 + + + + + XuiSceneContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + XuiSceneTutorialContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,325.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + + BasePlayer2 + 640.000000 + 360.000000 + 15 + true + CScene_BasePlayer + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 360.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 360.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 640.000000 + 70.000000 + 0.000000,36.000000,0.000000 + 16 + MenuTitle.png + 48 + + + + + XuiSceneContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + XuiSceneTutorialContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,325.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + + BasePlayer1 + 640.000000 + 360.000000 + 15 + true + CScene_BasePlayer + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 360.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 360.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 640.000000 + 70.000000 + 0.000000,36.000000,0.000000 + 16 + MenuTitle.png + 48 + + + + + XuiSceneContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + XuiSceneTutorialContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,325.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + + BasePlayer0 + 640.000000 + 360.000000 + 15 + true + CScene_BasePlayer + XuiBlankScene + + + + XuiDarkOverlay + 640.000000 + 360.000000 + false + XuiDarkOverlay + + + + + Background + 640.000000 + 360.000000 + 15 + false + true + XuiBackgroundPan + + + + + Logo + 640.000000 + 70.000000 + 0.000000,36.000000,0.000000 + 16 + MenuTitle.png + 48 + + + + + XuiSceneContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + XuiSceneTutorialContainer + 640.000000 + 360.000000 + 207 + XuiBlankScene + + + + + Tooltips + 200.000000 + 40.000000 + 0.000000,0.000061,0.000000 + 0.500000,0.500000,1.000000 + + + + LBButton + 200.000000 + 40.000000 + 15 + false + LB_Button + true + 22532 + + + + + RBButton + 200.000000 + 40.000000 + 15 + false + RB_Button + true + 22532 + + + + + RTrigger + 200.000000 + 40.000000 + 15 + false + RTrigger + true + 22535 + + + + + LTrigger + 200.000000 + 40.000000 + 15 + false + LTrigger + true + 22534 + + + + + YButton + 200.000000 + 40.000000 + 15 + false + Y_Button + true + 22531 + + + + + XButton + 200.000000 + 40.000000 + 15 + false + X_Button + true + 22530 + + + + + BButton + 200.000000 + 40.000000 + 15 + false + B_Button + true + 22529 + + + + + AButton + 200.000000 + 40.000000 + 15 + false + A_Button + true + 22528 + + + + + + BottomLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,325.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + TopLeftAnchorPoint + 0.000000 + 0.000000 + 40.000000,36.000000,0.000000 + false + true + XuiVisualImagePresenter + false + + + + + + XuiPressStartMessage + 400.000000 + 88.000000 + 120.000046,136.000015,0.000000 + 0.800000 + false + QuadrantJoinGame + + + + + XuiSceneDebugContainer + 640.000000 + 360.000000 + 207 + true + XuiBlankScene + + + + + XuiSavingIcon + 48.000000 + 73.000000 + 552.000000,35.000000,0.000000 + false + SaveIcon + + + + + XuiTrialTimer + 640.000000 + 47.000000 + 0.000000,64.000000,0.000000 + false + XuiLabelLight_C_ShadowedSmall + + + + + SafeArea + 640.000000 + 360.000000 + false + + + + 640.000000 + 35.000000 + 0.000000,325.000000,0.000000 + 0.700000 + true + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_beacon.xui b/Minecraft.Client/Common/Media/xuiscene_beacon.xui index 3cc3ca93..81118a93 100644 --- a/Minecraft.Client/Common/Media/xuiscene_beacon.xui +++ b/Minecraft.Client/Common/Media/xuiscene_beacon.xui @@ -1,6508 +1,6501 @@ - -1280.000000 -720.000000 - - - -BeaconMenu -1280.000000 -720.000000 -CXuiSceneBeacon -XuiBlankScene -Pointer - - - -Group -520.000000 -510.000000 -380.000031,120.000046,0.000000 -15 -XuiScene -Pointer - - - -UseRow -381.000000 -50.000000 -70.000000,444.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Inventory -378.000000 -150.000000 -70.000000,305.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -SecondaryPanel -234.000000 -210.000000 -262.000000,24.000000,0.000000 -PanelRecessed -false - - - - -PrimaryPanel -234.000000 -210.000000 -24.000000,24.000000,0.000000 -PanelRecessed -false - - - - -PrimaryText -230.000000 -32.000000 -26.000000,26.000000,0.000000 -9 -XuiLabelDarkCentredWrap -Primary Power - - - - -SecondaryText -230.000000 -63.000000 -264.000061,26.000008,0.000000 -3 -XuiLabelDarkCentredWrap -Secondary Power - - - - -PrimaryTierOneOne -44.000000 -44.000000 -122.000000,66.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -PrimaryTierOneTwo -44.000000 -44.000000 -186.000000,66.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -PrimaryTierTwoOne -44.000000 -44.000000 -122.000000,120.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -PrimaryTierTwoTwo -44.000000 -44.000000 -186.000000,120.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -PrimaryTierThree -44.000000 -44.000000 -154.000000,174.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -SecondaryOne -44.000000 -44.000000 -324.000031,148.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -SecondaryTwo -44.000000 -44.000000 -388.000092,148.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -Confirm -44.000000 -44.000000 -403.000000,246.000031,0.000000 -8 -CXuiCtrlBeaconButton -BeaconButton -false - - - - -Payment -42.000000 -42.000000 -280.000092,248.000046,0.000000 -9 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Emerald -42.000000 -42.000000 -70.000046,247.999969,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Diamond -42.000000 -42.000000 -118.000031,248.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Gold -42.000000 -42.000000 -166.000015,248.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Iron -42.000000 -42.000000 -214.000000,248.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Beacon_1 -40.000000 -40.000000 -50.000000,68.000000,0.000000 -2 -Beacon_1 -false - - - - -Beacon_2 -40.000000 -40.000000 -50.000000,122.000000,0.000000 -2 -Beacon_2 -false - - - - -Beacon_3 -40.000000 -40.000000 -50.000000,176.000000,0.000000 -2 -Beacon_3 -false - - - - -Beacon_4 -40.000000 -40.000000 -358.000000,94.000000,0.000000 -2 -Beacon_4 -false - - - - -Pointer -42.000000 -42.000000 --185.000000,-9.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - -Normal - - - -EndNormal - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -380.000031,120.000046,0.000000 - - - -0 -380.000000,120.000000,0.000000 - - - -2 -100 --100 -50 -380.000000,120.000000,0.000000 - - - -0 -120.000000,120.000000,0.000000 - - - -2 -100 --100 -50 -120.000000,120.000000,0.000000 - - - -0 -380.000000,120.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + BeaconMenu + 1280.000000 + 720.000000 + CXuiSceneBeacon + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 26 + + + + easein + 26 + + + + none + 27 + + + + easein + 27 + + + + none + 26 + + + + + + Group + 520.000000 + 510.000000 + 380.000031,120.000046,0.000000 + 15 + XuiScene + Pointer + + + + + Normal + + + + EndNormal + + + + + + + UseRow + 381.000000 + 50.000000 + 70.000000,444.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Inventory + 378.000000 + 150.000000 + 70.000000,305.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + SecondaryPanel + 234.000000 + 210.000000 + 262.000000,24.000000,0.000000 + PanelRecessed + false + + + + + PrimaryPanel + 234.000000 + 210.000000 + 24.000000,24.000000,0.000000 + PanelRecessed + false + + + + + PrimaryText + 230.000000 + 32.000000 + 26.000000,26.000000,0.000000 + 9 + XuiLabelDarkCentredWrap + Primary Power + + + + + SecondaryText + 230.000000 + 63.000000 + 264.000061,26.000008,0.000000 + 3 + XuiLabelDarkCentredWrap + Secondary Power + + + + + PrimaryTierOneOne + 44.000000 + 44.000000 + 122.000000,66.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + PrimaryTierOneTwo + 44.000000 + 44.000000 + 186.000000,66.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + PrimaryTierTwoOne + 44.000000 + 44.000000 + 122.000000,120.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + PrimaryTierTwoTwo + 44.000000 + 44.000000 + 186.000000,120.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + PrimaryTierThree + 44.000000 + 44.000000 + 154.000000,174.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + SecondaryOne + 44.000000 + 44.000000 + 324.000031,148.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + SecondaryTwo + 44.000000 + 44.000000 + 388.000092,148.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + Confirm + 44.000000 + 44.000000 + 403.000000,246.000031,0.000000 + 8 + CXuiCtrlBeaconButton + BeaconButton + false + + + + + Payment + 42.000000 + 42.000000 + 280.000092,248.000046,0.000000 + 9 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Emerald + 42.000000 + 42.000000 + 70.000046,247.999969,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Diamond + 42.000000 + 42.000000 + 118.000031,248.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Gold + 42.000000 + 42.000000 + 166.000015,248.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Iron + 42.000000 + 42.000000 + 214.000000,248.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Beacon_1 + 40.000000 + 40.000000 + 50.000000,68.000000,0.000000 + 2 + Beacon_1 + false + + + + + Beacon_2 + 40.000000 + 40.000000 + 50.000000,122.000000,0.000000 + 2 + Beacon_2 + false + + + + + Beacon_3 + 40.000000 + 40.000000 + 50.000000,176.000000,0.000000 + 2 + Beacon_3 + false + + + + + Beacon_4 + 40.000000 + 40.000000 + 358.000000,94.000000,0.000000 + 2 + Beacon_4 + false + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-9.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_beacon_480.xui b/Minecraft.Client/Common/Media/xuiscene_beacon_480.xui index f2df043f..2b648910 100644 --- a/Minecraft.Client/Common/Media/xuiscene_beacon_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_beacon_480.xui @@ -1,5215 +1,5208 @@ - -640.000000 -480.000000 - - - -BeaconMenu -640.000000 -480.000000 -CXuiSceneBeacon -XuiBlankScene -Pointer - - - -Group -336.000000 -290.000000 -190.000000,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -78.000000 -51.000000,164.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -51.000000,252.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -SecondaryPanel -154.000000 -120.000000 -170.000000,12.000000,0.000000 -PanelRecessed -false - - - - -PrimaryPanel -154.000000 -120.000000 -12.000000,12.000000,0.000000 -PanelRecessed -false - - - - -PrimaryText -150.000000 -36.000000 -14.000000,14.000000,0.000000 -9 -XuiLabelDarkCentredWrapSmall -Primary Power - - - - -SecondaryText -150.000000 -51.000000 -172.000000,14.000000,0.000000 -3 -XuiLabelDarkCentredWrapSmall -Secondary Power - - - - -PrimaryTierOneOne -22.000000 -22.000000 -80.000000,46.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierOneTwo -22.000000 -22.000000 -111.000000,46.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierTwoOne -22.000000 -22.000000 -80.000000,74.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierTwoTwo -22.000000 -22.000000 -111.000000,74.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierThree -22.000000 -22.000000 -95.073303,104.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -SecondaryOne -22.000000 -22.000000 -220.000000,84.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -SecondaryTwo -22.000000 -22.000000 -254.000000,84.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -Confirm -22.000000 -22.000000 -261.000092,137.000015,0.000000 -8 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -Payment -24.000000 -24.000000 -182.000092,136.000046,0.000000 -9 -CXuiCtrlSlotList -ItemGridVertical24 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -Emerald -22.000000 -22.000000 -52.482300,136.999969,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Diamond -22.000000 -22.000000 -79.000031,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Gold -22.000000 -22.000000 -105.000015,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlankSmall - - - - -Iron -22.000000 -22.000000 -131.000000,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlankSmall - - - - -Beacon_1 -20.000000 -20.000000 -38.000000,46.000000,0.000000 -2 -Beacon_1 -false - - - - -Beacon_2 -20.000000 -20.000000 -38.000000,74.000000,0.000000 -2 -Beacon_2 -false - - - - -Beacon_3 -20.000000 -20.000000 -38.000000,104.000000,0.000000 -2 -Beacon_3 -false - - - - -Beacon_4 -20.000000 -20.000000 -238.000000,58.000000,0.000000 -2 -Beacon_4 -false - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -33.750000,96.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + BeaconMenu + 640.000000 + 480.000000 + CXuiSceneBeacon + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 26 + + + + easein + 27 + + + + none + 0 + + + + + + Group + 336.000000 + 290.000000 + 190.000000,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 78.000000 + 51.000000,164.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 51.000000,252.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + SecondaryPanel + 154.000000 + 120.000000 + 170.000000,12.000000,0.000000 + PanelRecessed + false + + + + + PrimaryPanel + 154.000000 + 120.000000 + 12.000000,12.000000,0.000000 + PanelRecessed + false + + + + + PrimaryText + 150.000000 + 36.000000 + 14.000000,14.000000,0.000000 + 9 + XuiLabelDarkCentredWrapSmall + Primary Power + + + + + SecondaryText + 150.000000 + 51.000000 + 172.000000,14.000000,0.000000 + 3 + XuiLabelDarkCentredWrapSmall + Secondary Power + + + + + PrimaryTierOneOne + 22.000000 + 22.000000 + 80.000000,46.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierOneTwo + 22.000000 + 22.000000 + 111.000000,46.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierTwoOne + 22.000000 + 22.000000 + 80.000000,74.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierTwoTwo + 22.000000 + 22.000000 + 111.000000,74.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierThree + 22.000000 + 22.000000 + 95.073303,104.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + SecondaryOne + 22.000000 + 22.000000 + 220.000000,84.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + SecondaryTwo + 22.000000 + 22.000000 + 254.000000,84.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + Confirm + 22.000000 + 22.000000 + 261.000092,137.000015,0.000000 + 8 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + Payment + 24.000000 + 24.000000 + 182.000092,136.000046,0.000000 + 9 + CXuiCtrlSlotList + ItemGridVertical24 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + + Emerald + 22.000000 + 22.000000 + 52.482300,136.999969,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Diamond + 22.000000 + 22.000000 + 79.000031,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Gold + 22.000000 + 22.000000 + 105.000015,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlankSmall + + + + + Iron + 22.000000 + 22.000000 + 131.000000,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlankSmall + + + + + Beacon_1 + 20.000000 + 20.000000 + 38.000000,46.000000,0.000000 + 2 + Beacon_1 + false + + + + + Beacon_2 + 20.000000 + 20.000000 + 38.000000,74.000000,0.000000 + 2 + Beacon_2 + false + + + + + Beacon_3 + 20.000000 + 20.000000 + 38.000000,104.000000,0.000000 + 2 + Beacon_3 + false + + + + + Beacon_4 + 20.000000 + 20.000000 + 238.000000,58.000000,0.000000 + 2 + Beacon_4 + false + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_beacon_Small.xui b/Minecraft.Client/Common/Media/xuiscene_beacon_Small.xui index 28d4d809..a3fc1c2d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_beacon_Small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_beacon_Small.xui @@ -1,5215 +1,5208 @@ - -640.000000 -360.000000 - - - -BeaconMenu -640.000000 -360.000000 -CXuiSceneBeacon -XuiBlankScene -Pointer - - - -Group -336.000000 -290.000000 -152.000031,2.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -78.000000 -51.000000,164.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -51.000000,252.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -SecondaryPanel -154.000000 -120.000000 -170.000000,12.000000,0.000000 -PanelRecessed -false - - - - -PrimaryPanel -154.000000 -120.000000 -12.000000,12.000000,0.000000 -PanelRecessed -false - - - - -PrimaryText -150.000000 -35.000000 -14.000000,14.000000,0.000000 -9 -XuiLabelDarkCentredWrapSmall -Primary Power - - - - -SecondaryText -150.000000 -40.000000 -172.000000,14.000000,0.000000 -3 -XuiLabelDarkCentredWrapSmall -Secondary Power - - - - -PrimaryTierOneOne -22.000000 -22.000000 -80.000000,46.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierOneTwo -22.000000 -22.000000 -111.000000,46.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierTwoOne -22.000000 -22.000000 -80.000000,74.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierTwoTwo -22.000000 -22.000000 -111.000000,74.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -PrimaryTierThree -22.000000 -22.000000 -95.073303,104.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -SecondaryOne -22.000000 -22.000000 -220.000000,84.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -SecondaryTwo -22.000000 -22.000000 -254.000000,84.000000,0.000000 -2 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -Confirm -22.000000 -22.000000 -261.000092,137.000015,0.000000 -8 -CXuiCtrlBeaconButton -BeaconButtonSmall -false - - - - -Payment -24.000000 -24.000000 -182.000092,136.000046,0.000000 -9 -CXuiCtrlSlotList -ItemGridVertical24 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -Emerald -22.000000 -22.000000 -52.482300,136.999969,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Diamond -22.000000 -22.000000 -79.000031,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlank - - - - -Gold -22.000000 -22.000000 -105.000015,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlankSmall - - - - -Iron -22.000000 -22.000000 -131.000000,137.000000,0.000000 -4 -false -7 -CXuiCtrlCraftIngredientSlot -ItemIconBlankSmall - - - - -Beacon_1 -20.000000 -20.000000 -38.000000,46.000000,0.000000 -2 -Beacon_1 -false - - - - -Beacon_2 -20.000000 -20.000000 -38.000000,74.000000,0.000000 -2 -Beacon_2 -false - - - - -Beacon_3 -20.000000 -20.000000 -38.000000,104.000000,0.000000 -2 -Beacon_3 -false - - - - -Beacon_4 -20.000000 -20.000000 -238.000000,56.000000,0.000000 -2 -Beacon_4 -false - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -152.000031,2.000000,0.000000 - - - -0 -152.000031,2.000000,0.000000 - - - -2 -100 --100 -50 -152.000031,2.000000,0.000000 - - - -0 -50.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -50.000000,2.000000,0.000000 - - - -0 -152.000031,2.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + BeaconMenu + 640.000000 + 360.000000 + CXuiSceneBeacon + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 26 + + + + easein + 26 + + + + none + 0 + + + + + + Group + 336.000000 + 290.000000 + 152.000031,2.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 78.000000 + 51.000000,164.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 51.000000,252.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + SecondaryPanel + 154.000000 + 120.000000 + 170.000000,12.000000,0.000000 + PanelRecessed + false + + + + + PrimaryPanel + 154.000000 + 120.000000 + 12.000000,12.000000,0.000000 + PanelRecessed + false + + + + + PrimaryText + 150.000000 + 35.000000 + 14.000000,14.000000,0.000000 + 9 + XuiLabelDarkCentredWrapSmall + Primary Power + + + + + SecondaryText + 150.000000 + 40.000000 + 172.000000,14.000000,0.000000 + 3 + XuiLabelDarkCentredWrapSmall + Secondary Power + + + + + PrimaryTierOneOne + 22.000000 + 22.000000 + 80.000000,46.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierOneTwo + 22.000000 + 22.000000 + 111.000000,46.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierTwoOne + 22.000000 + 22.000000 + 80.000000,74.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierTwoTwo + 22.000000 + 22.000000 + 111.000000,74.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + PrimaryTierThree + 22.000000 + 22.000000 + 95.073303,104.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + SecondaryOne + 22.000000 + 22.000000 + 220.000000,84.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + SecondaryTwo + 22.000000 + 22.000000 + 254.000000,84.000000,0.000000 + 2 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + Confirm + 22.000000 + 22.000000 + 261.000092,137.000015,0.000000 + 8 + CXuiCtrlBeaconButton + BeaconButtonSmall + false + + + + + Payment + 24.000000 + 24.000000 + 182.000092,136.000046,0.000000 + 9 + CXuiCtrlSlotList + ItemGridVertical24 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + + Emerald + 22.000000 + 22.000000 + 52.482300,136.999969,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Diamond + 22.000000 + 22.000000 + 79.000031,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlank + + + + + Gold + 22.000000 + 22.000000 + 105.000015,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlankSmall + + + + + Iron + 22.000000 + 22.000000 + 131.000000,137.000000,0.000000 + 4 + false + 7 + CXuiCtrlCraftIngredientSlot + ItemIconBlankSmall + + + + + Beacon_1 + 20.000000 + 20.000000 + 38.000000,46.000000,0.000000 + 2 + Beacon_1 + false + + + + + Beacon_2 + 20.000000 + 20.000000 + 38.000000,74.000000,0.000000 + 2 + Beacon_2 + false + + + + + Beacon_3 + 20.000000 + 20.000000 + 38.000000,104.000000,0.000000 + 2 + Beacon_3 + false + + + + + Beacon_4 + 20.000000 + 20.000000 + 238.000000,56.000000,0.000000 + 2 + Beacon_4 + false + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_brewingstand.xui b/Minecraft.Client/Common/Media/xuiscene_brewingstand.xui index 1e9f6bee..7e395596 100644 --- a/Minecraft.Client/Common/Media/xuiscene_brewingstand.xui +++ b/Minecraft.Client/Common/Media/xuiscene_brewingstand.xui @@ -1,2899 +1,2892 @@ - -1280.000000 -720.000000 - - - -XuiSceneBrewingStand -1280.000000 -720.000000 -CXuiSceneBrewingStand -XuiBlankScene -Pointer - - - -Group -428.000000 -450.000000 -426.000000,95.000000,0.000000 -15 -XuiScene -Pointer - - - -Inventory -382.000000 -150.000000 -25.000000,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -25.000000,379.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -378.000000 -34.000000 -24.000000,210.000000,0.000000 -12 -LabelContainerSceneLeft - - - - -BrewingStandText -380.000000 -34.000000 -24.000000,12.000000,0.000000 -LabelContainerSceneCentre - - - - -BrewingStand -192.000000 -172.000000 -117.000000,42.000000,0.000000 -BrewingBackground - - - - -Progress -27.000000 -84.000000 -244.000000,44.000000,0.000000 -CXuiCtrlBrewProgress -BrewingArrowProgressState -600 - - - - -Ingredient -54.000000 -54.000000 -187.000015,45.000015,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bubbles -36.000000 -84.000000 -148.000061,44.000015,0.000000 -CXuiCtrlBubblesProgress -BrewingBubblesProgressState -30 - - - - -Bottle1 -54.000000 -54.000000 -118.000053,132.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle2 -54.000000 -54.000000 -187.000000,153.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle3 -54.000000 -54.000000 -256.000000,132.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Pointer -42.000000 -42.000000 --185.000000,-63.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -426.000000,95.000000,0.000000 - - - -0 -426.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -424.500031,95.000000,0.000000 - - - -0 -160.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,95.000000,0.000000 - - - -0 -426.000000,95.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneBrewingStand + 1280.000000 + 720.000000 + CXuiSceneBrewingStand + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 16 + + + + none + 17 + + + + easein + 17 + + + + none + 0 + + + + + + Group + 428.000000 + 450.000000 + 426.000000,95.000000,0.000000 + 15 + XuiScene + Pointer + + + + Inventory + 382.000000 + 150.000000 + 25.000000,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 25.000000,379.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 378.000000 + 34.000000 + 24.000000,210.000000,0.000000 + 12 + LabelContainerSceneLeft + + + + + BrewingStandText + 380.000000 + 34.000000 + 24.000000,12.000000,0.000000 + LabelContainerSceneCentre + + + + + BrewingStand + 192.000000 + 172.000000 + 117.000000,42.000000,0.000000 + BrewingBackground + + + + + Progress + 27.000000 + 84.000000 + 244.000000,44.000000,0.000000 + CXuiCtrlBrewProgress + BrewingArrowProgressState + 600 + + + + + Ingredient + 54.000000 + 54.000000 + 187.000015,45.000015,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bubbles + 36.000000 + 84.000000 + 148.000061,44.000015,0.000000 + CXuiCtrlBubblesProgress + BrewingBubblesProgressState + 30 + + + + + Bottle1 + 54.000000 + 54.000000 + 118.000053,132.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle2 + 54.000000 + 54.000000 + 187.000000,153.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle3 + 54.000000 + 54.000000 + 256.000000,132.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-63.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_brewingstand_480.xui b/Minecraft.Client/Common/Media/xuiscene_brewingstand_480.xui index 2ac909f8..eb6499be 100644 --- a/Minecraft.Client/Common/Media/xuiscene_brewingstand_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_brewingstand_480.xui @@ -1,3144 +1,3137 @@ - -640.000000 -480.000000 - - - -XuiSceneBrewingStand -640.000000 -480.000000 -CXuiSceneBrewingStand -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -78.000000 -13.000000,162.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -25.000000 -12.000000,140.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -BrewingStandText -229.000000 -26.000000 -15.500000,7.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -BrewingStand -128.000000 -108.000000 -66.000000,30.000000,0.000000 -BrewingBackground_Small - - - - -Progress -18.000000 -56.000000 -151.000000,29.000000,0.000000 -CXuiCtrlBrewProgress -BrewingArrowProgressStateSmall -600 - - - - -Ingredient -36.000000 -36.000000 -112.000000,30.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bubbles -24.000000 -56.000000 -84.000061,29.000015,0.000000 -CXuiCtrlBubblesProgress -BrewingBubblesProgressStateSmall -30 - - - - -Bottle1 -36.000000 -36.000000 -66.000000,88.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle2 -36.000000 -36.000000 -112.000000,102.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle3 -36.000000 -36.000000 -157.999985,88.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -33.750000,96.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneBrewingStand + 640.000000 + 480.000000 + CXuiSceneBrewingStand + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 16 + + + + easein + 17 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 78.000000 + 13.000000,162.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 25.000000 + 12.000000,140.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + BrewingStandText + 229.000000 + 26.000000 + 15.500000,7.000000,0.000000 + LabelContainerSceneCentreSmall + + + + + BrewingStand + 128.000000 + 108.000000 + 66.000000,30.000000,0.000000 + BrewingBackground_Small + + + + + Progress + 18.000000 + 56.000000 + 151.000000,29.000000,0.000000 + CXuiCtrlBrewProgress + BrewingArrowProgressStateSmall + 600 + + + + + Ingredient + 36.000000 + 36.000000 + 112.000000,30.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bubbles + 24.000000 + 56.000000 + 84.000061,29.000015,0.000000 + CXuiCtrlBubblesProgress + BrewingBubblesProgressStateSmall + 30 + + + + + Bottle1 + 36.000000 + 36.000000 + 66.000000,88.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle2 + 36.000000 + 36.000000 + 112.000000,102.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle3 + 36.000000 + 36.000000 + 157.999985,88.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_brewingstand_Small.xui b/Minecraft.Client/Common/Media/xuiscene_brewingstand_Small.xui index 331f75fa..1c4d2005 100644 --- a/Minecraft.Client/Common/Media/xuiscene_brewingstand_Small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_brewingstand_Small.xui @@ -1,2321 +1,2314 @@ - -640.000000 -360.000000 - - - -XuiSceneBrewingStand -640.000000 -360.000000 -CXuiSceneBrewingStand -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,2.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,161.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -233.000000 -12.000000,139.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -BrewingStandText -229.000000 -26.000000 -15.500000,7.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -BrewingStand -128.000000 -108.000000 -66.000000,30.000000,0.000000 -BrewingBackground_Small - - - - -Progress -18.000000 -56.000000 -151.000000,29.000000,0.000000 -CXuiCtrlBrewProgress -BrewingArrowProgressStateSmall -600 - - - - -Ingredient -36.000000 -36.000000 -112.000000,30.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bubbles -24.000000 -56.000000 -84.000061,29.000015,0.000000 -CXuiCtrlBubblesProgress -BrewingBubblesProgressStateSmall -30 - - - - -Bottle1 -36.000000 -36.000000 -66.000000,88.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle2 -36.000000 -36.000000 -112.000000,102.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Bottle3 -36.000000 -36.000000 -157.999985,88.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridBrewing36 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -52.000000 -52.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - -control_ListItem -36.000000 -36.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonBrewing -..\Images\img1.png -22594 -4 - - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,2.000000,0.000000 - - - -0 -64.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneBrewingStand + 640.000000 + 360.000000 + CXuiSceneBrewingStand + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 16 + + + + easein + 17 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,2.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,161.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 233.000000 + 12.000000,139.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + BrewingStandText + 229.000000 + 26.000000 + 15.500000,7.000000,0.000000 + LabelContainerSceneCentreSmall + + + + + BrewingStand + 128.000000 + 108.000000 + 66.000000,30.000000,0.000000 + BrewingBackground_Small + + + + + Progress + 18.000000 + 56.000000 + 151.000000,29.000000,0.000000 + CXuiCtrlBrewProgress + BrewingArrowProgressStateSmall + 600 + + + + + Ingredient + 36.000000 + 36.000000 + 112.000000,30.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bubbles + 24.000000 + 56.000000 + 84.000061,29.000015,0.000000 + CXuiCtrlBubblesProgress + BrewingBubblesProgressStateSmall + 30 + + + + + Bottle1 + 36.000000 + 36.000000 + 66.000000,88.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle2 + 36.000000 + 36.000000 + 112.000000,102.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Bottle3 + 36.000000 + 36.000000 + 157.999985,88.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridBrewing36 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 52.000000 + 52.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 36.000000 + 36.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonBrewing + ..\Images\img1.png + 22594 + 4 + + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_chat.xui b/Minecraft.Client/Common/Media/xuiscene_chat.xui index 40a61dc6..5d13e668 100644 --- a/Minecraft.Client/Common/Media/xuiscene_chat.xui +++ b/Minecraft.Client/Common/Media/xuiscene_chat.xui @@ -1,226 +1,226 @@ - -1280.000000 -720.000000 - - - -ChatScene -1280.000000 -720.000000 -true -CScene_Chat -XuiBlankScene - - - -XuiBack1 -1280.000000 -35.000000 -0.000000,472.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel1 -1280.000000 -35.000000 -0.000000,472.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack2 -1280.000000 -35.000000 -0.000000,437.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel2 -1280.000000 -35.000000 -0.000000,437.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack3 -1280.000000 -35.000000 -0.000000,402.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel3 -1280.000000 -35.000000 -0.000000,402.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack4 -1280.000000 -35.000000 -0.000000,367.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel4 -1280.000000 -35.000000 -0.000000,367.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack5 -1280.000000 -35.000000 -0.000000,332.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel5 -1280.000000 -35.000000 -0.000000,332.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack6 -1280.000000 -35.000000 -0.000000,297.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel6 -1280.000000 -35.000000 -0.000000,297.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack7 -1280.000000 -35.000000 -0.000000,262.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel7 -1280.000000 -35.000000 -0.000000,262.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack8 -1280.000000 -35.000000 -0.000000,227.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel8 -1280.000000 -35.000000 -0.000000,227.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack9 -1280.000000 -35.000000 -0.000000,192.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel9 -1280.000000 -35.000000 -0.000000,192.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiBack10 -1280.000000 -35.000000 -0.000000,157.000000,0.000000 -0.000000 -XuiLabelChatBackground - - - - -XuiLabel10 -1280.000000 -35.000000 -0.000000,157.000000,0.000000 -0.000000 -XuiLabelChat - - - - -XuiLabelJukebox -640.000000 -35.000000 -320.000031,472.000000,0.000000 -0.000000 -XuiLabelListening - - - + + 1280.000000 + 720.000000 + + + + ChatScene + 1280.000000 + 720.000000 + true + CScene_Chat + XuiBlankScene + + + + XuiBack1 + 1280.000000 + 35.000000 + 0.000000,472.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel1 + 1280.000000 + 35.000000 + 0.000000,472.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack2 + 1280.000000 + 35.000000 + 0.000000,437.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel2 + 1280.000000 + 35.000000 + 0.000000,437.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack3 + 1280.000000 + 35.000000 + 0.000000,402.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel3 + 1280.000000 + 35.000000 + 0.000000,402.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack4 + 1280.000000 + 35.000000 + 0.000000,367.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel4 + 1280.000000 + 35.000000 + 0.000000,367.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack5 + 1280.000000 + 35.000000 + 0.000000,332.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel5 + 1280.000000 + 35.000000 + 0.000000,332.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack6 + 1280.000000 + 35.000000 + 0.000000,297.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel6 + 1280.000000 + 35.000000 + 0.000000,297.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack7 + 1280.000000 + 35.000000 + 0.000000,262.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel7 + 1280.000000 + 35.000000 + 0.000000,262.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack8 + 1280.000000 + 35.000000 + 0.000000,227.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel8 + 1280.000000 + 35.000000 + 0.000000,227.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack9 + 1280.000000 + 35.000000 + 0.000000,192.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel9 + 1280.000000 + 35.000000 + 0.000000,192.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiBack10 + 1280.000000 + 35.000000 + 0.000000,157.000000,0.000000 + 0.000000 + XuiLabelChatBackground + + + + + XuiLabel10 + 1280.000000 + 35.000000 + 0.000000,157.000000,0.000000 + 0.000000 + XuiLabelChat + + + + + XuiLabelJukebox + 640.000000 + 35.000000 + 320.000031,472.000000,0.000000 + 0.000000 + XuiLabelListening + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_chat_480.xui b/Minecraft.Client/Common/Media/xuiscene_chat_480.xui index e8bb3995..0e3dfb6e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_chat_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_chat_480.xui @@ -1,247 +1,247 @@ - -640.000000 -480.000000 - - - -ChatScene -640.000000 -480.000000 -true -CScene_Chat -XuiBlankScene - - - -XuiBack1 -640.000000 -20.000000 -0.000000,325.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel1 -640.000000 -20.000000 -0.000000,325.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack2 -640.000000 -20.000000 -0.000000,305.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel2 -640.000000 -20.000000 -0.000000,305.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack3 -640.000000 -20.000000 -0.000000,285.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel3 -640.000000 -20.000000 -0.000000,285.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack4 -640.000000 -20.000000 -0.000000,265.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel4 -640.000000 -20.000000 -0.000000,265.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack5 -640.000000 -20.000000 -0.000000,245.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel5 -640.000000 -20.000000 -0.000000,245.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack6 -640.000000 -20.000000 -0.000000,225.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel6 -640.000000 -20.000000 -0.000000,225.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack7 -640.000000 -20.000000 -0.000000,205.000015,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel7 -640.000000 -20.000000 -0.000000,205.000015,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack8 -640.000000 -20.000000 -0.000000,185.000015,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel8 -640.000000 -20.000000 -0.000000,185.000015,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack9 -640.000000 -20.000000 -0.000000,165.000015,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel9 -640.000000 -20.000000 -0.000000,165.000015,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack10 -640.000000 -20.000000 -0.000000,145.000015,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel10 -640.000000 -20.000000 -0.000000,145.000015,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiLabelJukebox -640.000000 -20.000000 -0.000031,325.000000,0.000000 -0.000000 -5 -XuiLabelListening_Small - - - + + 640.000000 + 480.000000 + + + + ChatScene + 640.000000 + 480.000000 + true + CScene_Chat + XuiBlankScene + + + + XuiBack1 + 640.000000 + 20.000000 + 0.000000,325.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel1 + 640.000000 + 20.000000 + 0.000000,325.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack2 + 640.000000 + 20.000000 + 0.000000,305.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel2 + 640.000000 + 20.000000 + 0.000000,305.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack3 + 640.000000 + 20.000000 + 0.000000,285.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel3 + 640.000000 + 20.000000 + 0.000000,285.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack4 + 640.000000 + 20.000000 + 0.000000,265.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel4 + 640.000000 + 20.000000 + 0.000000,265.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack5 + 640.000000 + 20.000000 + 0.000000,245.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel5 + 640.000000 + 20.000000 + 0.000000,245.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack6 + 640.000000 + 20.000000 + 0.000000,225.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel6 + 640.000000 + 20.000000 + 0.000000,225.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack7 + 640.000000 + 20.000000 + 0.000000,205.000015,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel7 + 640.000000 + 20.000000 + 0.000000,205.000015,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack8 + 640.000000 + 20.000000 + 0.000000,185.000015,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel8 + 640.000000 + 20.000000 + 0.000000,185.000015,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack9 + 640.000000 + 20.000000 + 0.000000,165.000015,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel9 + 640.000000 + 20.000000 + 0.000000,165.000015,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack10 + 640.000000 + 20.000000 + 0.000000,145.000015,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel10 + 640.000000 + 20.000000 + 0.000000,145.000015,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiLabelJukebox + 640.000000 + 20.000000 + 0.000031,325.000000,0.000000 + 0.000000 + 5 + XuiLabelListening_Small + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_chat_small.xui b/Minecraft.Client/Common/Media/xuiscene_chat_small.xui index 9287f27c..6a8f29c8 100644 --- a/Minecraft.Client/Common/Media/xuiscene_chat_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_chat_small.xui @@ -1,247 +1,247 @@ - -640.000000 -360.000000 - - - -ChatScene -640.000000 -360.000000 -true -CScene_Chat -XuiBlankScene - - - -XuiBack1 -640.000000 -20.000000 -0.000000,215.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel1 -640.000000 -20.000000 -0.000000,215.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack2 -640.000000 -20.000000 -0.000000,195.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel2 -640.000000 -20.000000 -0.000000,195.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack3 -640.000000 -20.000000 -0.000000,175.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel3 -640.000000 -20.000000 -0.000000,175.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack4 -640.000000 -20.000000 -0.000000,155.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel4 -640.000000 -20.000000 -0.000000,155.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack5 -640.000000 -20.000000 -0.000000,135.000000,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel5 -640.000000 -20.000000 -0.000000,135.000000,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack6 -640.000000 -20.000000 -0.000000,115.000008,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel6 -640.000000 -20.000000 -0.000000,115.000008,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack7 -640.000000 -20.000000 -0.000000,95.000008,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel7 -640.000000 -20.000000 -0.000000,95.000008,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack8 -640.000000 -20.000000 -0.000000,75.000008,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel8 -640.000000 -20.000000 -0.000000,75.000008,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack9 -640.000000 -20.000000 -0.000000,55.000008,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel9 -640.000000 -20.000000 -0.000000,55.000008,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiBack10 -640.000000 -20.000000 -0.000000,35.000008,0.000000 -0.000000 -5 -XuiLabelChatBackground - - - - -XuiLabel10 -640.000000 -20.000000 -0.000000,35.000008,0.000000 -0.000000 -5 -XuiLabelChat_Small - - - - -XuiLabelJukebox -640.000000 -20.000000 -0.000031,215.000000,0.000000 -0.000000 -5 -XuiLabelListening_Small - - - + + 640.000000 + 360.000000 + + + + ChatScene + 640.000000 + 360.000000 + true + CScene_Chat + XuiBlankScene + + + + XuiBack1 + 640.000000 + 20.000000 + 0.000000,215.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel1 + 640.000000 + 20.000000 + 0.000000,215.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack2 + 640.000000 + 20.000000 + 0.000000,195.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel2 + 640.000000 + 20.000000 + 0.000000,195.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack3 + 640.000000 + 20.000000 + 0.000000,175.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel3 + 640.000000 + 20.000000 + 0.000000,175.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack4 + 640.000000 + 20.000000 + 0.000000,155.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel4 + 640.000000 + 20.000000 + 0.000000,155.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack5 + 640.000000 + 20.000000 + 0.000000,135.000000,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel5 + 640.000000 + 20.000000 + 0.000000,135.000000,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack6 + 640.000000 + 20.000000 + 0.000000,115.000008,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel6 + 640.000000 + 20.000000 + 0.000000,115.000008,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack7 + 640.000000 + 20.000000 + 0.000000,95.000008,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel7 + 640.000000 + 20.000000 + 0.000000,95.000008,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack8 + 640.000000 + 20.000000 + 0.000000,75.000008,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel8 + 640.000000 + 20.000000 + 0.000000,75.000008,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack9 + 640.000000 + 20.000000 + 0.000000,55.000008,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel9 + 640.000000 + 20.000000 + 0.000000,55.000008,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiBack10 + 640.000000 + 20.000000 + 0.000000,35.000008,0.000000 + 0.000000 + 5 + XuiLabelChatBackground + + + + + XuiLabel10 + 640.000000 + 20.000000 + 0.000000,35.000008,0.000000 + 0.000000 + 5 + XuiLabelChat_Small + + + + + XuiLabelJukebox + 640.000000 + 20.000000 + 0.000031,215.000000,0.000000 + 0.000000 + 5 + XuiLabelListening_Small + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_connectingprogress.xui b/Minecraft.Client/Common/Media/xuiscene_connectingprogress.xui index 7ccd9692..aba490a2 100644 --- a/Minecraft.Client/Common/Media/xuiscene_connectingprogress.xui +++ b/Minecraft.Client/Common/Media/xuiscene_connectingprogress.xui @@ -1,923 +1,68 @@ - -1280.000000 -720.000000 - - - -ConnectingProgressScene -1280.000000 -720.000000 -CScene_ConnectingProgress -XuiMenuScene -ButtonConfirm - - - -Status -383.000000 -26.000000 -319.000000,360.000000,0.000000 -XuiLabel - - - - -Title -700.000000 -100.000000 -290.000061,250.000000,0.000000 -XuiTitle - - - - -Progress -640.000000 -15.000000 -320.000000,390.000000,0.000000 -false -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -Timer -183.000000 -169.000000 -548.500061,330.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -ButtonConfirm -320.000000 -50.000000 -480.000031,530.000000,0.000000 -false - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 1280.000000 + 720.000000 + + + + ConnectingProgressScene + 1280.000000 + 720.000000 + CScene_ConnectingProgress + XuiMenuScene + ButtonConfirm + + + + Status + 383.000000 + 26.000000 + 319.000000,360.000000,0.000000 + XuiLabel + + + + + Title + 700.000000 + 100.000000 + 290.000061,250.000000,0.000000 + XuiTitle + + + + + Progress + 640.000000 + 15.000000 + 320.000000,390.000000,0.000000 + false + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + Timer + 183.000000 + 169.000000 + 548.500061,330.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_connectingprogress_480.xui b/Minecraft.Client/Common/Media/xuiscene_connectingprogress_480.xui index f3f1fe28..379c1bc4 100644 --- a/Minecraft.Client/Common/Media/xuiscene_connectingprogress_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_connectingprogress_480.xui @@ -1,923 +1,78 @@ - -640.000000 -480.000000 - - - -ConnectingProgressScene -640.000000 -480.000000 -CScene_ConnectingProgress -XuiMenuScene -ButtonConfirm - - - -Status -383.000000 -26.000000 -70.000000,232.666656,0.000000 -XuiLabel - - - - -Title -500.000000 -50.000000 -70.000015,130.000000,0.000000 -XuiTitleSmall - - - - -Progress -500.000000 -15.000000 -70.000046,259.000000,0.000000 -false -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -ButtonConfirm -160.000000 -36.000000 -240.000000,348.000000,0.000000 -false - - - - -Timer -72.000000 -72.000000 -284.000000,177.000000,0.000000 -15 -false -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 640.000000 + 480.000000 + + + + ConnectingProgressScene + 640.000000 + 480.000000 + CScene_ConnectingProgress + XuiMenuScene + ButtonConfirm + + + + Status + 383.000000 + 26.000000 + 70.000000,232.666656,0.000000 + XuiLabel + + + + + Title + 500.000000 + 50.000000 + 70.000015,130.000000,0.000000 + XuiTitleSmall + + + + + Progress + 500.000000 + 15.000000 + 70.000046,259.000000,0.000000 + false + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + ButtonConfirm + 160.000000 + 36.000000 + 240.000000,348.000000,0.000000 + false + + + + + Timer + 72.000000 + 72.000000 + 284.000000,177.000000,0.000000 + 15 + false + XuiBlankScene + + + + Timer_Square_1 + 21.000000 + 21.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_connectingprogress_small.xui b/Minecraft.Client/Common/Media/xuiscene_connectingprogress_small.xui index 30907d7d..794a11be 100644 --- a/Minecraft.Client/Common/Media/xuiscene_connectingprogress_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_connectingprogress_small.xui @@ -1,923 +1,68 @@ - -640.000000 -360.000000 - - - -ConnectingProgressScene -640.000000 -360.000000 -CScene_ConnectingProgress -XuiMenuScene -ButtonConfirm - - - -Status -383.000000 -26.000000 -70.000000,194.666656,0.000000 -XuiLabel - - - - -Title -500.000000 -50.000000 -70.000015,120.000000,0.000000 -XuiTitleSmall - - - - -Progress -500.000000 -15.000000 -70.000046,221.000000,0.000000 -false -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -Timer -91.000000 -84.000000 -275.000000,174.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 --29.999992,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -24.499992,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -79.000008,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -79.000008,46.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -79.000008,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -24.499992,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 --29.999992,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 --29.999992,46.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 --29.999992,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -24.499992,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -79.000008,-9.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -79.000008,46.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -79.000008,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -24.499992,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 --29.999992,101.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 --29.999992,46.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -ButtonConfirm -160.000000 -25.000000 -240.000000,267.000000,0.000000 -false - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 640.000000 + 360.000000 + + + + ConnectingProgressScene + 640.000000 + 360.000000 + CScene_ConnectingProgress + XuiMenuScene + ButtonConfirm + + + + Status + 383.000000 + 26.000000 + 70.000000,194.666656,0.000000 + XuiLabel + + + + + Title + 500.000000 + 50.000000 + 70.000015,120.000000,0.000000 + XuiTitleSmall + + + + + Progress + 500.000000 + 15.000000 + 70.000046,221.000000,0.000000 + false + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + Timer + 91.000000 + 84.000000 + 275.000000,174.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + -29.999992,-9.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_container.xui b/Minecraft.Client/Common/Media/xuiscene_container.xui index ef582e5b..0495db23 100644 --- a/Minecraft.Client/Common/Media/xuiscene_container.xui +++ b/Minecraft.Client/Common/Media/xuiscene_container.xui @@ -1,961 +1,954 @@ - -1280.000000 -720.000000 - - - -XuiSceneContainer -1280.000000 -720.000000 -15 -CXuiSceneContainer -XuiBlankScene -Pointer - - - -Group -430.000000 -415.000000 -425.000000,138.000000,0.000000 -15 -XuiScene -Pointer - - - -Inventory -382.000000 -150.000000 -25.000000,212.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -25.000000,352.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Container -383.000000 -128.000015 -25.000000,50.000000,0.000000 -10 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -340.000000 -32.000000 -26.000000,182.000000,0.000000 -12 -LabelContainerSceneLeft - - - - -ChestText -340.000000 -26.000000 -26.000000,17.000000,0.000000 -LabelContainerSceneLeft - - - - -Pointer -42.000000 -42.000000 --185.000000,-80.000015,0.000000 -9 -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -425.000000,138.000000,0.000000 - - - -0 -425.000000,138.000000,0.000000 - - - -2 -100 --100 -50 -425.000000,138.000000,0.000000 - - - -0 -160.000000,138.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,138.000000,0.000000 - - - -0 -425.000000,138.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneContainer + 1280.000000 + 720.000000 + 15 + CXuiSceneContainer + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 8 + + + + none + 0 + + + + + + Group + 430.000000 + 415.000000 + 425.000000,138.000000,0.000000 + 15 + XuiScene + Pointer + + + + Inventory + 382.000000 + 150.000000 + 25.000000,212.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 25.000000,352.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Container + 383.000000 + 128.000015 + 25.000000,50.000000,0.000000 + 10 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 340.000000 + 32.000000 + 26.000000,182.000000,0.000000 + 12 + LabelContainerSceneLeft + + + + + ChestText + 340.000000 + 26.000000 + 26.000000,17.000000,0.000000 + LabelContainerSceneLeft + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-80.000015,0.000000 + 9 + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_container_480.xui b/Minecraft.Client/Common/Media/xuiscene_container_480.xui index 491f1e15..6a156d96 100644 --- a/Minecraft.Client/Common/Media/xuiscene_container_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_container_480.xui @@ -1,1610 +1,1603 @@ - -640.000000 -480.000000 - - - -XuiSceneContainer -640.000000 -480.000000 -15 -CXuiSceneContainer -XuiBlankScene -Pointer - - - -Group -258.000000 -260.000000 -191.000000,110.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -78.000000 -12.000000,132.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -26.000000 -12.000000,222.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Container -234.000000 -78.000000 -12.000000,30.000000,0.000000 -10 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -22.000000 -12.000000,110.000000,0.000000 -12 -LabelContainerSceneLeftSmall - - - - -ChestText -234.000000 -22.000000 -12.000000,8.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -191.000000,110.000000,0.000000 - - - -0 -191.000000,110.000000,0.000000 - - - -2 -100 --100 -50 -191.000000,110.000000,0.000000 - - - -0 -33.750000,110.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,110.000000,0.000000 - - - -0 -191.000000,110.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneContainer + 640.000000 + 480.000000 + 15 + CXuiSceneContainer + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 258.000000 + 260.000000 + 191.000000,110.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 78.000000 + 12.000000,132.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 26.000000 + 12.000000,222.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Container + 234.000000 + 78.000000 + 12.000000,30.000000,0.000000 + 10 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 22.000000 + 12.000000,110.000000,0.000000 + 12 + LabelContainerSceneLeftSmall + + + + + ChestText + 234.000000 + 22.000000 + 12.000000,8.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_container_large_480.xui b/Minecraft.Client/Common/Media/xuiscene_container_large_480.xui index 4e770d10..2903b220 100644 --- a/Minecraft.Client/Common/Media/xuiscene_container_large_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_container_large_480.xui @@ -1,2474 +1,2467 @@ - -640.000000 -480.000000 - - - -XuiSceneContainer -640.000000 -480.000000 -15 -CXuiSceneContainer -XuiBlankScene -Pointer - - - -Group -238.000000 -240.000000 -201.000000,80.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -216.000000 -72.000000 -12.000000,126.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical24 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -UseRow -216.000000 -24.000000 -12.000000,206.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical24 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -Container -216.000000 -78.000000 -12.000000,28.000000,0.000000 -10 -CXuiCtrlSlotList -ItemGridVertical24 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - -control_ListItem -24.000000 -24.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton24 -22594 -4 - - - - - -InventoryText -210.000000 -22.000000 -13.000000,104.000000,0.000000 -12 -LabelContainerSceneLeftSmall - - - - -ChestText -210.000000 -20.000000 -12.000000,8.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-114.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -201.000000,80.000000,0.000000 - - - -0 -201.000000,80.000000,0.000000 - - - -2 -100 --100 -50 -201.000000,80.000000,0.000000 - - - -0 -33.750000,80.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,80.000000,0.000000 - - - -0 -201.000000,80.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneContainer + 640.000000 + 480.000000 + 15 + CXuiSceneContainer + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 238.000000 + 240.000000 + 201.000000,80.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 216.000000 + 72.000000 + 12.000000,126.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical24 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + + UseRow + 216.000000 + 24.000000 + 12.000000,206.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical24 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + + Container + 216.000000 + 78.000000 + 12.000000,28.000000,0.000000 + 10 + CXuiCtrlSlotList + ItemGridVertical24 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + control_ListItem + 24.000000 + 24.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton24 + 22594 + 4 + + + + + + InventoryText + 210.000000 + 22.000000 + 13.000000,104.000000,0.000000 + 12 + LabelContainerSceneLeftSmall + + + + + ChestText + 210.000000 + 20.000000 + 12.000000,8.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-114.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_container_large_Small.xui b/Minecraft.Client/Common/Media/xuiscene_container_large_Small.xui index 64bca25a..77b6acee 100644 --- a/Minecraft.Client/Common/Media/xuiscene_container_large_Small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_container_large_Small.xui @@ -1,962 +1,955 @@ - -640.000000 -360.000000 - - - -XuiSceneContainer -640.000000 -360.000000 -15 -CXuiSceneContainer -XuiBlankScene -Pointer - - - -Group -222.000000 -228.000000 -201.000000,34.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -216.000000 -72.000000 -12.000000,118.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -216.000000 -22.000000 -12.000000,197.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -Container -216.000000 -72.000000 -12.000000,33.000000,0.000000 -10 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -InventoryText -195.000000 -22.000000 -12.000000,100.000000,0.000000 -12 -LabelContainerSceneLeftSmall - - - - -ChestText -198.000000 -20.000000 -12.000000,11.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -22.000000 -22.000000 --50.000000,-77.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -201.000000,34.000000,0.000000 - - - -0 -201.000000,34.000000,0.000000 - - - -2 -100 --100 -50 -201.000000,34.000000,0.000000 - - - -0 -64.000000,34.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,34.000000,0.000000 - - - -0 -201.000000,34.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneContainer + 640.000000 + 360.000000 + 15 + CXuiSceneContainer + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 222.000000 + 228.000000 + 201.000000,34.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 216.000000 + 72.000000 + 12.000000,118.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 216.000000 + 22.000000 + 12.000000,197.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + Container + 216.000000 + 72.000000 + 12.000000,33.000000,0.000000 + 10 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + InventoryText + 195.000000 + 22.000000 + 12.000000,100.000000,0.000000 + 12 + LabelContainerSceneLeftSmall + + + + + ChestText + 198.000000 + 20.000000 + 12.000000,11.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 22.000000 + 22.000000 + -50.000000,-77.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_container_small.xui b/Minecraft.Client/Common/Media/xuiscene_container_small.xui index 1b04cd43..4dd4f8e0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_container_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_container_small.xui @@ -1,907 +1,900 @@ - -640.000000 -360.000000 - - - -XuiSceneContainer -640.000000 -360.000000 -15 -CXuiSceneContainer -XuiBlankScene -Pointer - - - -Group -258.000000 -260.000000 -190.000000,2.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,132.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,222.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Container -234.000000 -85.000000 -12.000000,30.000000,0.000000 -10 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -22.000000 -12.000000,110.000000,0.000000 -12 -LabelContainerSceneLeftSmall - - - - -ChestText -234.000000 -22.000000 -12.000000,8.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-45.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,2.000000,0.000000 - - - -0 -64.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneContainer + 640.000000 + 360.000000 + 15 + CXuiSceneContainer + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 258.000000 + 260.000000 + 190.000000,2.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,132.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,222.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Container + 234.000000 + 85.000000 + 12.000000,30.000000,0.000000 + 10 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 22.000000 + 12.000000,110.000000,0.000000 + 12 + LabelContainerSceneLeftSmall + + + + + ChestText + 234.000000 + 22.000000 + 12.000000,8.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-45.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_controls.xui b/Minecraft.Client/Common/Media/xuiscene_controls.xui index 614b3269..f22718b3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_controls.xui +++ b/Minecraft.Client/Common/Media/xuiscene_controls.xui @@ -1,1272 +1,171 @@ - -1280.000000 -720.000000 - - - -SceneControls -1280.000000 -720.000000 -CScene_Controls -XuiMenuScene -SchemeList - - - -Controller -400.000000 -270.000000 -448.000000,338.000000,0.000000 -ControllerGraphic - - - - -SchemeList -480.000000 -128.000000 -400.000031,194.000000,0.000000 -CXuiCtrl4JList -XuiLayoutList -InvertLook - - - -control_ListItem -100.000000 -20.000000 -16.000000,32.000000,0.000000 -5 -false - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -140.000000 -40.000000 -20.000000,40.000000,0.000000 -5 -false -XuiLayoutListButton -1 -140.000000,40.000000,0.000000 -10.000000,0.000000,0.000000 - - - - -control_ListItem -140.000000 -40.000000 -20.000000,40.000000,0.000000 -5 -false -XuiLayoutListButton -1 -140.000000,40.000000,0.000000 -10.000000,0.000000,0.000000 - - - - -control_ListItem -140.000000 -40.000000 -20.000000,40.000000,0.000000 -5 -false -XuiLayoutListButton -1 -140.000000,40.000000,0.000000 -10.000000,0.000000,0.000000 - - - - -control_ListItem -140.000000 -40.000000 -20.000000,40.000000,0.000000 -5 -false -XuiLayoutListButton -1 -140.000000,40.000000,0.000000 -10.000000,0.000000,0.000000 - - - - - -InvertLook -216.000000 -32.000000 -420.000031,282.000000,0.000000 -5 -XuiCheckbox -SouthPaw -SouthPaw -SchemeList -22528 - - - - -SouthPaw -215.000000 -32.000000 -644.000000,282.000000,0.000000 -5 -XuiCheckbox -InvertLook -InvertLook -SchemeList -22528 - - - - -FigGroup -1280.000000 -720.000000 -48 - - - -Dpad -1280.000000 -720.000000 -48 - - - -FigDpad -155.000000 -4.000000 -432.000000,606.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -85.000000 -584.000000,525.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadL -1280.000000 -720.000000 -48 - - - -4.000000 -102.000000 -599.000000,522.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigDpadL -170.000000 -4.000000 -432.000000,620.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadR -1280.000000 -720.000000 -48 - - - -FigDpadR -140.000000 -4.000000 -432.000000,590.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -72.000000 -569.000000,522.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LT -1280.000000 -720.000000 -48 - - - -FigLT -110.000000 -4.000000 -432.000000,370.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RT -1280.000000 -720.000000 -48 - - - -FigRT -112.000000 -4.000000 -738.000000,370.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStick -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,470.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStick -105.000000 -4.000000 -432.000000,496.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStick -1280.000000 -720.000000 -48 - - - -4.000000 -65.000000 -690.000000,529.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStick -160.000000 -4.000000 -690.000000,590.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,500.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStickButton -105.000000 -4.000000 -432.000000,526.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -690.000000,594.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStickButton -160.000000 -4.000000 -690.000000,620.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LB -1280.000000 -720.000000 -48 - - - -FigLB -100.000000 -4.000000 -432.000000,399.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RB -1280.000000 -720.000000 -48 - - - -FigRB -100.000000 -4.000000 -750.000000,399.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Back -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -599.000000,341.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigBack -170.000000 -4.000000 -432.000000,341.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Start -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -677.000000,341.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigStart -173.000000 -4.000000 -677.000000,341.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Y -1280.000000 -720.000000 -48 - - - -FigY -100.000000 -4.000000 -750.000000,436.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -X -1280.000000 -720.000000 -48 - - - -FigX -131.000000 -4.000000 -719.000000,526.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -63.000000 -719.000000,466.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -B -1280.000000 -720.000000 -48 - - - -FigB -70.000000 -4.000000 -780.000000,466.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -A -1280.000000 -720.000000 -48 - - - -FigA -100.000000 -4.000000 -750.000000,496.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiText1 -421.000000 -86.583344 -433.000000,256.416656,0.000000 -true -The names of these groups and the Fig name inside them is used in the code for placement - don't change the names! -0xff0f0f0f -0x800f0f0f -0 - - - - - -CurrentLayout -460.000000 -22.000000 -410.000031,206.000000,0.000000 -XuiLabelDarkCentred - - - - -XuiBuildVer -238.000000 -28.000000 -93.000000,616.000000,0.000000 -XuiLabelDark - - - - -2.000000 -408.000000 -850.000000,236.000000,0.000000 -true - - -0xff0f0f80 - - - - -0xff0f0f0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,112.000000,0.000000,0,112.000000,0.000000,112.000000,0.000000,112.000000,408.000000,0,112.000000,408.000000,112.000000,408.000000,0.000000,408.000000,0,0.000000,408.000000,0.000000,408.000000,0.000000,0.000000,0, - - - - -2.000000 -408.000000 -430.000000,236.000000,0.000000 -true - - -0xff0f0f80 - - - - -0xff0f0f0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,112.000000,0.000000,0,112.000000,0.000000,112.000000,0.000000,112.000000,408.000000,0,112.000000,408.000000,112.000000,408.000000,0.000000,408.000000,0,0.000000,408.000000,0.000000,408.000000,0.000000,0.000000,0, - - - - -XuiLabel1 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel2 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel3 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel4 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel5 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel6 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel7 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel8 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel9 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel10 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel11 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel12 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel13 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel14 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel15 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel16 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - - -XuiLabel17 -109.000000 -36.000000 -228.000000,232.000000,0.000000 -false -LabelControlsSceneAction - - - + + 1280.000000 + 720.000000 + + + + SceneControls + 1280.000000 + 720.000000 + CScene_Controls + XuiMenuScene + SchemeList + + + + Controller + 400.000000 + 270.000000 + 448.000000,338.000000,0.000000 + ControllerGraphic + + + + + SchemeList + 480.000000 + 128.000000 + 400.000031,194.000000,0.000000 + CXuiCtrl4JList + XuiLayoutList + InvertLook + + + + control_ListItem + 100.000000 + 20.000000 + 16.000000,32.000000,0.000000 + 5 + false + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 140.000000 + 40.000000 + 20.000000,40.000000,0.000000 + 5 + false + XuiLayoutListButton + 1 + 140.000000,40.000000,0.000000 + 10.000000,0.000000,0.000000 + + + + + control_ListItem + 140.000000 + 40.000000 + 20.000000,40.000000,0.000000 + 5 + false + XuiLayoutListButton + 1 + 140.000000,40.000000,0.000000 + 10.000000,0.000000,0.000000 + + + + + control_ListItem + 140.000000 + 40.000000 + 20.000000,40.000000,0.000000 + 5 + false + XuiLayoutListButton + 1 + 140.000000,40.000000,0.000000 + 10.000000,0.000000,0.000000 + + + + + control_ListItem + 140.000000 + 40.000000 + 20.000000,40.000000,0.000000 + 5 + false + XuiLayoutListButton + 1 + 140.000000,40.000000,0.000000 + 10.000000,0.000000,0.000000 + + + + + + InvertLook + 216.000000 + 32.000000 + 420.000031,282.000000,0.000000 + 5 + XuiCheckbox + SouthPaw + SouthPaw + SchemeList + 22528 + + + + + SouthPaw + 215.000000 + 32.000000 + 644.000000,282.000000,0.000000 + 5 + XuiCheckbox + InvertLook + InvertLook + SchemeList + 22528 + + + + + FigGroup + 1280.000000 + 720.000000 + 48 + + + + Dpad + 1280.000000 + 720.000000 + 48 + + + + FigDpad + 155.000000 + 4.000000 + 432.000000,606.000000,0.000000 + true + + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_controls_480.xui b/Minecraft.Client/Common/Media/xuiscene_controls_480.xui index 6509b1b3..c324e5d3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_controls_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_controls_480.xui @@ -1,1254 +1,195 @@ - -640.000000 -480.000000 - - - -SceneControls -640.000000 -480.000000 -CScene_Controls -XuiMenuScene -SchemeList - - - -Controller -400.000000 -270.000000 -224.000000,249.000000,0.000000 -0.500000,0.500000,1.000000 -ControllerGraphic - - - - -SchemeList -366.000000 -90.000000 -137.000000,136.000000,0.000000 -CXuiCtrl4JList -XuiLayoutListSmall -InvertLook - - - -control_ListItem -100.000000 -20.000000 -16.000000,32.000000,0.000000 -5 -false - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -InvertLook -156.000000 -20.000000 -156.999969,195.000000,0.000000 -XuiCheckboxSmall -SouthPaw -SouthPaw -SchemeList -22528 - - - - -SouthPaw -156.000000 -20.000000 -324.000000,195.000000,0.000000 -XuiCheckboxSmall -InvertLook -InvertLook -SchemeList -22528 - - - - -FigGroup -1280.000000 -720.000000 -0.500000,0.500000,0.500000 -48 - - - -Dpad -1280.000000 -720.000000 -48 - - - -FigDpad -155.000000 -4.000000 -432.000000,766.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -85.000000 -584.000000,684.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadL -1280.000000 -720.000000 -48 - - - -4.000000 -102.000000 -599.000000,682.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigDpadL -170.000000 -4.000000 -432.000000,780.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadR -1280.000000 -720.000000 -48 - - - -FigDpadR -140.000000 -4.000000 -432.000000,750.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -72.000000 -569.000000,682.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LT -1280.000000 -720.000000 -48 - - - -FigLT -110.000000 -4.000000 -432.000000,530.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RT -1280.000000 -720.000000 -48 - - - -FigRT -112.000000 -4.000000 -738.000000,530.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStick -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,630.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStick -105.000000 -4.000000 -432.000000,656.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStick -1280.000000 -720.000000 -48 - - - -4.000000 -65.000000 -690.000000,689.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStick -160.000000 -4.000000 -690.000000,750.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,660.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStickButton -105.000000 -4.000000 -432.000000,686.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -690.000000,754.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStickButton -160.000000 -4.000000 -690.000000,780.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LB -1280.000000 -720.000000 -48 - - - -FigLB -100.000000 -4.000000 -432.000000,559.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RB -1280.000000 -720.000000 -48 - - - -FigRB -100.000000 -4.000000 -750.000000,559.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Back -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -599.000000,501.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigBack -170.000000 -4.000000 -432.000000,501.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Start -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -677.000000,501.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigStart -173.000000 -4.000000 -677.000000,501.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Y -1280.000000 -720.000000 -48 - - - -FigY -100.000000 -4.000000 -750.000000,596.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -X -1280.000000 -720.000000 -48 - - - -FigX -131.000000 -4.000000 -719.000000,686.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -63.000000 -719.000000,626.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -B -1280.000000 -720.000000 -48 - - - -FigB -70.000000 -4.000000 -780.000000,626.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -A -1280.000000 -720.000000 -48 - - - -FigA -100.000000 -4.000000 -750.000000,656.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiText1 -421.000000 -86.583344 -429.500031,331.416656,0.000000 -true -The names of these groups and the Fig name inside them is used in the code for placement - don't change the names! -0xff0f0f0f -0x800f0f0f -0 - - - - - -CurrentLayout -344.000000 -20.000000 -148.000000,144.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -XuiBuildVer -238.000000 -28.000000 -93.000000,398.000000,0.000000 -XuiLabelDarkSmall - - - - -XuiLabel1 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel2 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel3 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel4 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel5 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel6 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel7 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel8 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel9 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel10 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel11 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel12 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel13 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel14 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel15 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel16 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel17 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - + + 640.000000 + 480.000000 + + + + SceneControls + 640.000000 + 480.000000 + CScene_Controls + XuiMenuScene + SchemeList + + + + Controller + 400.000000 + 270.000000 + 224.000000,249.000000,0.000000 + 0.500000,0.500000,1.000000 + ControllerGraphic + + + + + SchemeList + 366.000000 + 90.000000 + 137.000000,136.000000,0.000000 + CXuiCtrl4JList + XuiLayoutListSmall + InvertLook + + + + control_ListItem + 100.000000 + 20.000000 + 16.000000,32.000000,0.000000 + 5 + false + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + + InvertLook + 156.000000 + 20.000000 + 156.999969,195.000000,0.000000 + XuiCheckboxSmall + SouthPaw + SouthPaw + SchemeList + 22528 + + + + + SouthPaw + 156.000000 + 20.000000 + 324.000000,195.000000,0.000000 + XuiCheckboxSmall + InvertLook + InvertLook + SchemeList + 22528 + + + + + FigGroup + 1280.000000 + 720.000000 + 0.500000,0.500000,0.500000 + 48 + + + + Dpad + 1280.000000 + 720.000000 + 48 + + + + FigDpad + 155.000000 + 4.000000 + 432.000000,766.000000,0.000000 + true + + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_controls_small.xui b/Minecraft.Client/Common/Media/xuiscene_controls_small.xui index 2bc51771..def8932e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_controls_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_controls_small.xui @@ -1,1230 +1,171 @@ - -640.000000 -360.000000 - - - -SceneControls -1280.000000 -720.000000 -CScene_Controls -XuiMenuScene -SchemeList - - - -Controller -400.000000 -270.000000 -224.000000,139.000000,0.000000 -0.500000,0.500000,1.000000 -ControllerGraphic - - - - -SchemeList -366.000000 -90.000000 -137.000000,35.000000,0.000000 -CXuiCtrl4JList -XuiLayoutListSmall -InvertLook - - - -control_ListItem -100.000000 -20.000000 -16.000000,32.000000,0.000000 -5 -false - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - -control_ListItem -84.000000 -24.000000 -40.000000,30.000000,0.000000 -5 -false -XuiLayoutListButtonSmall -1 -84.000000,24.000000,0.000000 -17.000000,0.000000,0.000000 - - - - - -InvertLook -156.000000 -20.000000 -156.999969,95.000000,0.000000 -XuiCheckboxSmall -SouthPaw -SouthPaw -SchemeList -22528 - - - - -SouthPaw -156.000000 -20.000000 -324.000000,95.000000,0.000000 -XuiCheckboxSmall -InvertLook -InvertLook -SchemeList -22528 - - - - -FigGroup -1280.000000 -720.000000 -0.500000,0.500000,0.500000 -48 - - - -Dpad -1280.000000 -720.000000 -48 - - - -FigDpad -155.000000 -4.000000 -432.000000,542.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -82.000000 -584.000000,464.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadL -1280.000000 -720.000000 -48 - - - -4.000000 -102.000000 -599.000000,462.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigDpadL -170.000000 -4.000000 -432.000000,560.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -DpadR -1280.000000 -720.000000 -48 - - - -FigDpadR -140.000000 -4.000000 -432.000000,530.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -72.000000 -569.000000,462.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LT -1280.000000 -720.000000 -48 - - - -FigLT -110.000000 -4.000000 -432.000000,310.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RT -1280.000000 -720.000000 -48 - - - -FigRT -112.000000 -4.000000 -738.000000,310.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStick -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,410.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStick -105.000000 -4.000000 -432.000000,436.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStick -1280.000000 -720.000000 -48 - - - -4.000000 -65.000000 -690.000000,469.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStick -160.000000 -4.000000 -690.000000,530.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -533.000000,440.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigLStickButton -105.000000 -4.000000 -432.000000,466.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RStickButton -1280.000000 -720.000000 -48 - - - -4.000000 -690.000000,534.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigRStickButton -160.000000 -4.000000 -690.000000,560.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -LB -1280.000000 -720.000000 -48 - - - -FigLB -100.000000 -4.000000 -432.000000,339.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -RB -1280.000000 -720.000000 -48 - - - -FigRB -100.000000 -4.000000 -750.000000,339.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Back -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -599.000000,281.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigBack -170.000000 -4.000000 -432.000000,281.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Start -1280.000000 -720.000000 -48 - - - -4.000000 -130.000000 -677.000000,281.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -FigStart -173.000000 -4.000000 -677.000000,281.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -Y -1280.000000 -720.000000 -48 - - - -FigY -100.000000 -4.000000 -750.000000,376.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -X -1280.000000 -720.000000 -48 - - - -FigX -131.000000 -4.000000 -719.000000,466.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - -4.000000 -63.000000 -719.000000,406.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -B -1280.000000 -720.000000 -48 - - - -FigB -70.000000 -4.000000 -780.000000,406.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -A -1280.000000 -720.000000 -48 - - - -FigA -100.000000 -4.000000 -750.000000,436.000000,0.000000 - - -0xff0f0f80 - - - - -0xffebcc0f - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,187.000000,0.000000,0,187.000000,0.000000,187.000000,0.000000,187.000000,8.000000,0,187.000000,8.000000,187.000000,8.000000,0.000000,8.000000,0,0.000000,8.000000,0.000000,8.000000,0.000000,0.000000,0, - - - - - -XuiText1 -421.000000 -86.583344 -433.000000,256.416656,0.000000 -true -The names of these groups and the Fig name inside them is used in the code for placement - don't change the names! -0xff0f0f0f -0x800f0f0f -0 - - - - - -CurrentLayout -344.000000 -20.000000 -148.000000,44.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -XuiBuildVer -238.000000 -28.000000 -93.000000,331.000000,0.000000 -XuiLabelDark - - - - -XuiLabel1 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel2 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel3 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel4 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel5 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel6 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel7 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel8 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel9 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel10 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel11 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel12 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel13 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel14 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel15 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel16 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - - -XuiLabel17 -109.000000 -36.000000 -17.000000,232.000000,0.000000 -false -LabelControlsSceneActionSmall - - - + + 640.000000 + 360.000000 + + + + SceneControls + 1280.000000 + 720.000000 + CScene_Controls + XuiMenuScene + SchemeList + + + + Controller + 400.000000 + 270.000000 + 224.000000,139.000000,0.000000 + 0.500000,0.500000,1.000000 + ControllerGraphic + + + + + SchemeList + 366.000000 + 90.000000 + 137.000000,35.000000,0.000000 + CXuiCtrl4JList + XuiLayoutListSmall + InvertLook + + + + control_ListItem + 100.000000 + 20.000000 + 16.000000,32.000000,0.000000 + 5 + false + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + control_ListItem + 84.000000 + 24.000000 + 40.000000,30.000000,0.000000 + 5 + false + XuiLayoutListButtonSmall + 1 + 84.000000,24.000000,0.000000 + 17.000000,0.000000,0.000000 + + + + + + InvertLook + 156.000000 + 20.000000 + 156.999969,95.000000,0.000000 + XuiCheckboxSmall + SouthPaw + SouthPaw + SchemeList + 22528 + + + + + SouthPaw + 156.000000 + 20.000000 + 324.000000,95.000000,0.000000 + XuiCheckboxSmall + InvertLook + InvertLook + SchemeList + 22528 + + + + + FigGroup + 1280.000000 + 720.000000 + 0.500000,0.500000,0.500000 + 48 + + + + Dpad + 1280.000000 + 720.000000 + 48 + + + + FigDpad + 155.000000 + 4.000000 + 432.000000,542.000000,0.000000 + true + + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2.xui index 75cf815a..0b0d231d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2.xui @@ -1,2605 +1,2598 @@ - -1280.000000 -720.000000 - - - -XuiCraftingPanel -1280.000000 -720.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -1280.000000 -720.000000 -15 - - - -MainPanel -591.000000 -490.000000 -344.000000,114.000000,0.000000 -CraftingPanel2x2 - - - - -Group_Tab_Images -1280.000000 -200.000000 -0.000000,20.000000,0.000000 -48 - - - -TabImage1 -107.000000 -85.000000 -341.000000,89.000000,0.000000 -false -CraftingPanelTabLeft - - - - -TabImage2 -107.000000 -85.000000 -439.000000,89.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage3 -107.000000 -85.000000 -537.000000,89.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage4 -107.000000 -85.000000 -635.000000,89.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage5 -107.000000 -85.000000 -733.000000,89.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage6 -107.000000 -85.000000 -831.000000,89.000000,0.000000 -false -CraftingPanelTabRight - - - - -TabImage7 -107.000000 -85.000000 -929.000000,89.000000,0.000000 -false -CraftingPanelTabRight - - - - - -Group_Tab_Icons -1280.000000 -200.000000 -0.000000,-24.000000,0.000000 -48 - - - -Icon_1 -48.000000 -48.000000 -370.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -48.000000 -48.000000 -468.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -48.000000 -48.000000 -566.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -48.000000 -48.000000 -664.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -48.000000 -48.000000 -763.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -48.000000 -48.000000 -861.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -48.000000 -48.000000 -959.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - - -XuiGroupName -568.000000 -27.000000 -356.000000,208.000000,0.000000 -XuiLabelDarkCentred - - - - -SceneCraftScrollGroup -1280.000000 -720.000000 -48 - - - -XuiHSlot0 -46.000000 -46.000000 -375.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -46.000000 -46.000000 -429.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -46.000000 -46.000000 -483.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -46.000000 -46.000000 -537.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -46.000000 -46.000000 -591.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -46.000000 -46.000000 -645.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -46.000000 -46.000000 -699.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -46.000000 -46.000000 -753.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -46.000000 -46.000000 -807.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -46.000000 -46.000000 -861.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiImageScrollBar -80.000000 -258.000000 -357.000000,153.000000,0.000000 -CraftingPanelVScroll3 - - - - -XuiImageScrollBar2Slot -80.000000 -204.000000 -357.000000,207.000000,0.000000 -CraftingPanelVScroll2 - - - - -XuiVSlot0 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -72.000000 -72.000000 -361.000000,245.000000,0.000000 -CraftingPanelHighlight - - - - -XuiVSlot2 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -46.000000 -46.000000 -861.000000,259.000000,0.000000 -4 -false -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -46.000000 -46.000000 -861.000000,259.000000,0.000000 -4 -false -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -242.000000 -96.000000 -363.000000,457.000000,0.000000 - - - -CraftingInput1 -48.000000 -48.000000 -10.000000,0.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput2 -48.000000 -48.000000 -58.000000,0.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput3 -48.000000 -48.000000 -10.000000,48.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput4 -48.000000 -48.000000 -58.000000,48.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingArrow -32.000000 -32.000000 -118.000000,30.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingOutputRed -72.000000 -72.000000 -160.000000,10.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed72 - - - - -XuiHTMLText -283.000000 -156.000000 -262.000000,-49.000000,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -246.000000 -50.000000 --3.000000,-52.000000,0.000000 -XuiLabelDarkCentredWrap - - - - -Inventory -298.000000 -27.000000 -255.000000,-52.000000,0.000000 -false -XuiLabelDarkCentred - - - - -Ingredient4 -32.000000 -32.000000 -269.000000,87.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient3 -32.000000 -32.000000 -269.000000,53.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient2 -32.000000 -32.000000 -269.000000,17.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient1 -32.000000 -32.000000 -269.000000,-19.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput5 -48.000000 -48.000000 -53.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput6 -48.000000 -48.000000 -53.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput7 -48.000000 -48.000000 -53.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput8 -48.000000 -48.000000 -53.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput9 -48.000000 -48.000000 -53.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - - -InventoryGrid -290.000000 -144.000000 -622.000000,439.000000,0.000000 - - - -Inventory -288.000000 -96.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -UseRow -288.000000 -32.000000 --0.000000,112.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -0.000000,0.000000,0.000000 - - - -0 --261.000000,0.000000,0.000000 - - - -2 -100 --100 -50 --261.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiCraftingPanel + 1280.000000 + 720.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 51 + + + + none + 51 + + + + easein + 51 + + + + none + 52 + + + + easein + 52 + + + + none + 51 + + + + + + Group + 1280.000000 + 720.000000 + 15 + + + + MainPanel + 591.000000 + 490.000000 + 344.000000,114.000000,0.000000 + CraftingPanel2x2 + + + + + Group_Tab_Images + 1280.000000 + 200.000000 + 0.000000,20.000000,0.000000 + 48 + + + + TabImage1 + 107.000000 + 85.000000 + 341.000000,89.000000,0.000000 + false + CraftingPanelTabLeft + + + + + TabImage2 + 107.000000 + 85.000000 + 439.000000,89.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage3 + 107.000000 + 85.000000 + 537.000000,89.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage4 + 107.000000 + 85.000000 + 635.000000,89.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage5 + 107.000000 + 85.000000 + 733.000000,89.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage6 + 107.000000 + 85.000000 + 831.000000,89.000000,0.000000 + false + CraftingPanelTabRight + + + + + TabImage7 + 107.000000 + 85.000000 + 929.000000,89.000000,0.000000 + false + CraftingPanelTabRight + + + + + + Group_Tab_Icons + 1280.000000 + 200.000000 + 0.000000,-24.000000,0.000000 + 48 + + + + Icon_1 + 48.000000 + 48.000000 + 370.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 48.000000 + 48.000000 + 468.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 48.000000 + 48.000000 + 566.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 48.000000 + 48.000000 + 664.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 48.000000 + 48.000000 + 763.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 48.000000 + 48.000000 + 861.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 48.000000 + 48.000000 + 959.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + + XuiGroupName + 568.000000 + 27.000000 + 356.000000,208.000000,0.000000 + XuiLabelDarkCentred + + + + + SceneCraftScrollGroup + 1280.000000 + 720.000000 + 48 + + + + XuiHSlot0 + 46.000000 + 46.000000 + 375.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 46.000000 + 46.000000 + 429.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 46.000000 + 46.000000 + 483.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 46.000000 + 46.000000 + 537.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 46.000000 + 46.000000 + 591.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 46.000000 + 46.000000 + 645.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 46.000000 + 46.000000 + 699.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 46.000000 + 46.000000 + 753.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 46.000000 + 46.000000 + 807.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 46.000000 + 46.000000 + 861.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiImageScrollBar + 80.000000 + 258.000000 + 357.000000,153.000000,0.000000 + CraftingPanelVScroll3 + + + + + XuiImageScrollBar2Slot + 80.000000 + 204.000000 + 357.000000,207.000000,0.000000 + CraftingPanelVScroll2 + + + + + XuiVSlot0 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 72.000000 + 72.000000 + 361.000000,245.000000,0.000000 + CraftingPanelHighlight + + + + + XuiVSlot2 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 46.000000 + 46.000000 + 861.000000,259.000000,0.000000 + 4 + false + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 46.000000 + 46.000000 + 861.000000,259.000000,0.000000 + 4 + false + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 242.000000 + 96.000000 + 363.000000,457.000000,0.000000 + + + + CraftingInput1 + 48.000000 + 48.000000 + 10.000000,0.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput2 + 48.000000 + 48.000000 + 58.000000,0.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput3 + 48.000000 + 48.000000 + 10.000000,48.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput4 + 48.000000 + 48.000000 + 58.000000,48.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingArrow + 32.000000 + 32.000000 + 118.000000,30.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingOutputRed + 72.000000 + 72.000000 + 160.000000,10.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed72 + + + + + XuiHTMLText + 283.000000 + 156.000000 + 262.000000,-49.000000,0.000000 + false + XuiHtmlControl + + + + + XuiItemName + 246.000000 + 50.000000 + -3.000000,-52.000000,0.000000 + XuiLabelDarkCentredWrap + + + + + Inventory + 298.000000 + 27.000000 + 255.000000,-52.000000,0.000000 + false + XuiLabelDarkCentred + + + + + Ingredient4 + 32.000000 + 32.000000 + 269.000000,87.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient3 + 32.000000 + 32.000000 + 269.000000,53.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient2 + 32.000000 + 32.000000 + 269.000000,17.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient1 + 32.000000 + 32.000000 + 269.000000,-19.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput5 + 48.000000 + 48.000000 + 53.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput6 + 48.000000 + 48.000000 + 53.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput7 + 48.000000 + 48.000000 + 53.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput8 + 48.000000 + 48.000000 + 53.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput9 + 48.000000 + 48.000000 + 53.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + + InventoryGrid + 290.000000 + 144.000000 + 622.000000,439.000000,0.000000 + + + + Inventory + 288.000000 + 96.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + UseRow + 288.000000 + 32.000000 + -0.000000,112.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_480.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_480.xui index a0844d48..0755ab1f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_480.xui @@ -1,2772 +1,3024 @@ - -640.000000 -480.000000 - - - -XuiCraftingPanel -640.000000 -480.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -640.000000 -480.000000 -15 - - - -MainPanel -420.000000 -284.000000 -110.000000,98.000000,0.000000 -CraftingPanel2x2Small - - - - -Group_Tab_Images -640.000000 -50.000000 -0.000000,96.000000,0.000000 -48 - - - -TabImage1 -72.000000 -56.000000 -110.000000,0.000000,0.000000 -false -CraftingPanelTabLeftSmall - - - - -TabImage2 -72.000000 -56.000000 -180.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage3 -72.000000 -56.000000 -249.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage4 -72.000000 -56.000000 -319.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage5 -72.000000 -56.000000 -389.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage6 -72.000000 -56.000000 -458.000000,0.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - -TabImage7 -72.000000 -56.000000 -528.000000,0.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - - -Group_Tab_Icons -640.000000 -50.000000 -0.000000,96.000000,0.000000 -48 - - - -Icon_1 -32.000000 -32.000000 -130.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -200.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -270.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -339.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -409.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -479.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -549.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - - -SceneCraftScrollGroup -640.000000 -135.000000 -0.000000,94.000000,0.000000 -48 - - - -XuiImageScrollBar -22.000000 -67.000000 -134.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiImageScrollBar2Slot -22.000000 -67.000000 -134.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiVSlot0 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -43.000000 -43.000000 -123.000000,84.000000,0.000000 -CraftingPanelHighlightSmall - - - - -XuiVSlot2 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot0 -34.000000 -34.000000 -128.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -34.000000 -34.000000 -167.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -34.000000 -34.000000 -206.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -34.000000 -34.000000 -245.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -34.000000 -34.000000 -284.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -34.000000 -34.000000 -323.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -34.000000 -34.000000 -362.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -34.000000 -34.000000 -401.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -34.000000 -34.000000 -439.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -34.000000 -34.000000 -478.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -34.000000 -34.000000 -515.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -34.000000 -34.000000 -529.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -170.000000 -132.000000 -123.000000,235.000000,0.000000 - - - -CraftingArrow -32.000000 -32.000000 -82.000000,70.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingInput1 -38.000000 -38.000000 -3.000000,49.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput2 -38.000000 -38.000000 -41.000000,49.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput3 -38.000000 -38.000000 -3.000000,87.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput4 -38.000000 -38.000000 -41.000000,87.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingOutputRed -50.000000 -50.000000 -117.000000,62.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiHTMLText -207.177460 -114.567886 -182.893524,2.411270,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -160.283936 -49.035492 -4.858025,0.000000,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -Inventory -212.000000 -21.000000 -180.000000,0.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -Ingredient4 -26.000000 -26.000000 -182.000000,105.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient3 -26.000000 -26.000000 -182.000000,77.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient2 -26.000000 -26.000000 -182.000000,49.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient1 -26.000000 -26.000000 -182.000000,21.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput5 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput6 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput7 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput8 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput9 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - - -XuiGroupName -408.000000 -27.000000 -116.000000,153.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -InventoryGrid -207.000000 -99.000000 -306.000000,260.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - - + + 640.000000 + 480.000000 + + + + XuiCraftingPanel + 640.000000 + 480.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + + + Group + 640.000000 + 480.000000 + 15 + + + + MainPanel + 420.000000 + 284.000000 + 110.000000,98.000000,0.000000 + CraftingPanel2x2Small + + + + + Group_Tab_Images + 640.000000 + 50.000000 + 0.000000,96.000000,0.000000 + 48 + + + + TabImage1 + 72.000000 + 56.000000 + 110.000000,0.000000,0.000000 + false + CraftingPanelTabLeftSmall + + + + + TabImage2 + 72.000000 + 56.000000 + 180.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage3 + 72.000000 + 56.000000 + 249.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage4 + 72.000000 + 56.000000 + 319.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage5 + 72.000000 + 56.000000 + 389.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage6 + 72.000000 + 56.000000 + 458.000000,0.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + TabImage7 + 72.000000 + 56.000000 + 528.000000,0.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + + Group_Tab_Icons + 640.000000 + 50.000000 + 0.000000,96.000000,0.000000 + 48 + + + + Icon_1 + 32.000000 + 32.000000 + 130.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 200.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 270.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 339.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 409.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 479.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 549.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + + SceneCraftScrollGroup + 640.000000 + 135.000000 + 0.000000,94.000000,0.000000 + 48 + + + + XuiImageScrollBar + 22.000000 + 67.000000 + 134.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiImageScrollBar2Slot + 22.000000 + 67.000000 + 134.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiVSlot0 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 43.000000 + 43.000000 + 123.000000,84.000000,0.000000 + CraftingPanelHighlightSmall + + + + + XuiVSlot2 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot0 + 34.000000 + 34.000000 + 128.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 34.000000 + 34.000000 + 167.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 34.000000 + 34.000000 + 206.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 34.000000 + 34.000000 + 245.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 34.000000 + 34.000000 + 284.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 34.000000 + 34.000000 + 323.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 34.000000 + 34.000000 + 362.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 34.000000 + 34.000000 + 401.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 34.000000 + 34.000000 + 439.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 34.000000 + 34.000000 + 478.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 34.000000 + 34.000000 + 515.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 34.000000 + 34.000000 + 529.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 170.000000 + 132.000000 + 123.000000,235.000000,0.000000 + + + + CraftingArrow + 32.000000 + 32.000000 + 82.000000,70.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingInput1 + 38.000000 + 38.000000 + 3.000000,49.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput2 + 38.000000 + 38.000000 + 41.000000,49.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput3 + 38.000000 + 38.000000 + 3.000000,87.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput4 + 38.000000 + 38.000000 + 41.000000,87.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingOutputRed + 50.000000 + 50.000000 + 117.000000,62.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiHTMLText + 207.177460 + 114.567886 + 182.893524,2.411270,0.000000 + false + XuiHtmlControl_Small + + + + + XuiItemName + 160.283936 + 49.035492 + 4.858025,0.000000,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + Inventory + 212.000000 + 21.000000 + 180.000000,0.000000,0.000000 + false + XuiLabelDarkCentredWrapSmall + + + + + Ingredient4 + 26.000000 + 26.000000 + 182.000000,105.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient3 + 26.000000 + 26.000000 + 182.000000,77.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient2 + 26.000000 + 26.000000 + 182.000000,49.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient1 + 26.000000 + 26.000000 + 182.000000,21.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput5 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput6 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput7 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput8 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput9 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + + XuiGroupName + 408.000000 + 27.000000 + 116.000000,153.000000,0.000000 + XuiLabelDarkCentredSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 306.000000,260.000000,0.000000 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_small.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_small.xui index 52976399..c145dcdd 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_2x2_small.xui @@ -1,2557 +1,2802 @@ - -530.000000 -290.000000 - - - -XuiCraftingPanel -640.000000 -360.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -640.000000 -360.000000 -15 - - - -MainPanel -420.000000 -284.000000 -110.000000,3.000000,0.000000 -CraftingPanel2x2Small - - - - -Group_Tab_Images -640.000000 -50.000000 -48 - - - -TabImage1 -72.000000 -56.000000 -110.000000,1.000000,0.000000 -false -CraftingPanelTabLeftSmall - - - - -TabImage2 -72.000000 -56.000000 -180.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage3 -72.000000 -56.000000 -249.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage4 -72.000000 -56.000000 -319.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage5 -72.000000 -56.000000 -389.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage6 -72.000000 -56.000000 -458.000000,1.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - -TabImage7 -72.000000 -56.000000 -528.000000,1.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - - -Group_Tab_Icons -640.000000 -50.000000 -48 - - - -Icon_1 -32.000000 -32.000000 -130.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -200.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -270.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -339.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -409.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -479.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -549.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - - -SceneCraftScrollGroup -640.000000 -135.000000 -48 - - - -XuiImageScrollBar -22.000000 -67.000000 -134.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiImageScrollBar2Slot -22.000000 -67.000000 -134.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiVSlot0 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -43.000000 -43.000000 -123.000000,84.000000,0.000000 -CraftingPanelHighlightSmall - - - - -XuiVSlot2 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot0 -34.000000 -34.000000 -128.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -34.000000 -34.000000 -167.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -34.000000 -34.000000 -206.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -34.000000 -34.000000 -245.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -34.000000 -34.000000 -284.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -34.000000 -34.000000 -323.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -34.000000 -34.000000 -362.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -34.000000 -34.000000 -401.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -34.000000 -34.000000 -439.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -34.000000 -34.000000 -478.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -34.000000 -34.000000 -515.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -34.000000 -34.000000 -529.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -170.000000 -132.000000 -123.000000,140.000000,0.000000 - - - -CraftingArrow -32.000000 -32.000000 -82.000000,75.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingInput1 -38.000000 -38.000000 -3.000000,54.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput2 -38.000000 -38.000000 -41.000000,54.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput3 -38.000000 -38.000000 -3.000000,92.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput4 -38.000000 -38.000000 -41.000000,92.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingOutputRed -50.000000 -50.000000 -117.000000,67.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiHTMLText -204.000000 -108.000000 -184.000000,0.000000,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -168.000000 -50.000000 -1.000000,0.000000,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -Inventory -212.000000 -21.000000 -180.000000,0.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -Ingredient4 -26.000000 -26.000000 -187.000000,105.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient3 -26.000000 -26.000000 -187.000000,77.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient2 -26.000000 -26.000000 -187.000000,49.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient1 -26.000000 -26.000000 -187.000000,21.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput5 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput6 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput7 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput8 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput9 -38.000000 -38.000000 -43.000000,48.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - - -XuiGroupName -408.000000 -27.000000 -116.000000,58.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -InventoryGrid -207.000000 -99.000000 -306.000000,170.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -0.000000,0.000000,0.000000 - - - -0 --261.000000,0.000000,0.000000 - - - -2 -100 --100 -50 --261.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - - + + 530.000000 + 290.000000 + + + + XuiCraftingPanel + 640.000000 + 360.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 50 + + + + none + 50 + + + + easein + 50 + + + + none + 51 + + + + easein + 51 + + + + none + 50 + + + + + + Group + 640.000000 + 360.000000 + 15 + + + + MainPanel + 420.000000 + 284.000000 + 110.000000,3.000000,0.000000 + CraftingPanel2x2Small + + + + + Group_Tab_Images + 640.000000 + 50.000000 + 48 + + + + TabImage1 + 72.000000 + 56.000000 + 110.000000,1.000000,0.000000 + false + CraftingPanelTabLeftSmall + + + + + TabImage2 + 72.000000 + 56.000000 + 180.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage3 + 72.000000 + 56.000000 + 249.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage4 + 72.000000 + 56.000000 + 319.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage5 + 72.000000 + 56.000000 + 389.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage6 + 72.000000 + 56.000000 + 458.000000,1.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + TabImage7 + 72.000000 + 56.000000 + 528.000000,1.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + + Group_Tab_Icons + 640.000000 + 50.000000 + 48 + + + + Icon_1 + 32.000000 + 32.000000 + 130.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 200.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 270.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 339.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 409.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 479.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 549.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + + SceneCraftScrollGroup + 640.000000 + 135.000000 + 48 + + + + XuiImageScrollBar + 22.000000 + 67.000000 + 134.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiImageScrollBar2Slot + 22.000000 + 67.000000 + 134.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiVSlot0 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 43.000000 + 43.000000 + 123.000000,84.000000,0.000000 + CraftingPanelHighlightSmall + + + + + XuiVSlot2 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot0 + 34.000000 + 34.000000 + 128.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 34.000000 + 34.000000 + 167.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 34.000000 + 34.000000 + 206.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 34.000000 + 34.000000 + 245.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 34.000000 + 34.000000 + 284.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 34.000000 + 34.000000 + 323.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 34.000000 + 34.000000 + 362.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 34.000000 + 34.000000 + 401.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 34.000000 + 34.000000 + 439.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 34.000000 + 34.000000 + 478.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 34.000000 + 34.000000 + 515.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 34.000000 + 34.000000 + 529.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 170.000000 + 132.000000 + 123.000000,140.000000,0.000000 + + + + CraftingArrow + 32.000000 + 32.000000 + 82.000000,75.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingInput1 + 38.000000 + 38.000000 + 3.000000,54.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput2 + 38.000000 + 38.000000 + 41.000000,54.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput3 + 38.000000 + 38.000000 + 3.000000,92.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput4 + 38.000000 + 38.000000 + 41.000000,92.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingOutputRed + 50.000000 + 50.000000 + 117.000000,67.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiHTMLText + 204.000000 + 108.000000 + 184.000000,0.000000,0.000000 + false + XuiHtmlControl_Small + + + + + XuiItemName + 168.000000 + 50.000000 + 1.000000,0.000000,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + Inventory + 212.000000 + 21.000000 + 180.000000,0.000000,0.000000 + false + XuiLabelDarkCentredWrapSmall + + + + + Ingredient4 + 26.000000 + 26.000000 + 187.000000,105.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient3 + 26.000000 + 26.000000 + 187.000000,77.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient2 + 26.000000 + 26.000000 + 187.000000,49.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient1 + 26.000000 + 26.000000 + 187.000000,21.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput5 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput6 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput7 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput8 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput9 + 38.000000 + 38.000000 + 43.000000,48.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + + XuiGroupName + 408.000000 + 27.000000 + 116.000000,58.000000,0.000000 + XuiLabelDarkCentredSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 306.000000,170.000000,0.000000 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3.xui index 91462425..56812c56 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3.xui @@ -1,3332 +1,3325 @@ - -1280.000000 -720.000000 - - - -XuiCraftingPanel -1280.000000 -720.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -1280.000000 -720.000000 -15 - - - -MainPanel -689.000000 -490.000000 -295.000000,115.000000,0.000000 -CraftingPanel3x3 - - - - -Group_Tab_Images -1280.000000 -200.000000 -0.000000,20.000000,0.000000 -48 - - - -TabImage1 -107.000000 -85.000000 -292.000000,90.000000,0.000000 -false -CraftingPanelTabLeft - - - - -TabImage2 -107.000000 -85.000000 -390.000000,90.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage3 -107.000000 -85.000000 -488.000000,90.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage4 -107.000000 -85.000000 -586.000000,90.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage5 -107.000000 -85.000000 -684.000000,90.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage6 -107.000000 -85.000000 -782.000000,90.000000,0.000000 -false -CraftingPanelTabMiddle - - - - -TabImage7 -107.000000 -85.000000 -880.000000,90.000000,0.000000 -false -CraftingPanelTabRight - - - - - -Group_Tab_Icons -1280.000000 -200.000000 -0.000000,-24.000000,0.000000 -48 - - - -Icon_1 -48.000000 -48.000000 -321.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -48.000000 -48.000000 -419.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -48.000000 -48.000000 -517.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -48.000000 -48.000000 -615.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -48.000000 -48.000000 -714.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -48.000000 -48.000000 -812.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -48.000000 -48.000000 -910.000000,152.000000,0.000000 -false -CraftingCategoryIcon - - - - - -XuiGroupName -568.000000 -27.000000 -355.630280,208.000000,0.000000 -XuiLabelDarkCentred - - - - -SceneCraftScrollGroup -1280.000000 -720.000000 -48 - - - -XuiHSlot0 -46.000000 -46.000000 -320.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -46.000000 -46.000000 -374.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -46.000000 -46.000000 -428.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -46.000000 -46.000000 -482.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -46.000000 -46.000000 -536.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -46.000000 -46.000000 -590.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -46.000000 -46.000000 -644.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -46.000000 -46.000000 -698.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -46.000000 -46.000000 -752.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -46.000000 -46.000000 -806.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -46.000000 -46.000000 -860.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -46.000000 -46.000000 -914.000000,259.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiImageScrollBar -80.000000 -258.000000 -303.000000,153.000000,0.000000 -CraftingPanelVScroll3 - - - - -XuiImageScrollBar2Slot -80.000000 -204.000000 -303.000000,207.000000,0.000000 -CraftingPanelVScroll2 - - - - -XuiVSlot0 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -72.000000 -72.000000 -307.000000,246.000000,0.000000 -CraftingPanelHighlight - - - - -XuiVSlot2 -46.000000 -46.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -262.000000 -144.000000 -318.000000,427.000000,0.000000 - - - -CraftingArrow -32.000000 -32.000000 -152.000000,70.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingOutputRed -72.000000 -72.000000 -206.000000,52.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed72 - - - - -CraftingInput1 -46.000000 -46.000000 -0.000000,20.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput2 -46.000000 -46.000000 -46.000000,20.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput3 -46.000000 -46.000000 -92.000000,20.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput4 -46.000000 -46.000000 -0.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput5 -46.000000 -46.000000 -46.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput6 -46.000000 -46.000000 -92.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput7 -46.000000 -46.000000 -0.000000,112.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput8 -46.000000 -46.000000 -46.000031,112.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput9 -46.000000 -46.000000 -92.000031,112.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiHTMLText -332.000000 -170.000000 -305.000000,-19.000000,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -281.000000 -50.000000 --2.000000,-29.000000,0.000000 -XuiLabelDarkCentredWrap -yyyyyyWWWWWWWWWWWWWWWW + + 1280.000000 + 720.000000 + + + + XuiCraftingPanel + 1280.000000 + 720.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 56 + + + + none + 56 + + + + easein + 56 + + + + none + 57 + + + + easein + 57 + + + + none + 56 + + + + + + Group + 1280.000000 + 720.000000 + 15 + + + + MainPanel + 689.000000 + 490.000000 + 295.000000,115.000000,0.000000 + CraftingPanel3x3 + + + + + Group_Tab_Images + 1280.000000 + 200.000000 + 0.000000,20.000000,0.000000 + 48 + + + + TabImage1 + 107.000000 + 85.000000 + 292.000000,90.000000,0.000000 + false + CraftingPanelTabLeft + + + + + TabImage2 + 107.000000 + 85.000000 + 390.000000,90.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage3 + 107.000000 + 85.000000 + 488.000000,90.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage4 + 107.000000 + 85.000000 + 586.000000,90.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage5 + 107.000000 + 85.000000 + 684.000000,90.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage6 + 107.000000 + 85.000000 + 782.000000,90.000000,0.000000 + false + CraftingPanelTabMiddle + + + + + TabImage7 + 107.000000 + 85.000000 + 880.000000,90.000000,0.000000 + false + CraftingPanelTabRight + + + + + + Group_Tab_Icons + 1280.000000 + 200.000000 + 0.000000,-24.000000,0.000000 + 48 + + + + Icon_1 + 48.000000 + 48.000000 + 321.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 48.000000 + 48.000000 + 419.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 48.000000 + 48.000000 + 517.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 48.000000 + 48.000000 + 615.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 48.000000 + 48.000000 + 714.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 48.000000 + 48.000000 + 812.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 48.000000 + 48.000000 + 910.000000,152.000000,0.000000 + false + CraftingCategoryIcon + + + + + + XuiGroupName + 568.000000 + 27.000000 + 355.630280,208.000000,0.000000 + XuiLabelDarkCentred + + + + + SceneCraftScrollGroup + 1280.000000 + 720.000000 + 48 + + + + XuiHSlot0 + 46.000000 + 46.000000 + 320.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 46.000000 + 46.000000 + 374.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 46.000000 + 46.000000 + 428.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 46.000000 + 46.000000 + 482.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 46.000000 + 46.000000 + 536.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 46.000000 + 46.000000 + 590.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 46.000000 + 46.000000 + 644.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 46.000000 + 46.000000 + 698.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 46.000000 + 46.000000 + 752.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 46.000000 + 46.000000 + 806.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 46.000000 + 46.000000 + 860.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 46.000000 + 46.000000 + 914.000000,259.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiImageScrollBar + 80.000000 + 258.000000 + 303.000000,153.000000,0.000000 + CraftingPanelVScroll3 + + + + + XuiImageScrollBar2Slot + 80.000000 + 204.000000 + 303.000000,207.000000,0.000000 + CraftingPanelVScroll2 + + + + + XuiVSlot0 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 72.000000 + 72.000000 + 307.000000,246.000000,0.000000 + CraftingPanelHighlight + + + + + XuiVSlot2 + 46.000000 + 46.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 262.000000 + 144.000000 + 318.000000,427.000000,0.000000 + + + + CraftingArrow + 32.000000 + 32.000000 + 152.000000,70.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingOutputRed + 72.000000 + 72.000000 + 206.000000,52.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed72 + + + + + CraftingInput1 + 46.000000 + 46.000000 + 0.000000,20.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput2 + 46.000000 + 46.000000 + 46.000000,20.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput3 + 46.000000 + 46.000000 + 92.000000,20.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput4 + 46.000000 + 46.000000 + 0.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput5 + 46.000000 + 46.000000 + 46.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput6 + 46.000000 + 46.000000 + 92.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput7 + 46.000000 + 46.000000 + 0.000000,112.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput8 + 46.000000 + 46.000000 + 46.000031,112.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput9 + 46.000000 + 46.000000 + 92.000031,112.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiHTMLText + 332.000000 + 170.000000 + 305.000000,-19.000000,0.000000 + false + XuiHtmlControl + + + + + XuiItemName + 281.000000 + 50.000000 + -2.000000,-29.000000,0.000000 + XuiLabelDarkCentredWrap + yyyyyyWWWWWWWWWWWWWWWW yyyyyyWWWWWWWWWWWWWW - - - - -Inventory -344.000000 -27.000000 -298.000000,-24.000000,0.000000 -false -XuiLabelDarkCentred - - - - -Ingredient4 -32.000000 -32.000000 -310.000000,117.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient3 -32.000000 -32.000000 -310.000000,81.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient2 -32.000000 -32.000000 -310.000000,45.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Ingredient1 -32.000000 -32.000000 -310.000000,9.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - - -InventoryGrid -290.000000 -144.000000 -646.000000,439.000000,0.000000 - - - -Inventory -288.000000 -96.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -UseRow -288.000000 -32.000000 -0.000000,112.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -0.000000,0.000000,0.000000 - - - -0 --212.000000,0.000000,0.000000 - - - -2 -100 --100 -50 --212.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - - + + + + + Inventory + 344.000000 + 27.000000 + 298.000000,-24.000000,0.000000 + false + XuiLabelDarkCentred + + + + + Ingredient4 + 32.000000 + 32.000000 + 310.000000,117.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient3 + 32.000000 + 32.000000 + 310.000000,81.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient2 + 32.000000 + 32.000000 + 310.000000,45.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Ingredient1 + 32.000000 + 32.000000 + 310.000000,9.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + + InventoryGrid + 290.000000 + 144.000000 + 646.000000,439.000000,0.000000 + + + + Inventory + 288.000000 + 96.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + UseRow + 288.000000 + 32.000000 + 0.000000,112.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_480.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_480.xui index c251be36..57bb2790 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_480.xui @@ -1,2767 +1,3019 @@ - -640.000000 -480.000000 - - - -XuiCraftingPanel -640.000000 -480.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -640.000000 -480.000000 -15 - - - -MainPanel -490.000000 -284.000000 -72.000000,98.000000,0.000000 -CraftingPanel3x3Small - - - - -Group_Tab_Images -640.000000 -50.000000 -0.000000,96.000000,0.000000 -48 - - - -TabImage1 -72.000000 -56.000000 -72.000000,0.000000,0.000000 -false -CraftingPanelTabLeftSmall - - - - -TabImage2 -72.000000 -56.000000 -142.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage3 -72.000000 -56.000000 -211.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage4 -72.000000 -56.000000 -281.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage5 -72.000000 -56.000000 -351.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage6 -72.000000 -56.000000 -420.000000,0.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage7 -72.000000 -56.000000 -490.000000,0.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - - -Group_Tab_Icons -640.000000 -50.000000 -0.000000,96.000000,0.000000 -48 - - - -Icon_1 -32.000000 -32.000000 -91.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -162.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -231.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -301.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -371.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -441.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -509.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - - -SceneCraftScrollGroup -640.000000 -480.000000 -0.000000,94.000000,0.000000 -48 - - - -XuiImageScrollBar -22.000000 -67.000000 -92.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiImageScrollBar2Slot -22.000000 -67.000000 -92.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiVSlot0 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -43.000000 -43.000000 -81.000000,84.000000,0.000000 -CraftingPanelHighlightSmall - - - - -XuiVSlot2 -34.000000 -34.000000 -620.000000,90.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot0 -34.000000 -34.000000 -85.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -34.000000 -34.000000 -124.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -34.000000 -34.000000 -163.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -34.000000 -34.000000 -202.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -34.000000 -34.000000 -241.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -34.000000 -34.000000 -280.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -34.000000 -34.000000 -319.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -34.000000 -34.000000 -358.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -34.000000 -34.000000 -397.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -34.000000 -34.000000 -436.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -34.000000 -34.000000 -475.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -34.000000 -34.000000 -514.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -190.307205 -133.200012 -86.000000,236.000000,0.000000 - - - -CraftingArrow -32.000000 -32.000000 -102.000000,65.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingOutputRed -50.000000 -50.000000 -137.000000,57.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput1 -32.000000 -32.000000 -3.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput2 -32.000000 -32.000000 -35.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput3 -32.000000 -32.000000 -67.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput4 -32.000000 -32.000000 -3.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput5 -32.000000 -32.000000 -35.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput6 -32.000000 -32.000000 -67.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput7 -32.000000 -32.000000 -3.000000,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput8 -32.000000 -32.000000 -35.000031,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput9 -32.000000 -32.000000 -67.000031,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -XuiHTMLText -254.191498 -112.307999 -204.018768,3.616898,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -182.373703 -50.000000 -3.616897,0.000000,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -Inventory -262.000000 -27.000000 -200.000000,0.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -Ingredient4 -24.000000 -24.000000 -202.000000,106.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient3 -24.000000 -24.000000 -202.000000,78.999992,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient2 -24.000000 -24.000000 -202.000000,52.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient1 -24.000000 -24.000000 -202.000000,25.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - - -XuiGroupName -400.000000 -27.000000 -117.000000,154.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -InventoryGrid -207.000000 -99.000000 -314.000000,262.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - - + + 640.000000 + 480.000000 + + + + XuiCraftingPanel + 640.000000 + 480.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + + + Group + 640.000000 + 480.000000 + 15 + + + + MainPanel + 490.000000 + 284.000000 + 72.000000,98.000000,0.000000 + CraftingPanel3x3Small + + + + + Group_Tab_Images + 640.000000 + 50.000000 + 0.000000,96.000000,0.000000 + 48 + + + + TabImage1 + 72.000000 + 56.000000 + 72.000000,0.000000,0.000000 + false + CraftingPanelTabLeftSmall + + + + + TabImage2 + 72.000000 + 56.000000 + 142.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage3 + 72.000000 + 56.000000 + 211.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage4 + 72.000000 + 56.000000 + 281.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage5 + 72.000000 + 56.000000 + 351.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage6 + 72.000000 + 56.000000 + 420.000000,0.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage7 + 72.000000 + 56.000000 + 490.000000,0.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + + Group_Tab_Icons + 640.000000 + 50.000000 + 0.000000,96.000000,0.000000 + 48 + + + + Icon_1 + 32.000000 + 32.000000 + 91.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 162.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 231.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 301.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 371.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 441.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 509.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + + SceneCraftScrollGroup + 640.000000 + 480.000000 + 0.000000,94.000000,0.000000 + 48 + + + + XuiImageScrollBar + 22.000000 + 67.000000 + 92.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiImageScrollBar2Slot + 22.000000 + 67.000000 + 92.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiVSlot0 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 43.000000 + 43.000000 + 81.000000,84.000000,0.000000 + CraftingPanelHighlightSmall + + + + + XuiVSlot2 + 34.000000 + 34.000000 + 620.000000,90.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot0 + 34.000000 + 34.000000 + 85.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 34.000000 + 34.000000 + 124.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 34.000000 + 34.000000 + 163.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 34.000000 + 34.000000 + 202.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 34.000000 + 34.000000 + 241.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 34.000000 + 34.000000 + 280.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 34.000000 + 34.000000 + 319.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 34.000000 + 34.000000 + 358.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 34.000000 + 34.000000 + 397.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 34.000000 + 34.000000 + 436.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 34.000000 + 34.000000 + 475.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 34.000000 + 34.000000 + 514.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 190.307205 + 133.200012 + 86.000000,236.000000,0.000000 + + + + CraftingArrow + 32.000000 + 32.000000 + 102.000000,65.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingOutputRed + 50.000000 + 50.000000 + 137.000000,57.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput1 + 32.000000 + 32.000000 + 3.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput2 + 32.000000 + 32.000000 + 35.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput3 + 32.000000 + 32.000000 + 67.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput4 + 32.000000 + 32.000000 + 3.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput5 + 32.000000 + 32.000000 + 35.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput6 + 32.000000 + 32.000000 + 67.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput7 + 32.000000 + 32.000000 + 3.000000,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput8 + 32.000000 + 32.000000 + 35.000031,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput9 + 32.000000 + 32.000000 + 67.000031,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + XuiHTMLText + 254.191498 + 112.307999 + 204.018768,3.616898,0.000000 + false + XuiHtmlControl_Small + + + + + XuiItemName + 182.373703 + 50.000000 + 3.616897,0.000000,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + Inventory + 262.000000 + 27.000000 + 200.000000,0.000000,0.000000 + false + XuiLabelDarkCentredWrapSmall + + + + + Ingredient4 + 24.000000 + 24.000000 + 202.000000,106.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient3 + 24.000000 + 24.000000 + 202.000000,78.999992,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient2 + 24.000000 + 24.000000 + 202.000000,52.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient1 + 24.000000 + 24.000000 + 202.000000,25.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + + XuiGroupName + 400.000000 + 27.000000 + 117.000000,154.000000,0.000000 + XuiLabelDarkCentredSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 314.000000,262.000000,0.000000 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_small.xui b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_small.xui index 55206b73..f59a4bfe 100644 --- a/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_craftingpanel_3x3_small.xui @@ -1,2804 +1,3049 @@ - -530.000000 -290.000000 - - - -XuiCraftingPanel -640.000000 -360.000000 -CXuiSceneCraftingPanel -XuiMenuScene - - - -Group -640.000000 -360.000000 -15 - - - -MainPanel -490.000000 -284.000000 -72.000000,3.000000,0.000000 -CraftingPanel3x3Small - - - - -Group_Tab_Images -640.000000 -50.000000 -48 - - - -TabImage1 -72.000000 -56.000000 -72.000000,1.000000,0.000000 -false -CraftingPanelTabLeftSmall - - - - -TabImage2 -72.000000 -56.000000 -142.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage3 -72.000000 -56.000000 -211.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage4 -72.000000 -56.000000 -281.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage5 -72.000000 -56.000000 -351.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage6 -72.000000 -56.000000 -420.000000,1.000000,0.000000 -false -CraftingPanelTabMiddleSmall - - - - -TabImage7 -72.000000 -56.000000 -490.000000,1.000000,0.000000 -false -CraftingPanelTabRightSmall - - - - - -Group_Tab_Icons -640.000000 -50.239975 -48 - - - -Icon_1 -32.000000 -32.000000 -90.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -160.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -230.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -299.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -369.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -439.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -509.000000,14.000000,0.000000 -false -CraftingCategoryIcon - - - - - -SceneCraftScrollGroup -640.000000 -360.000000 -48 - - - -XuiImageScrollBar -22.000000 -67.000000 -92.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiImageScrollBar2Slot -22.000000 -67.000000 -92.000000,72.000000,0.000000 -CraftingPanelVScrollSmall - - - - -XuiVSlot0 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiVSlot1 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHighlight -43.000000 -43.000000 -81.000000,84.000000,0.000000 -CraftingPanelHighlightSmall - - - - -XuiVSlot2 -34.000000 -34.000000 -620.000000,93.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot0 -34.000000 -34.000000 -85.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot1 -34.000000 -34.000000 -124.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot2 -34.000000 -34.000000 -163.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot3 -34.000000 -34.000000 -202.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot4 -34.000000 -34.000000 -241.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot5 -34.000000 -34.000000 -280.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot6 -34.000000 -34.000000 -319.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot7 -34.000000 -34.000000 -358.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot8 -34.000000 -34.000000 -397.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot9 -34.000000 -34.000000 -436.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot10 -34.000000 -34.000000 -475.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - -XuiHSlot11 -34.000000 -34.000000 -514.000000,88.000000,0.000000 -4 -7 -CXuiCtrlMinecraftSlot -XuiVisualImagePresenter - - - - - -Grid -190.307205 -133.200012 -86.000000,141.000000,0.000000 - - - -CraftingArrow -32.000000 -32.000000 -102.000000,65.000000,0.000000 -CraftingProgressArrowSmall - - - - -CraftingOutputRed -50.000000 -50.000000 -137.000000,57.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -CraftingInput1 -32.000000 -32.000000 -3.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput2 -32.000000 -32.000000 -35.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput3 -32.000000 -32.000000 -67.000000,34.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput4 -32.000000 -32.000000 -3.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput5 -32.000000 -32.000000 -35.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput6 -32.000000 -32.000000 -67.000000,66.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput7 -32.000000 -32.000000 -3.000000,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput8 -32.000000 -32.000000 -35.000031,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -CraftingInput9 -32.000000 -32.000000 -67.000031,98.000031,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -XuiHTMLText -252.000000 -108.000000 -204.000000,0.000000,0.000000 -false -XuiHtmlControl - - - - -XuiItemName -182.775574 -50.000000 -3.215019,0.000000,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -Inventory -262.000000 -27.000000 -200.000000,0.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -Ingredient4 -24.000000 -24.000000 -210.000000,106.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient3 -24.000000 -24.000000 -210.000000,78.999992,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient2 -24.000000 -24.000000 -210.000000,52.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Ingredient1 -24.000000 -24.000000 -210.000000,25.000000,0.000000 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - - -XuiGroupName -400.000000 -27.000000 -117.000000,58.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -InventoryGrid -207.000000 -99.000000 -314.000000,172.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -0.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -0.000000,0.000000,0.000000 - - - -0 --212.000000,0.000000,0.000000 - - - -2 -100 --100 -50 --212.000000,0.000000,0.000000 - - - -0 -0.000000,0.000000,0.000000 - - - - + + 530.000000 + 290.000000 + + + + XuiCraftingPanel + 640.000000 + 360.000000 + CXuiSceneCraftingPanel + XuiMenuScene + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 54 + + + + none + 54 + + + + easein + 54 + + + + none + 55 + + + + easein + 55 + + + + none + 54 + + + + + + Group + 640.000000 + 360.000000 + 15 + + + + MainPanel + 490.000000 + 284.000000 + 72.000000,3.000000,0.000000 + CraftingPanel3x3Small + + + + + Group_Tab_Images + 640.000000 + 50.000000 + 48 + + + + TabImage1 + 72.000000 + 56.000000 + 72.000000,1.000000,0.000000 + false + CraftingPanelTabLeftSmall + + + + + TabImage2 + 72.000000 + 56.000000 + 142.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage3 + 72.000000 + 56.000000 + 211.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage4 + 72.000000 + 56.000000 + 281.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage5 + 72.000000 + 56.000000 + 351.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage6 + 72.000000 + 56.000000 + 420.000000,1.000000,0.000000 + false + CraftingPanelTabMiddleSmall + + + + + TabImage7 + 72.000000 + 56.000000 + 490.000000,1.000000,0.000000 + false + CraftingPanelTabRightSmall + + + + + + Group_Tab_Icons + 640.000000 + 50.239975 + 48 + + + + Icon_1 + 32.000000 + 32.000000 + 90.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 160.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 230.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 299.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 369.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 439.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 509.000000,14.000000,0.000000 + false + CraftingCategoryIcon + + + + + + SceneCraftScrollGroup + 640.000000 + 360.000000 + 48 + + + + XuiImageScrollBar + 22.000000 + 67.000000 + 92.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiImageScrollBar2Slot + 22.000000 + 67.000000 + 92.000000,72.000000,0.000000 + CraftingPanelVScrollSmall + + + + + XuiVSlot0 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiVSlot1 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHighlight + 43.000000 + 43.000000 + 81.000000,84.000000,0.000000 + CraftingPanelHighlightSmall + + + + + XuiVSlot2 + 34.000000 + 34.000000 + 620.000000,93.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot0 + 34.000000 + 34.000000 + 85.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot1 + 34.000000 + 34.000000 + 124.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot2 + 34.000000 + 34.000000 + 163.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot3 + 34.000000 + 34.000000 + 202.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot4 + 34.000000 + 34.000000 + 241.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot5 + 34.000000 + 34.000000 + 280.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot6 + 34.000000 + 34.000000 + 319.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot7 + 34.000000 + 34.000000 + 358.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot8 + 34.000000 + 34.000000 + 397.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot9 + 34.000000 + 34.000000 + 436.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot10 + 34.000000 + 34.000000 + 475.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + XuiHSlot11 + 34.000000 + 34.000000 + 514.000000,88.000000,0.000000 + 4 + 7 + CXuiCtrlMinecraftSlot + XuiVisualImagePresenter + + + + + + Grid + 190.307205 + 133.200012 + 86.000000,141.000000,0.000000 + + + + CraftingArrow + 32.000000 + 32.000000 + 102.000000,65.000000,0.000000 + CraftingProgressArrowSmall + + + + + CraftingOutputRed + 50.000000 + 50.000000 + 137.000000,57.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + CraftingInput1 + 32.000000 + 32.000000 + 3.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput2 + 32.000000 + 32.000000 + 35.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput3 + 32.000000 + 32.000000 + 67.000000,34.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput4 + 32.000000 + 32.000000 + 3.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput5 + 32.000000 + 32.000000 + 35.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput6 + 32.000000 + 32.000000 + 67.000000,66.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput7 + 32.000000 + 32.000000 + 3.000000,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput8 + 32.000000 + 32.000000 + 35.000031,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + CraftingInput9 + 32.000000 + 32.000000 + 67.000031,98.000031,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + XuiHTMLText + 252.000000 + 108.000000 + 204.000000,0.000000,0.000000 + false + XuiHtmlControl_Small + + + + + XuiItemName + 182.775574 + 50.000000 + 3.215019,0.000000,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + Inventory + 262.000000 + 27.000000 + 200.000000,0.000000,0.000000 + false + XuiLabelDarkCentredWrapSmall + + + + + Ingredient4 + 24.000000 + 24.000000 + 210.000000,106.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient3 + 24.000000 + 24.000000 + 210.000000,78.999992,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient2 + 24.000000 + 24.000000 + 210.000000,52.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Ingredient1 + 24.000000 + 24.000000 + 210.000000,25.000000,0.000000 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + + XuiGroupName + 400.000000 + 27.000000 + 117.000000,58.000000,0.000000 + XuiLabelDarkCentredSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 314.000000,172.000000,0.000000 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_credits.xui b/Minecraft.Client/Common/Media/xuiscene_credits.xui index e56e4b6c..c50adf63 100644 --- a/Minecraft.Client/Common/Media/xuiscene_credits.xui +++ b/Minecraft.Client/Common/Media/xuiscene_credits.xui @@ -1,285 +1,285 @@ - -1280.000000 -720.000000 - - - -SceneCredits -1280.000000 -720.000000 -CScene_Credits -XuiMenuScene -XuiSliderVolume - - - -Background -1280.000000 -720.000000 -CreditsBackground - - - - -XuiText1 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_XL - - - - -XuiText2 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_XL - - - - -XuiText3 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_XL - - - - -XuiText4 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText5 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText6 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText7 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText8 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText9 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_M - - - - -XuiText10 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText11 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText12 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText13 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_L - - - - -XuiText14 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText15 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText16 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText17 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText18 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText19 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText20 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText21 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText22 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText23 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText24 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText25 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText26 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText27 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -XuiText28 -1279.000000 -43.000000 -1.000000,16.000000,0.000000 -XuiCreditsText_S - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -MenuTitleLogo - - - + + 1280.000000 + 720.000000 + + + + SceneCredits + 1280.000000 + 720.000000 + CScene_Credits + XuiMenuScene + XuiSliderVolume + + + + Background + 1280.000000 + 720.000000 + CreditsBackground + + + + + XuiText1 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_XL + + + + + XuiText2 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_XL + + + + + XuiText3 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_XL + + + + + XuiText4 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText5 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText6 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText7 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText8 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText9 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_M + + + + + XuiText10 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText11 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText12 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText13 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_L + + + + + XuiText14 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText15 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText16 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText17 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText18 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText19 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText20 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText21 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText22 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText23 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText24 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText25 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText26 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText27 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + XuiText28 + 1279.000000 + 43.000000 + 1.000000,16.000000,0.000000 + XuiCreditsText_S + + + + + Logo + 1280.000000 + 138.000000 + 0.000000,56.000000,0.000000 + MenuTitleLogo + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_credits_480.xui b/Minecraft.Client/Common/Media/xuiscene_credits_480.xui index 270ade3a..86b7d9f0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_credits_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_credits_480.xui @@ -1,286 +1,286 @@ - -640.000000 -480.000000 - - - -SceneCredits -640.000000 -480.000000 -CScene_Credits -XuiMenuScene -XuiSliderVolume - - - -Background -854.000000 -480.000000 --107.000000,0.000000,0.000000 -CreditsBackground - - - - -XuiText1 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_20_XL - - - - -XuiText2 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_20_XL - - - - -XuiText3 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_20_XL - - - - -XuiText4 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText5 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText6 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText7 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText8 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText9 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_M - - - - -XuiText10 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText11 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText12 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText13 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_14_L - - - - -XuiText14 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText15 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText16 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText17 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText18 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText19 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText20 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText21 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText22 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText23 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText24 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText25 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText26 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText27 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -XuiText28 -640.000000 -43.000000 -0.000000,16.000000,0.000000 -XuiCreditsText_480_S - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -MenuTitleLogo - - - + + 640.000000 + 480.000000 + + + + SceneCredits + 640.000000 + 480.000000 + CScene_Credits + XuiMenuScene + XuiSliderVolume + + + + Background + 854.000000 + 480.000000 + -107.000000,0.000000,0.000000 + CreditsBackground + + + + + XuiText1 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_20_XL + + + + + XuiText2 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_20_XL + + + + + XuiText3 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_20_XL + + + + + XuiText4 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText5 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText6 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText7 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText8 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText9 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_M + + + + + XuiText10 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText11 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText12 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText13 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_14_L + + + + + XuiText14 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText15 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText16 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText17 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText18 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText19 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText20 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText21 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText22 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText23 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText24 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText25 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText26 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText27 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + XuiText28 + 640.000000 + 43.000000 + 0.000000,16.000000,0.000000 + XuiCreditsText_480_S + + + + + Logo + 640.000000 + 70.000000 + 0.000000,48.000000,0.000000 + MenuTitleLogo + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_death.xui b/Minecraft.Client/Common/Media/xuiscene_death.xui index 3b661a5e..191845f9 100644 --- a/Minecraft.Client/Common/Media/xuiscene_death.xui +++ b/Minecraft.Client/Common/Media/xuiscene_death.xui @@ -1,49 +1,49 @@ - -1280.000000 -720.000000 - - - -SceneDeath -1280.000000 -720.000000 -CScene_Death -XuiMenuScene -Respawn - - - -ExitGame -400.000000 -40.000000 -440.000000,450.000000,0.000000 -XuiMainMenuButton_L -Respawn -Respawn -22528 - - - - -Respawn -400.000000 -40.000000 -440.000000,400.000000,0.000000 -XuiMainMenuButton_L -ExitGame -ExitGame -22528 - - - - -Title -400.000000 -100.000000 -440.000061,92.000000,0.000000 -XuiTitle - - - + + 1280.000000 + 720.000000 + + + + SceneDeath + 1280.000000 + 720.000000 + CScene_Death + XuiMenuScene + Respawn + + + + ExitGame + 400.000000 + 40.000000 + 440.000000,450.000000,0.000000 + XuiMainMenuButton_L + Respawn + Respawn + 22528 + + + + + Respawn + 400.000000 + 40.000000 + 440.000000,400.000000,0.000000 + XuiMainMenuButton_L + ExitGame + ExitGame + 22528 + + + + + Title + 400.000000 + 100.000000 + 440.000061,92.000000,0.000000 + XuiTitle + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_death_480.xui b/Minecraft.Client/Common/Media/xuiscene_death_480.xui index 9f33e824..ea3037e4 100644 --- a/Minecraft.Client/Common/Media/xuiscene_death_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_death_480.xui @@ -1,49 +1,49 @@ - -640.000000 -480.000000 - - - -SceneDeath -640.000000 -480.000000 -CScene_Death -XuiMenuScene -Respawn - - - -ExitGame -300.000000 -36.000000 -170.000031,340.000000,0.000000 -XuiMainMenuButton_L_Thin -Respawn -Respawn -22528 - - - - -Respawn -300.000000 -36.000000 -170.000031,300.000000,0.000000 -XuiMainMenuButton_L_Thin -ExitGame -ExitGame -22528 - - - - -Title -400.000000 -100.000000 -120.000061,150.000000,0.000000 -XuiTitle - - - + + 640.000000 + 480.000000 + + + + SceneDeath + 640.000000 + 480.000000 + CScene_Death + XuiMenuScene + Respawn + + + + ExitGame + 300.000000 + 36.000000 + 170.000031,340.000000,0.000000 + XuiMainMenuButton_L_Thin + Respawn + Respawn + 22528 + + + + + Respawn + 300.000000 + 36.000000 + 170.000031,300.000000,0.000000 + XuiMainMenuButton_L_Thin + ExitGame + ExitGame + 22528 + + + + + Title + 400.000000 + 100.000000 + 120.000061,150.000000,0.000000 + XuiTitle + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_death_small.xui b/Minecraft.Client/Common/Media/xuiscene_death_small.xui index ccf6bf1c..5a71a6bc 100644 --- a/Minecraft.Client/Common/Media/xuiscene_death_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_death_small.xui @@ -1,49 +1,49 @@ - -640.000000 -360.000000 - - - -SceneDeath -640.000000 -360.000000 -CScene_Death -XuiMenuScene -Respawn - - - -ExitGame -400.000000 -40.000000 -120.000000,233.000000,0.000000 -XuiMainMenuButton_L -Respawn -Respawn -22528 - - - - -Respawn -400.000000 -40.000000 -120.000000,188.000000,0.000000 -XuiMainMenuButton_L -ExitGame -ExitGame -22528 - - - - -Title -400.000000 -60.000000 -120.000061,120.000000,0.000000 -XuiTitle - - - + + 640.000000 + 360.000000 + + + + SceneDeath + 640.000000 + 360.000000 + CScene_Death + XuiMenuScene + Respawn + + + + ExitGame + 400.000000 + 40.000000 + 120.000000,233.000000,0.000000 + XuiMainMenuButton_L + Respawn + Respawn + 22528 + + + + + Respawn + 400.000000 + 40.000000 + 120.000000,188.000000,0.000000 + XuiMainMenuButton_L + ExitGame + ExitGame + 22528 + + + + + Title + 400.000000 + 60.000000 + 120.000061,120.000000,0.000000 + XuiTitle + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug.xui b/Minecraft.Client/Common/Media/xuiscene_debug.xui index b35474fb..43056073 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug.xui @@ -1,60 +1,60 @@ - -1280.000000 -720.000000 - - - -SceneDebug -1280.000000 -720.000000 -CScene_Debug -XuiSliderVolume - - - -XuiImage1 -556.000061 -97.000008 -361.000061,60.000000,0.000000 -Graphics\MenuTitle.png - - - - -XuiCheckbox1 -198.000000 -50.000000 -376.000000,218.999985,0.000000 -false - - - - -XuiCheckbox2 -198.000000 -50.000000 -376.000000,291.999969,0.000000 -false - - - - -XuiCheckbox3 -198.000000 -50.000000 -376.000000,365.000000,0.000000 -false - - - - -XuiCheckbox4 -198.000000 -50.000000 -376.000000,438.000031,0.000000 -false - - - + + 1280.000000 + 720.000000 + + + + SceneDebug + 1280.000000 + 720.000000 + CScene_Debug + XuiSliderVolume + + + + XuiImage1 + 556.000061 + 97.000008 + 361.000061,60.000000,0.000000 + Graphics\MenuTitle.png + + + + + XuiCheckbox1 + 198.000000 + 50.000000 + 376.000000,218.999985,0.000000 + false + + + + + XuiCheckbox2 + 198.000000 + 50.000000 + 376.000000,291.999969,0.000000 + false + + + + + XuiCheckbox3 + 198.000000 + 50.000000 + 376.000000,365.000000,0.000000 + false + + + + + XuiCheckbox4 + 198.000000 + 50.000000 + 376.000000,438.000031,0.000000 + false + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_480.xui b/Minecraft.Client/Common/Media/xuiscene_debug_480.xui index 84ff2d88..def68759 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug_480.xui @@ -1,51 +1,51 @@ - -640.000000 -480.000000 - - - -SceneDebug -640.000000 -480.000000 -CScene_Debug -XuiSliderVolume - - - -XuiCheckbox1 -198.000000 -50.000000 -221.000000,103.999985,0.000000 -false - - - - -XuiCheckbox2 -198.000000 -50.000000 -221.000000,176.999969,0.000000 -false - - - - -XuiCheckbox3 -198.000000 -50.000000 -221.000000,250.000000,0.000000 -false - - - - -XuiCheckbox4 -198.000000 -50.000000 -221.000000,323.000031,0.000000 -false - - - + + 640.000000 + 480.000000 + + + + SceneDebug + 640.000000 + 480.000000 + CScene_Debug + XuiSliderVolume + + + + XuiCheckbox1 + 198.000000 + 50.000000 + 221.000000,103.999985,0.000000 + false + + + + + XuiCheckbox2 + 198.000000 + 50.000000 + 221.000000,176.999969,0.000000 + false + + + + + XuiCheckbox3 + 198.000000 + 50.000000 + 221.000000,250.000000,0.000000 + false + + + + + XuiCheckbox4 + 198.000000 + 50.000000 + 221.000000,323.000031,0.000000 + false + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_fill_area.xui b/Minecraft.Client/Common/Media/xuiscene_debug_fill_area.xui new file mode 100644 index 00000000..941021cd --- /dev/null +++ b/Minecraft.Client/Common/Media/xuiscene_debug_fill_area.xui @@ -0,0 +1,254 @@ + + + 1280.000000 + 720.000000 + + + + XuiDebugFillArea + 823.000000 + 510.000000 + 228.000000,105.000046,0.000000 + CScene_DebugFillArea + StartX + + + + StartX + 245.000000 + 33.000000 + 35.000015,65.000000,0.000000 + CXuiCtrl4JEdit + EndX + StartY + 0123456789- + + + + + StartY + 245.000000 + 33.000000 + 35.000015,150.000000,0.000000 + CXuiCtrl4JEdit + EndY + StartX + StartZ + 0123456789- + + + + + StartZ + 245.000000 + 33.000000 + 35.000015,235.000000,0.000000 + CXuiCtrl4JEdit + EndZ + StartY + EdgeTile + 0123456789- + + + + + EndX + 245.000000 + 33.000000 + 309.000000,65.000000,0.000000 + CXuiCtrl4JEdit + StartX + EndY + 0123456789- + + + + + EndY + 245.000000 + 33.000000 + 309.000000,150.000000,0.000000 + CXuiCtrl4JEdit + StartY + EndX + EndZ + 0123456789- + + + + + EndZ + 245.000000 + 33.000000 + 309.000000,235.000000,0.000000 + CXuiCtrl4JEdit + StartZ + EndY + FillTile + 0123456789- + + + + + XuiLabel1 + 233.000000 + 24.000000 + 34.000000,35.000015,0.000000 + XuiLabelDark + StartX + + + + + XuiLabel2 + 233.000000 + 24.000000 + 35.000000,119.000015,0.000000 + XuiLabelDark + StartY + + + + + XuiLabel3 + 233.000000 + 24.000000 + 36.000000,200.000000,0.000000 + XuiLabelDark + StartZ + + + + + XuiLabel4 + 233.000000 + 24.000000 + 306.000061,32.000000,0.000000 + XuiLabelDark + EndX + + + + + XuiLabel5 + 233.000000 + 24.000000 + 315.000061,119.000015,0.000000 + XuiLabelDark + EndY + + + + + XuiLabel6 + 233.000000 + 24.000000 + 307.000061,202.000000,0.000000 + XuiLabelDark + EndZ + + + + + CreateButton + 734.000000 + 52.000000 + 38.000000,437.000000,0.000000 + FillData + Create + + + + + EdgeTile + 245.000000 + 33.000000 + 33.000015,313.000000,0.000000 + CXuiCtrl4JEdit + FillTile + StartZ + EdgeData + 0123456789- + + + + + XuiLabel7 + 233.000000 + 24.000000 + 34.000000,278.000000,0.000000 + XuiLabelDark + EdgeTile + + + + + EdgeData + 245.000000 + 33.000000 + 33.000015,396.000000,0.000000 + CXuiCtrl4JEdit + FillData + EdgeTile + CreateButton + 0123456789- + + + + + XuiLabel8 + 233.000000 + 24.000000 + 34.000000,361.000000,0.000000 + XuiLabelDark + EdgeData + + + + + FillTile + 245.000000 + 33.000000 + 304.000061,320.000000,0.000000 + CXuiCtrl4JEdit + EdgeTile + EndZ + FillData + 0123456789- + + + + + XuiLabel9 + 233.000000 + 24.000000 + 305.000031,285.000000,0.000000 + XuiLabelDark + FillTile + + + + + FillData + 245.000000 + 33.000000 + 305.000061,395.000000,0.000000 + CXuiCtrl4JEdit + EdgeData + FillTile + CreateButton + 0123456789- + + + + + XuiLabel10 + 233.000000 + 24.000000 + 306.000031,360.000000,0.000000 + XuiLabelDark + FillData + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_item_editor.xui b/Minecraft.Client/Common/Media/xuiscene_debug_item_editor.xui index 71862b28..1746e939 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug_item_editor.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug_item_editor.xui @@ -1,132 +1,132 @@ - -1280.000000 -720.000000 - - - -DebugItemEditor -685.000061 -400.000000 -297.500031,195.000046,0.000000 -CScene_DebugItemEditor -itemId - - - -icon -46.000000 -46.000000 -23.000000,28.999985,0.000000 -1 -7 -CXuiCtrlCraftIngredientSlot -XuiVisualImagePresenter - - - - -itemName -339.000000 -34.000000 -83.000000,32.000000,0.000000 -XuiLabelDark - - - - -itemId -200.000000 -23.000000,107.000000,0.000000 -CXuiCtrl4JEdit -itemCount -itemAuxValue -0123456789 - - - - -XuiLabel1 -257.000000 -34.000000 -23.000000,77.000000,0.000000 -XuiLabelDarkLeftWrap -Item Id - - - - -itemAuxValue -200.000000 -23.000000,169.999985,0.000000 -CXuiCtrl4JEdit -item4JData -itemId -itemCount -0123456789 - - - - -XuiLabel2 -257.000000 -34.000000 -23.000000,143.000000,0.000000 -XuiLabelDarkLeftWrap -Aux Value - - - - -itemCount -200.000000 -346.000000,102.999962,0.000000 -CXuiCtrl4JEdit -itemId -itemAuxValue -item4JData -0123456789 - - - - -XuiLabel3 -257.000000 -34.000000 -346.000000,76.999992,0.000000 -XuiLabelDarkLeftWrap -Item Count - - - - -item4JData -200.000000 -346.000000,163.000000,0.000000 -CXuiCtrl4JEdit -itemAuxValue -itemCount -0123456789 - - - - -XuiLabel4 -257.000000 -34.000000 -346.000000,134.000000,0.000000 -XuiLabelDarkLeftWrap -4J Data - - - - -ruleXml -644.000000 -156.000000 -18.000000,218.000000,0.000000 -XuiLabelDarkLeftWrap - - - + + 1280.000000 + 720.000000 + + + + DebugItemEditor + 685.000061 + 400.000000 + 297.500031,195.000046,0.000000 + CScene_DebugItemEditor + itemId + + + + icon + 46.000000 + 46.000000 + 23.000000,28.999985,0.000000 + 1 + 7 + CXuiCtrlCraftIngredientSlot + XuiVisualImagePresenter + + + + + itemName + 339.000000 + 34.000000 + 83.000000,32.000000,0.000000 + XuiLabelDark + + + + + itemId + 200.000000 + 23.000000,107.000000,0.000000 + CXuiCtrl4JEdit + itemCount + itemAuxValue + 0123456789 + + + + + XuiLabel1 + 257.000000 + 34.000000 + 23.000000,77.000000,0.000000 + XuiLabelDarkLeftWrap + Item Id + + + + + itemAuxValue + 200.000000 + 23.000000,169.999985,0.000000 + CXuiCtrl4JEdit + item4JData + itemId + itemCount + 0123456789 + + + + + XuiLabel2 + 257.000000 + 34.000000 + 23.000000,143.000000,0.000000 + XuiLabelDarkLeftWrap + Aux Value + + + + + itemCount + 200.000000 + 346.000000,102.999962,0.000000 + CXuiCtrl4JEdit + itemId + itemAuxValue + item4JData + 0123456789 + + + + + XuiLabel3 + 257.000000 + 34.000000 + 346.000000,76.999992,0.000000 + XuiLabelDarkLeftWrap + Item Count + + + + + item4JData + 200.000000 + 346.000000,163.000000,0.000000 + CXuiCtrl4JEdit + itemAuxValue + itemCount + 0123456789 + + + + + XuiLabel4 + 257.000000 + 34.000000 + 346.000000,134.000000,0.000000 + XuiLabelDarkLeftWrap + 4J Data + + + + + ruleXml + 644.000000 + 156.000000 + 18.000000,218.000000,0.000000 + XuiLabelDarkLeftWrap + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_schematic_create.xui b/Minecraft.Client/Common/Media/xuiscene_debug_schematic_create.xui index 82e9fbe1..e3b899c2 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug_schematic_create.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug_schematic_create.xui @@ -1,220 +1,220 @@ - -1280.000000 -720.000000 - - - -XuiDebugSchematic -823.000000 -510.000000 -228.000000,105.000046,0.000000 -CScene_DebugSchematicCreator -Name - - - -StartX -245.000000 -33.000000 -34.000015,158.000000,0.000000 -CXuiCtrl4JEdit -EndX -Name -StartY -0123456789- - - - - -StartY -245.000000 -33.000000 -34.000015,243.000000,0.000000 -CXuiCtrl4JEdit -EndY -StartX -StartZ -0123456789- - - - - -StartZ -245.000000 -33.000000 -34.000015,328.000000,0.000000 -CXuiCtrl4JEdit -EndZ -StartY -EndX -0123456789- - - - - -EndX -245.000000 -33.000000 -308.000000,158.000000,0.000000 -CXuiCtrl4JEdit -StartX -Name -EndY -0123456789- - - - - -EndY -245.000000 -33.000000 -308.000000,243.000000,0.000000 -CXuiCtrl4JEdit -StartY -EndX -EndZ -0123456789- - - - - -EndZ -245.000000 -33.000000 -308.000000,328.000000,0.000000 -CXuiCtrl4JEdit -StartZ -EndY -SaveMobs -0123456789- - - - - -XuiLabel1 -233.000000 -24.000000 -33.000000,128.000015,0.000000 -XuiLabelDark -StartX - - - - -XuiLabel2 -233.000000 -24.000000 -34.000000,212.000015,0.000000 -XuiLabelDark -StartY - - - - -XuiLabel3 -233.000000 -24.000000 -35.000000,293.000000,0.000000 -XuiLabelDark -StartZ - - - - -XuiLabel4 -233.000000 -24.000000 -305.000061,125.000000,0.000000 -XuiLabelDark -EndX - - - - -XuiLabel5 -233.000000 -24.000000 -314.000061,212.000015,0.000000 -XuiLabelDark -EndY - - - - -XuiLabel6 -233.000000 -24.000000 -306.000061,295.000000,0.000000 -XuiLabelDark -EndZ - - - - -CreateButton -734.000000 -52.000000 -38.000000,437.000000,0.000000 -SaveMobs -Create - - - - -Name -759.000000 -47.000000 -32.000031,64.000000,0.000000 -CXuiCtrl4JEdit -StartX -schematic -64 - - - - -XuiLabel7 -480.000000 -42.000000 -31.000000,13.000000,0.000000 -XuiLabelDark -Name - - - - -XuiLabel8 -222.000000 -236.000000 -570.000000,124.000000,0.000000 -XuiLabelDarkLeftWrap -Start co-ords should be even, end co-ords should be odd. If they are not the area included will be expanded. - - - - -SaveMobs -309.000000 -39.000000 -43.000000,388.000000,0.000000 -UseXboxCompression -EndZ -CreateButton -Save Mobs - - - - -UseXboxCompression -309.000000 -39.000000 -353.000000,388.000000,0.000000 -SaveMobs -EndZ -CreateButton -Use Xbox Compression - - - + + 1280.000000 + 720.000000 + + + + XuiDebugSchematic + 823.000000 + 510.000000 + 228.000000,105.000046,0.000000 + CScene_DebugSchematicCreator + Name + + + + StartX + 245.000000 + 33.000000 + 34.000015,158.000000,0.000000 + CXuiCtrl4JEdit + EndX + Name + StartY + 0123456789- + + + + + StartY + 245.000000 + 33.000000 + 34.000015,243.000000,0.000000 + CXuiCtrl4JEdit + EndY + StartX + StartZ + 0123456789- + + + + + StartZ + 245.000000 + 33.000000 + 34.000015,328.000000,0.000000 + CXuiCtrl4JEdit + EndZ + StartY + EndX + 0123456789- + + + + + EndX + 245.000000 + 33.000000 + 308.000000,158.000000,0.000000 + CXuiCtrl4JEdit + StartX + Name + EndY + 0123456789- + + + + + EndY + 245.000000 + 33.000000 + 308.000000,243.000000,0.000000 + CXuiCtrl4JEdit + StartY + EndX + EndZ + 0123456789- + + + + + EndZ + 245.000000 + 33.000000 + 308.000000,328.000000,0.000000 + CXuiCtrl4JEdit + StartZ + EndY + SaveMobs + 0123456789- + + + + + XuiLabel1 + 233.000000 + 24.000000 + 33.000000,128.000015,0.000000 + XuiLabelDark + StartX + + + + + XuiLabel2 + 233.000000 + 24.000000 + 34.000000,212.000015,0.000000 + XuiLabelDark + StartY + + + + + XuiLabel3 + 233.000000 + 24.000000 + 35.000000,293.000000,0.000000 + XuiLabelDark + StartZ + + + + + XuiLabel4 + 233.000000 + 24.000000 + 305.000061,125.000000,0.000000 + XuiLabelDark + EndX + + + + + XuiLabel5 + 233.000000 + 24.000000 + 314.000061,212.000015,0.000000 + XuiLabelDark + EndY + + + + + XuiLabel6 + 233.000000 + 24.000000 + 306.000061,295.000000,0.000000 + XuiLabelDark + EndZ + + + + + CreateButton + 734.000000 + 52.000000 + 38.000000,437.000000,0.000000 + SaveMobs + Create + + + + + Name + 759.000000 + 47.000000 + 32.000031,64.000000,0.000000 + CXuiCtrl4JEdit + StartX + schematic + 64 + + + + + XuiLabel7 + 480.000000 + 42.000000 + 31.000000,13.000000,0.000000 + XuiLabelDark + Name + + + + + XuiLabel8 + 222.000000 + 236.000000 + 570.000000,124.000000,0.000000 + XuiLabelDarkLeftWrap + Start co-ords should be even, end co-ords should be odd. If they are not the area included will be expanded. + + + + + SaveMobs + 309.000000 + 39.000000 + 43.000000,388.000000,0.000000 + UseXboxCompression + EndZ + CreateButton + Save Mobs + + + + + UseXboxCompression + 309.000000 + 39.000000 + 353.000000,388.000000,0.000000 + SaveMobs + EndZ + CreateButton + Use Xbox Compression + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_set_camera.xui b/Minecraft.Client/Common/Media/xuiscene_debug_set_camera.xui index 1c49001c..a4aabcf0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug_set_camera.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug_set_camera.xui @@ -1,160 +1,160 @@ - -1280.000000 -720.000000 - - - -XuiDebugSetCamera -267.275146 -360.700745 -993.158508,15.835232,0.000000 -true -CScene_DebugSetCamera -LockPlayer - - - -CamX -80.000000 -33.000000 -20.000000,100.000000,0.000000 -CXuiCtrl4JEdit -CamZ -CamY -Teleport -YRot -0123456789.- - - - - -CamZ -80.000000 -33.000000 -180.000000,100.000000,0.000000 -CXuiCtrl4JEdit -CamY -CamX -Teleport -Elevation -0123456789.- - - - - -YRot -80.000000 -33.000000 -20.000000,185.000000,0.000000 -CXuiCtrl4JEdit -Elevation -Elevation -CamX -LockPlayer -0123456789.- - - - - -CamY -80.000000 -33.000000 -100.000000,100.000000,0.000000 -CXuiCtrl4JEdit -CamX -CamZ -Teleport -Elevation -0123456789.- - - - - -Elevation -80.000000 -33.000000 -100.000000,185.000000,0.000000 -CXuiCtrl4JEdit -YRot -YRot -CamY -LockPlayer -0123456789.- - - - - -XuiLabel1 -80.000000 -24.000000 -20.000000,70.000015,0.000000 -XuiLabelDark -Cam-X - - - - -XuiLabel2 -140.000000 -24.000000 -180.000000,67.000000,0.000000 -XuiLabelDark -Cam-Z - - - - -XuiLabel3 -236.599915 -24.000000 -10.000000,150.000000,0.000000 -XuiLabelDark -Y-Rot & Elevation (Degs) - - - - -XuiLabel4 -80.000000 -24.000000 -100.000000,70.000000,0.000000 -XuiLabelDark -Cam-Y - - - - -XuiLabel7 -183.599976 -42.000000 -20.000000,14.000000,0.000000 -XuiLabelDark -Set Camera Position - - - - -LockPlayer -180.129578 -39.000000 -21.000000,240.399994,0.000000 -CXuiCheckbox -YRot -Teleport -Lock Player - - - - -Teleport -180.928040 -40.000000 -20.320000,296.820038,0.000000 -LockPlayer -CamX -Teleport - - - + + 1280.000000 + 720.000000 + + + + XuiDebugSetCamera + 267.275146 + 360.700745 + 993.158508,15.835232,0.000000 + true + CScene_DebugSetCamera + LockPlayer + + + + CamX + 80.000000 + 33.000000 + 20.000000,100.000000,0.000000 + CXuiCtrl4JEdit + CamZ + CamY + Teleport + YRot + 0123456789.- + + + + + CamZ + 80.000000 + 33.000000 + 180.000000,100.000000,0.000000 + CXuiCtrl4JEdit + CamY + CamX + Teleport + Elevation + 0123456789.- + + + + + YRot + 80.000000 + 33.000000 + 20.000000,185.000000,0.000000 + CXuiCtrl4JEdit + Elevation + Elevation + CamX + LockPlayer + 0123456789.- + + + + + CamY + 80.000000 + 33.000000 + 100.000000,100.000000,0.000000 + CXuiCtrl4JEdit + CamX + CamZ + Teleport + Elevation + 0123456789.- + + + + + Elevation + 80.000000 + 33.000000 + 100.000000,185.000000,0.000000 + CXuiCtrl4JEdit + YRot + YRot + CamY + LockPlayer + 0123456789.- + + + + + XuiLabel1 + 80.000000 + 24.000000 + 20.000000,70.000015,0.000000 + XuiLabelDark + Cam-X + + + + + XuiLabel2 + 140.000000 + 24.000000 + 180.000000,67.000000,0.000000 + XuiLabelDark + Cam-Z + + + + + XuiLabel3 + 236.599915 + 24.000000 + 10.000000,150.000000,0.000000 + XuiLabelDark + Y-Rot & Elevation (Degs) + + + + + XuiLabel4 + 80.000000 + 24.000000 + 100.000000,70.000000,0.000000 + XuiLabelDark + Cam-Y + + + + + XuiLabel7 + 183.599976 + 42.000000 + 20.000000,14.000000,0.000000 + XuiLabelDark + Set Camera Position + + + + + LockPlayer + 180.129578 + 39.000000 + 21.000000,240.399994,0.000000 + CXuiCheckbox + YRot + Teleport + Lock Player + + + + + Teleport + 180.928040 + 40.000000 + 20.320000,296.820038,0.000000 + LockPlayer + CamX + Teleport + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debug_small.xui b/Minecraft.Client/Common/Media/xuiscene_debug_small.xui index c93beaa1..834f53b2 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debug_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debug_small.xui @@ -1,24 +1,24 @@ - -1280.000000 -720.000000 - - - -SceneDebug -640.000000 -360.000000 -CScene_Debug -XuiSliderVolume - - - -XuiCheckbox1 -198.000000 -50.000000 -22.000000,23.999969,0.000000 -false - - - + + 1280.000000 + 720.000000 + + + + SceneDebug + 640.000000 + 360.000000 + CScene_Debug + XuiSliderVolume + + + + XuiCheckbox1 + 198.000000 + 50.000000 + 22.000000,23.999969,0.000000 + false + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debugoverlay.xui b/Minecraft.Client/Common/Media/xuiscene_debugoverlay.xui index 368f18b5..c8f79529 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debugoverlay.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debugoverlay.xui @@ -1,323 +1,370 @@ - -1280.000000 -720.000000 - - - -DebugOverlay -859.000000 -718.000000 -422.000031,1.000000,0.000000 -CScene_DebugOverlay -ItemsList - - - -ItemsList -413.000000 -274.000000 -431.000000,404.000000,0.000000 -DebugList -SliderFov -SliderFov -EnchantmentsList -MobList - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - - -EnchantmentsList -413.000000 -180.000000 -428.000000,213.999954,0.000000 -DebugList -SetNight -SetNight -MobList -ItemsList - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - - -MobList -413.000000 -180.000000 -428.000000,24.999954,0.000000 -DebugList -SetCamera -SetCamera -ItemsList -EnchantmentsList - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - - -SliderFov -365.000000 -36.000000 -26.000000,309.000031,0.000000 -EnchantmentsList -EnchantmentsList -SliderTime -SetCamera -Set fov - - - - -SliderTime -365.000000 -36.000000 -26.000000,265.000000,0.000000 -EnchantmentsList -EnchantmentsList -SetDay -SliderFov -Set time (unsafe) -24000 -100 -50 -10 - - - - -SetNight -190.000000 -40.000000 -203.000000,224.000000,0.000000 -XuiMainMenuButton_L -SetDay -EnchantmentsList -ToggleThunder -SliderTime -Night - - - - -SetDay -168.000000 -40.000000 -28.000000,224.000000,0.000000 -XuiMainMenuButton_L -EnchantmentsList -SetNight -ToggleRain -SliderTime -Day - - - - -ToggleThunder -190.000000 -40.000000 -203.000061,165.000000,0.000000 -XuiMainMenuButton_L -ToggleRain -MobList -CreateSchematic -SetNight -Toggle Thunder - - - - -ToggleRain -168.000000 -40.000000 -28.000000,165.000000,0.000000 -XuiMainMenuButton_L -MobList -ToggleThunder -CreateSchematic -SetDay -Toggle Rain - - - - -CreateSchematic -365.000000 -40.000000 -26.000000,118.000015,0.000000 -XuiMainMenuButton_L -MobList -MobList -ResetTutorial -ToggleRain -Create Schematic - - - - -ResetTutorial -365.000000 -40.000000 -26.000000,73.000000,0.000000 -XuiMainMenuButton_L -MobList -MobList -SetCamera -CreateSchematic -Reset profile tutorial progress - - - - -SetCamera -365.000000 -40.000000 -25.000000,29.000002,0.000000 -XuiMainMenuButton_L -MobList -MobList -SliderFov -ResetTutorial -Set camera - - - - -SaveToFile -229.000000 -40.000000 -38.000000,36.000000,0.000000 -false -XuiMainMenuButton_L -false -ChunkRadius -ItemsList -SetSpawn -Save Level To File - - - - -ChunkRadius -195.999985 -87.000000 -263.000061,14.000000,0.000000 -false -false -SaveToFile -ItemsList -SetSpawn -Radius (chunks > 0) -64 - - - + + 1280.000000 + 720.000000 + + + + DebugOverlay + 859.000000 + 718.000000 + 422.000031,1.000000,0.000000 + CScene_DebugOverlay + ItemsList + + + + ItemsList + 413.000000 + 274.000000 + 431.000000,404.000000,0.000000 + DebugList + FillArea + FillArea + EnchantmentsList + MobList + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + + EnchantmentsList + 413.000000 + 180.000000 + 428.000000,213.999954,0.000000 + DebugList + SetNight + SetNight + MobList + ItemsList + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + + MobList + 413.000000 + 180.000000 + 428.000000,24.999954,0.000000 + DebugList + SetCamera + SetCamera + ItemsList + EnchantmentsList + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + + SliderFov + 365.000000 + 36.000000 + 26.000000,309.000031,0.000000 + EnchantmentsList + EnchantmentsList + SliderTime + FillArea + Set fov + + + + + SliderTime + 365.000000 + 36.000000 + 26.000000,265.000000,0.000000 + EnchantmentsList + EnchantmentsList + SetDay + SliderFov + Set time (unsafe) + 24000 + 100 + 50 + 10 + + + + + SetNight + 190.000000 + 40.000000 + 203.000000,224.000000,0.000000 + XuiMainMenuButton_L + SetDay + EnchantmentsList + ToggleThunder + SliderTime + Night + + + + + SetDay + 168.000000 + 40.000000 + 28.000000,224.000000,0.000000 + XuiMainMenuButton_L + EnchantmentsList + SetNight + ToggleRain + SliderTime + Day + + + + + ToggleThunder + 190.000000 + 40.000000 + 203.000061,165.000000,0.000000 + XuiMainMenuButton_L + ToggleRain + MobList + CreateSchematic + SetNight + Toggle Thunder + + + + + ToggleRain + 168.000000 + 40.000000 + 28.000000,165.000000,0.000000 + XuiMainMenuButton_L + MobList + ToggleThunder + CreateSchematic + SetDay + Toggle Rain + + + + + CreateSchematic + 365.000000 + 40.000000 + 26.000000,118.000015,0.000000 + XuiMainMenuButton_L + MobList + MobList + ResetTutorial + ToggleRain + Create Schematic + + + + + ResetTutorial + 365.000000 + 40.000000 + 26.000000,73.000000,0.000000 + XuiMainMenuButton_L + MobList + MobList + SetCamera + CreateSchematic + Reset profile tutorial progress + + + + + SetCamera + 365.000000 + 40.000000 + 25.000000,29.000002,0.000000 + XuiMainMenuButton_L + MobList + MobList + SliderFov + ResetTutorial + Set camera + + + + + SaveToFile + 229.000000 + 40.000000 + 38.000000,36.000000,0.000000 + false + XuiMainMenuButton_L + false + ChunkRadius + ItemsList + SetSpawn + Save Level To File + + + + + ChunkRadius + 195.999985 + 87.000000 + 263.000061,14.000000,0.000000 + false + false + SaveToFile + ItemsList + SetSpawn + Radius (chunks > 0) + 64 + + + + + FillArea + 365.000000 + 40.000000 + 27.000000,357.000000,0.000000 + XuiMainMenuButton_L + ItemsList + ItemsList + SliderFov + SaveToFile + Fill Area + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debugoverlay_480.xui b/Minecraft.Client/Common/Media/xuiscene_debugoverlay_480.xui index e07d3669..89270be0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debugoverlay_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debugoverlay_480.xui @@ -1,161 +1,161 @@ - -640.000000 -480.000000 - - - -DebugOverlay -300.000000 -480.000000 -340.000000,1.000000,0.000000 -CScene_DebugOverlay -ItemsList - - - -ItemsList -223.000000 -125.999969 -35.000000,329.000000,0.000000 -DebugList -MobList -ResetTutorial - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - - -MobList -225.000000 -90.999969 -33.000000,238.999969,0.000000 -DebugList -SliderFov -ItemsList - - - -control_ListItem -469.000000 -40.000000 -10.000000,14.000000,0.000000 -5 -false -DebugButton - - - - - -SliderFov -200.000000 -38.000000 -46.000046,201.000000,0.000000 -SliderTime -MobList -Set fov - - - - -SliderTime -200.000000 -38.000000 -45.000046,164.000000,0.000000 -ToggleRain -SliderFov -Set time (unsafe) -24000 -100 -50 -10 - - - - -ToggleThunder -100.000000 -150.000061,132.000000,0.000000 -XuiMainMenuButton_L -ToggleRain -SetSpawn -SliderTime -Toggle Thunder - - - - -ToggleRain -100.000000 -41.000000,132.000000,0.000000 -XuiMainMenuButton_L -ToggleThunder -SetSpawn -SliderTime -Toggle Rain - - - - -SetSpawn -210.000000 -41.000000,95.000000,0.000000 -XuiMainMenuButton_L -false -ResetTutorial -ToggleRain -Set Level Spawn Point To Here - - - - -ResetTutorial -210.000000 -41.000000,57.999996,0.000000 -XuiMainMenuButton_L -ItemsList -SetSpawn -Reset profile tutorial progress - - - - -SaveToFile -100.000000 -38.000000,29.000000,0.000000 -false -XuiMainMenuButton_L -false -ChunkRadius -ItemsList -SetSpawn -Save Level To File - - - - -ChunkRadius -100.000000 -150.000061,29.000000,0.000000 -false -false -SaveToFile -ItemsList -SetSpawn -Radius (chunks > 0) -64 - - - + + 640.000000 + 480.000000 + + + + DebugOverlay + 300.000000 + 480.000000 + 340.000000,1.000000,0.000000 + CScene_DebugOverlay + ItemsList + + + + ItemsList + 223.000000 + 125.999969 + 35.000000,329.000000,0.000000 + DebugList + MobList + ResetTutorial + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + + MobList + 225.000000 + 90.999969 + 33.000000,238.999969,0.000000 + DebugList + SliderFov + ItemsList + + + + control_ListItem + 469.000000 + 40.000000 + 10.000000,14.000000,0.000000 + 5 + false + DebugButton + + + + + + SliderFov + 200.000000 + 38.000000 + 46.000046,201.000000,0.000000 + SliderTime + MobList + Set fov + + + + + SliderTime + 200.000000 + 38.000000 + 45.000046,164.000000,0.000000 + ToggleRain + SliderFov + Set time (unsafe) + 24000 + 100 + 50 + 10 + + + + + ToggleThunder + 100.000000 + 150.000061,132.000000,0.000000 + XuiMainMenuButton_L + ToggleRain + SetSpawn + SliderTime + Toggle Thunder + + + + + ToggleRain + 100.000000 + 41.000000,132.000000,0.000000 + XuiMainMenuButton_L + ToggleThunder + SetSpawn + SliderTime + Toggle Rain + + + + + SetSpawn + 210.000000 + 41.000000,95.000000,0.000000 + XuiMainMenuButton_L + false + ResetTutorial + ToggleRain + Set Level Spawn Point To Here + + + + + ResetTutorial + 210.000000 + 41.000000,57.999996,0.000000 + XuiMainMenuButton_L + ItemsList + SetSpawn + Reset profile tutorial progress + + + + + SaveToFile + 100.000000 + 38.000000,29.000000,0.000000 + false + XuiMainMenuButton_L + false + ChunkRadius + ItemsList + SetSpawn + Save Level To File + + + + + ChunkRadius + 100.000000 + 150.000061,29.000000,0.000000 + false + false + SaveToFile + ItemsList + SetSpawn + Radius (chunks > 0) + 64 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debugtips.xui b/Minecraft.Client/Common/Media/xuiscene_debugtips.xui index 2b656c9e..7bfb8444 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debugtips.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debugtips.xui @@ -1,39 +1,39 @@ - -1280.000000 -720.000000 - - - -DebugTips -1280.000000 -720.000000 -CScene_DebugTips -XuiMenuScene -ButtonConfirm - - - -Tip -800.000000 -100.000000 -240.000061,520.000000,0.000000 -TipPanel - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 1280.000000 + 720.000000 + + + + DebugTips + 1280.000000 + 720.000000 + CScene_DebugTips + XuiMenuScene + ButtonConfirm + + + + + Normal + + + + EndNormal + + gotoplay + Normal + + + + + + Tip + 800.000000 + 100.000000 + 240.000061,520.000000,0.000000 + TipPanel + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debugtips_480.xui b/Minecraft.Client/Common/Media/xuiscene_debugtips_480.xui index d778eeca..34a54c64 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debugtips_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debugtips_480.xui @@ -1,39 +1,39 @@ - -1280.000000 -720.000000 - - - -DebugTips -640.000000 -480.000000 -CScene_DebugTips -XuiMenuScene -ButtonConfirm - - - -Tip -500.000000 -120.000000 -70.000000,256.000061,0.000000 -TipPanel - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 1280.000000 + 720.000000 + + + + DebugTips + 640.000000 + 480.000000 + CScene_DebugTips + XuiMenuScene + ButtonConfirm + + + + + Normal + + + + EndNormal + + gotoplay + Normal + + + + + + Tip + 500.000000 + 120.000000 + 70.000000,256.000061,0.000000 + TipPanel + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_debugtips_small.xui b/Minecraft.Client/Common/Media/xuiscene_debugtips_small.xui index 233a9b9c..014959e0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_debugtips_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_debugtips_small.xui @@ -1,39 +1,39 @@ - -1280.000000 -720.000000 - - - -DebugTips -640.000000 -480.000000 -CScene_DebugTips -XuiMenuScene -ButtonConfirm - - - -Tip -500.000000 -120.000000 -70.000000,180.000061,0.000000 -TipPanel - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 1280.000000 + 720.000000 + + + + DebugTips + 640.000000 + 480.000000 + CScene_DebugTips + XuiMenuScene + ButtonConfirm + + + + + Normal + + + + EndNormal + + gotoplay + Normal + + + + + + Tip + 500.000000 + 120.000000 + 70.000000,180.000061,0.000000 + TipPanel + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_enchant.xui b/Minecraft.Client/Common/Media/xuiscene_enchant.xui index c7281816..fa0b5169 100644 --- a/Minecraft.Client/Common/Media/xuiscene_enchant.xui +++ b/Minecraft.Client/Common/Media/xuiscene_enchant.xui @@ -1,3155 +1,3148 @@ - -1280.000000 -720.000000 - - - -XuiSceneInventory -1280.000000 -720.000000 -CXuiSceneEnchant -XuiBlankScene -Pointer - - - -Group -431.000000 -435.000000 -424.000000,95.000000,0.000000 -15 -XuiScene -Pointer - - - -Ingredient -42.000000 -42.000000 -66.000000,132.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridEnchant - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - - -Inventory -382.000000 -150.000000 -25.000000,230.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -25.000000,369.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -EnchantText -375.000000 -33.000000 -25.000000,14.000000,0.000000 -9 -LabelContainerSceneLeft - - - - -InventoryText -375.000000 -33.000000 -25.000000,200.000000,0.000000 -9 -LabelContainerSceneLeft - - - - -EnchantmentBook -122.000000 -78.000000 -25.999998,48.000000,0.000000 -3 -CXuiCtrlEnchantmentBook - - - - -EnchantPanel -244.000000 -130.000000 -160.000000,46.000000,0.000000 -PanelRecessed -false - - - - -EnchantButton3 -240.000000 -42.000000 -162.000000,132.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton -false - - - - -EnchantButton2 -240.000000 -42.000000 -162.000000,90.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton -false - - - - -EnchantButton1 -240.000000 -42.000000 -162.000000,48.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton -false - - - - -Pointer -42.000000 -42.000000 --185.000000,-84.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - -Normal - - - -EndNormal - - - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -424.000000,95.000000,0.000000 - - - -0 -424.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -424.000000,95.000000,0.000000 - - - -0 -160.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,95.000000,0.000000 - - - -0 -424.000000,95.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneInventory + 1280.000000 + 720.000000 + CXuiSceneEnchant + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 13 + + + + easein + 13 + + + + none + 0 + + + + + + Group + 431.000000 + 435.000000 + 424.000000,95.000000,0.000000 + 15 + XuiScene + Pointer + + + + + Normal + + + + EndNormal + + + + + + + Ingredient + 42.000000 + 42.000000 + 66.000000,132.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridEnchant + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + + Inventory + 382.000000 + 150.000000 + 25.000000,230.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 25.000000,369.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + EnchantText + 375.000000 + 33.000000 + 25.000000,14.000000,0.000000 + 9 + LabelContainerSceneLeft + + + + + InventoryText + 375.000000 + 33.000000 + 25.000000,200.000000,0.000000 + 9 + LabelContainerSceneLeft + + + + + EnchantmentBook + 122.000000 + 78.000000 + 25.999998,48.000000,0.000000 + 3 + CXuiCtrlEnchantmentBook + + + + + EnchantPanel + 244.000000 + 130.000000 + 160.000000,46.000000,0.000000 + PanelRecessed + false + + + + + EnchantButton3 + 240.000000 + 42.000000 + 162.000000,132.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton + false + + + + + EnchantButton2 + 240.000000 + 42.000000 + 162.000000,90.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton + false + + + + + EnchantButton1 + 240.000000 + 42.000000 + 162.000000,48.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton + false + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-84.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_enchant_480.xui b/Minecraft.Client/Common/Media/xuiscene_enchant_480.xui index 3f1eba79..faf2dbe5 100644 --- a/Minecraft.Client/Common/Media/xuiscene_enchant_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_enchant_480.xui @@ -1,2650 +1,2643 @@ - -640.000000 -480.000000 - - - -XuiSceneInventory -640.000000 -480.000000 -CXuiSceneEnchant -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000015,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -13.000001,160.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000001,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -EnchantText -232.000000 -22.000000 -12.000000,12.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -InventoryText -232.000000 -22.000000 -12.000000,138.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -EnchantPanel -144.000000 -94.000000 -103.000000,34.000000,0.000000 -PanelRecessed -false - - - - -EnchantButton3 -140.000000 -105.000000,96.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -EnchantButton2 -140.000000 -105.000000,66.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -EnchantButton1 -140.000000 -105.000000,36.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -Ingredient -32.000000 -32.000000 -38.000000,96.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridEnchant32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - - -EnchantmentBook -88.000000 -54.000000 -11.000000,34.000000,0.000000 -3 -CXuiCtrlEnchantmentBook -..\Images\img1.png - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000015,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -32.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneInventory + 640.000000 + 480.000000 + CXuiSceneEnchant + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 13 + + + + easein + 13 + + + + none + 14 + + + + easein + 15 + + + + none + 13 + + + + + + Group + 260.000000 + 290.000000 + 190.000015,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 13.000001,160.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000001,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + EnchantText + 232.000000 + 22.000000 + 12.000000,12.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,138.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + EnchantPanel + 144.000000 + 94.000000 + 103.000000,34.000000,0.000000 + PanelRecessed + false + + + + + EnchantButton3 + 140.000000 + 105.000000,96.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + EnchantButton2 + 140.000000 + 105.000000,66.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + EnchantButton1 + 140.000000 + 105.000000,36.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + Ingredient + 32.000000 + 32.000000 + 38.000000,96.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridEnchant32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + + EnchantmentBook + 88.000000 + 54.000000 + 11.000000,34.000000,0.000000 + 3 + CXuiCtrlEnchantmentBook + ..\Images\img1.png + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_enchant_small.xui b/Minecraft.Client/Common/Media/xuiscene_enchant_small.xui index 6b648572..5115e0ad 100644 --- a/Minecraft.Client/Common/Media/xuiscene_enchant_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_enchant_small.xui @@ -1,2870 +1,2863 @@ - -640.000000 -360.000000 - - - -XuiSceneEnchant -640.000000 -360.000000 -CXuiSceneEnchant -XuiBlankScene -Pointer - - - -Group -260.000000 -280.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Ingredient -32.000000 -32.000000 -38.000000,96.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridEnchant32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonEnchant32 -22594 -4 - - - - - -Inventory -234.000000 -80.000000 -13.000001,153.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000001,243.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -EnchantText -232.000000 -22.000000 -12.000000,12.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -InventoryText -232.000000 -22.000000 -12.000000,131.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -EnchantmentBook -88.000000 -54.000000 -11.000000,34.000000,0.000000 -3 -CXuiCtrlEnchantmentBook -..\Images\img1.png - - - - -EnchantPanel -144.000000 -94.000000 -103.000000,34.000000,0.000000 -PanelRecessed -false - - - - -EnchantButton3 -140.000000 -105.000000,96.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -EnchantButton2 -140.000000 -105.000000,66.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -EnchantButton1 -140.000000 -105.000000,36.000000,0.000000 -CXuiCtrlEnchantmentButton -EnchantmentButton_Small -false - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -64.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneEnchant + 640.000000 + 360.000000 + CXuiSceneEnchant + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 13 + + + + easein + 14 + + + + none + 0 + + + + + + Group + 260.000000 + 280.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Ingredient + 32.000000 + 32.000000 + 38.000000,96.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridEnchant32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonEnchant32 + 22594 + 4 + + + + + + Inventory + 234.000000 + 80.000000 + 13.000001,153.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000001,243.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + EnchantText + 232.000000 + 22.000000 + 12.000000,12.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,131.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + EnchantmentBook + 88.000000 + 54.000000 + 11.000000,34.000000,0.000000 + 3 + CXuiCtrlEnchantmentBook + ..\Images\img1.png + + + + + EnchantPanel + 144.000000 + 94.000000 + 103.000000,34.000000,0.000000 + PanelRecessed + false + + + + + EnchantButton3 + 140.000000 + 105.000000,96.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + EnchantButton2 + 140.000000 + 105.000000,66.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + EnchantButton1 + 140.000000 + 105.000000,36.000000,0.000000 + CXuiCtrlEnchantmentButton + EnchantmentButton_Small + false + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fireworks.xui b/Minecraft.Client/Common/Media/xuiscene_fireworks.xui index 51b9ae5c..e15ebda3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fireworks.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fireworks.xui @@ -1,2359 +1,2352 @@ - -1280.000000 -720.000000 - - - -FireworksScene -1280.000000 -720.000000 -CXuiSceneFireworks -XuiBlankScene -Pointer - - - -Group -428.000000 -450.000000 -426.000000,130.000000,0.000000 -15 -XuiScene -Pointer - - - -Result -64.000000 -64.000000 -304.000000,96.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical64 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - - -Arrow -72.000000 -48.000000 -206.000015,104.000000,0.000000 -ArrowProgressState -24 - - - - -Inventory -380.000000 -128.000000 -25.000000,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -380.000000 -44.000000 -25.000000,379.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -378.000000 -34.000000 -26.000000,210.000000,0.000000 -12 -LabelContainerSceneLeft - - - - -FireworksText -380.000000 -34.000000 -26.000000,14.000000,0.000000 -LabelContainerSceneLeft - - - - -Ingredients -128.000000 -128.000000 -59.000065,64.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Pointer -42.000000 -42.000000 --185.000000,-63.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -426.000000,130.000000,0.000000 - - - -0 -426.000000,130.000000,0.000000 - - - -2 -100 --100 -50 -424.500031,130.000000,0.000000 - - - -0 -160.000000,130.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,130.000000,0.000000 - - - -0 -426.000000,130.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + FireworksScene + 1280.000000 + 720.000000 + CXuiSceneFireworks + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 12 + + + + none + 13 + + + + easein + 13 + + + + none + 0 + + + + + + Group + 428.000000 + 450.000000 + 426.000000,130.000000,0.000000 + 15 + XuiScene + Pointer + + + + Result + 64.000000 + 64.000000 + 304.000000,96.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical64 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + + Arrow + 72.000000 + 48.000000 + 206.000015,104.000000,0.000000 + ArrowProgressState + 24 + + + + + Inventory + 380.000000 + 128.000000 + 25.000000,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 380.000000 + 44.000000 + 25.000000,379.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 378.000000 + 34.000000 + 26.000000,210.000000,0.000000 + 12 + LabelContainerSceneLeft + + + + + FireworksText + 380.000000 + 34.000000 + 26.000000,14.000000,0.000000 + LabelContainerSceneLeft + + + + + Ingredients + 128.000000 + 128.000000 + 59.000065,64.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-63.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fireworks_480.xui b/Minecraft.Client/Common/Media/xuiscene_fireworks_480.xui index 4c72680e..4acbe63a 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fireworks_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fireworks_480.xui @@ -1,1973 +1,1966 @@ - -640.000000 -480.000000 - - - -DispenserScene -1280.000000 -720.000000 -CXuiSceneFireworks -XuiBlankScene -Pointer - - - -Group -260.000000 -280.000000 -190.000000,100.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -13.000009,152.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000009,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Ingredients -80.000000 -80.000000 -42.000000,38.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,132.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FireworksText -240.000000 -25.000000 -12.000000,6.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Arrow -32.000000 -32.000000 -132.000000,62.000000,0.000000 -ArrowProgressStateSmall -24 - - - - -Result -44.000000 -44.000000 -172.000000,56.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Pointer -26.000000 -26.000000 --50.000000,-40.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,100.000000,0.000000 - - - -0 -190.000000,100.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,100.000000,0.000000 - - - -0 -33.750000,100.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,100.000000,0.000000 - - - -0 -190.000000,100.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + DispenserScene + 1280.000000 + 720.000000 + CXuiSceneFireworks + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 10 + + + + easein + 11 + + + + none + 0 + + + + + + Group + 260.000000 + 280.000000 + 190.000000,100.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 13.000009,152.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000009,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Ingredients + 80.000000 + 80.000000 + 42.000000,38.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,132.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FireworksText + 240.000000 + 25.000000 + 12.000000,6.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Arrow + 32.000000 + 32.000000 + 132.000000,62.000000,0.000000 + ArrowProgressStateSmall + 24 + + + + + Result + 44.000000 + 44.000000 + 172.000000,56.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-40.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fireworks_small.xui b/Minecraft.Client/Common/Media/xuiscene_fireworks_small.xui index 010d349a..39e901af 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fireworks_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fireworks_small.xui @@ -1,1558 +1,1551 @@ - -640.000000 -360.000000 - - - -DispenserScene -640.000000 -360.000000 -CXuiSceneFireworks -XuiBlankScene -Pointer - - - -Group -260.000000 -280.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,151.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Ingredients -80.000000 -80.000000 -42.000000,38.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,130.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FireworksText -240.000000 -25.000000 -12.000000,6.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Arrow -32.000000 -32.000000 -132.000000,62.000000,0.000000 -ArrowProgressStateSmall -24 - - - - -Result -44.000000 -44.000000 -172.000000,56.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -64.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + DispenserScene + 640.000000 + 360.000000 + CXuiSceneFireworks + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 10 + + + + easein + 11 + + + + none + 0 + + + + + + Group + 260.000000 + 280.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,151.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Ingredients + 80.000000 + 80.000000 + 42.000000,38.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,130.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FireworksText + 240.000000 + 25.000000 + 12.000000,6.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Arrow + 32.000000 + 32.000000 + 132.000000,62.000000,0.000000 + ArrowProgressStateSmall + 24 + + + + + Result + 44.000000 + 44.000000 + 172.000000,56.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress.xui b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress.xui index a7038e92..bf6072ac 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress.xui @@ -1,932 +1,77 @@ - -1280.000000 -720.000000 - - - -FullscreenProgressScene -1280.000000 -720.000000 -CScene_FullscreenProgress -XuiMenuScene -ButtonConfirm - - - -Tip -800.000000 -100.000000 -240.000061,520.000000,0.000000 -TipPanel - - - - -Status -640.000000 -26.000000 -320.000031,360.000000,0.000000 -XuiLabel12_Shadowed - - - - -Title -960.000000 -100.000000 -160.000076,250.000000,0.000000 -XuiTitle - - - - -Progress -640.000000 -15.000000 -320.000000,390.000000,0.000000 -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -Timer -183.000000 -169.000000 -548.000000,328.000000,0.000000 -false -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -ButtonConfirm -320.000000 -50.000000 -480.000031,446.000000,0.000000 -false - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 1280.000000 + 720.000000 + + + + FullscreenProgressScene + 1280.000000 + 720.000000 + CScene_FullscreenProgress + XuiMenuScene + ButtonConfirm + + + + Tip + 800.000000 + 100.000000 + 240.000061,520.000000,0.000000 + TipPanel + + + + + Status + 640.000000 + 26.000000 + 320.000031,360.000000,0.000000 + XuiLabel12_Shadowed + + + + + Title + 960.000000 + 100.000000 + 160.000076,250.000000,0.000000 + XuiTitle + + + + + Progress + 640.000000 + 15.000000 + 320.000000,390.000000,0.000000 + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + Timer + 183.000000 + 169.000000 + 548.000000,328.000000,0.000000 + false + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_480.xui b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_480.xui index 22975461..5a4eb369 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_480.xui @@ -1,931 +1,86 @@ - -640.000000 -480.000000 - - - -FullscreenProgressScene -640.000000 -480.000000 -CScene_FullscreenProgress -XuiMenuScene -ButtonConfirm - - - -Tip -500.000000 -120.000000 -70.000000,256.000061,0.000000 -TipPanel - - - - -Status -500.000000 -26.000000 -70.000000,177.000046,0.000000 -XuiLabel12_Shadowed - - - - -Title -500.000000 -50.000000 -70.000000,130.000000,0.000000 -XuiTitleSmall - - - - -Progress -500.000000 -15.000000 -70.000000,207.000046,0.000000 -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -ButtonConfirm -320.000000 -50.000000 -160.000000,382.000061,0.000000 -false - - - - -Timer -72.000000 -72.000000 -284.000000,177.000000,0.000000 -15 -false -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 640.000000 + 480.000000 + + + + FullscreenProgressScene + 640.000000 + 480.000000 + CScene_FullscreenProgress + XuiMenuScene + ButtonConfirm + + + + Tip + 500.000000 + 120.000000 + 70.000000,256.000061,0.000000 + TipPanel + + + + + Status + 500.000000 + 26.000000 + 70.000000,177.000046,0.000000 + XuiLabel12_Shadowed + + + + + Title + 500.000000 + 50.000000 + 70.000000,130.000000,0.000000 + XuiTitleSmall + + + + + Progress + 500.000000 + 15.000000 + 70.000000,207.000046,0.000000 + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + ButtonConfirm + 320.000000 + 50.000000 + 160.000000,382.000061,0.000000 + false + + + + + Timer + 72.000000 + 72.000000 + 284.000000,177.000000,0.000000 + 15 + false + XuiBlankScene + + + + Timer_Square_1 + 21.000000 + 21.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_small.xui b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_small.xui index f6fa45df..dabd7836 100644 --- a/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_fullscreenprogress_small.xui @@ -1,931 +1,77 @@ - -640.000000 -360.000000 - - - -FullscreenProgressScene -640.000000 -360.000000 -CScene_FullscreenProgress -XuiMenuScene -ButtonConfirm - - - -Tip -500.000000 -120.000000 -70.000000,180.000061,0.000000 -TipPanel - - - - -Status -500.000000 -26.000000 -70.000000,130.000046,0.000000 -XuiLabel12_Shadowed - - - - -Title -500.000000 -32.000000 -70.000000,100.000000,0.000000 -XuiTitleSmall - - - - -Progress -500.000000 -15.000000 -70.000000,160.000046,0.000000 -CXuiCtrlLoadingProgress -LoadingProgressState -50 - - - - -Timer -72.000000 -72.000000 -284.000000,140.000000,0.000000 -15 -false -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -ButtonConfirm -320.000000 -50.000000 -160.000000,212.000061,0.000000 -false - - - - - -Normal - - - -EndNormal - -gotoandplay -Normal - - - - + + 640.000000 + 360.000000 + + + + FullscreenProgressScene + 640.000000 + 360.000000 + CScene_FullscreenProgress + XuiMenuScene + ButtonConfirm + + + + Tip + 500.000000 + 120.000000 + 70.000000,180.000061,0.000000 + TipPanel + + + + + Status + 500.000000 + 26.000000 + 70.000000,130.000046,0.000000 + XuiLabel12_Shadowed + + + + + Title + 500.000000 + 32.000000 + 70.000000,100.000000,0.000000 + XuiTitleSmall + + + + + Progress + 500.000000 + 15.000000 + 70.000000,160.000046,0.000000 + CXuiCtrlLoadingProgress + LoadingProgressState + 50 + + + + + Timer + 72.000000 + 72.000000 + 284.000000,140.000000,0.000000 + 15 + false + XuiBlankScene + + + + Timer_Square_1 + 21.000000 + 21.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_furnace.xui b/Minecraft.Client/Common/Media/xuiscene_furnace.xui index 49d46f67..197276cf 100644 --- a/Minecraft.Client/Common/Media/xuiscene_furnace.xui +++ b/Minecraft.Client/Common/Media/xuiscene_furnace.xui @@ -1,650 +1,643 @@ - -1280.000000 -720.000000 - - - -XuiSceneFurnace -1280.000000 -720.000000 -CXuiSceneFurnace -XuiBlankScene -Pointer - - - -Group -428.000000 -430.000000 -426.000000,95.000000,0.000000 -15 -XuiScene -Pointer - - - -Result -64.000000 -64.000000 -308.000000,86.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical64 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -64.000000 -64.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton64 -22594 -4 - - - - - -Fuel -52.000000 -52.000000 -152.000031,142.000015,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Ingredient -66.000000 -62.000000 -153.000031,48.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Burn -72.000000 -48.000000 -225.000000,94.000000,0.000000 -CXuiCtrlBurnProgress -ArrowProgressState -24 - - - - -Lit -51.000000 -50.000000 -148.000000,90.000000,0.000000 -CXuiCtrlFireProgress -FlameProgressState -12 - - - - -Inventory -382.000000 -150.000000 -25.000000,220.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -25.000000,359.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -378.000000 -34.000000 -24.000000,190.000000,0.000000 -12 -LabelContainerSceneLeft - - - - -FurnaceText -380.000000 -34.000000 -26.000000,12.000000,0.000000 -LabelContainerSceneLeft - - - - -FuelText -125.000000 -20.000000 -18.000000,152.000000,0.000000 -3 -LabelContainerSceneRight - - - - -IngredientText -125.000000 -20.000000 -18.000000,58.000000,0.000000 -3 -LabelContainerSceneRight - - - - -Pointer -42.000000 -42.000000 --185.000000,-83.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -426.000000,95.000000,0.000000 - - - -0 -426.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -424.500031,95.000000,0.000000 - - - -0 -160.000000,95.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,95.000000,0.000000 - - - -0 -426.000000,95.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneFurnace + 1280.000000 + 720.000000 + CXuiSceneFurnace + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 16 + + + + none + 17 + + + + easein + 17 + + + + none + 0 + + + + + + Group + 428.000000 + 430.000000 + 426.000000,95.000000,0.000000 + 15 + XuiScene + Pointer + + + + Result + 64.000000 + 64.000000 + 308.000000,86.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical64 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 64.000000 + 64.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton64 + 22594 + 4 + + + + + + Fuel + 52.000000 + 52.000000 + 152.000031,142.000015,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Ingredient + 66.000000 + 62.000000 + 153.000031,48.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Burn + 72.000000 + 48.000000 + 225.000000,94.000000,0.000000 + CXuiCtrlBurnProgress + ArrowProgressState + 24 + + + + + Lit + 51.000000 + 50.000000 + 148.000000,90.000000,0.000000 + CXuiCtrlFireProgress + FlameProgressState + 12 + + + + + Inventory + 382.000000 + 150.000000 + 25.000000,220.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 25.000000,359.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 378.000000 + 34.000000 + 24.000000,190.000000,0.000000 + 12 + LabelContainerSceneLeft + + + + + FurnaceText + 380.000000 + 34.000000 + 26.000000,12.000000,0.000000 + LabelContainerSceneLeft + + + + + FuelText + 125.000000 + 20.000000 + 18.000000,152.000000,0.000000 + 3 + LabelContainerSceneRight + + + + + IngredientText + 125.000000 + 20.000000 + 18.000000,58.000000,0.000000 + 3 + LabelContainerSceneRight + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-83.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_furnace_480.xui b/Minecraft.Client/Common/Media/xuiscene_furnace_480.xui index 4c2f916d..1a0d1478 100644 --- a/Minecraft.Client/Common/Media/xuiscene_furnace_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_furnace_480.xui @@ -1,1399 +1,1392 @@ - -640.000000 -480.000000 - - - -XuiSceneFurnace -640.000000 -480.000000 -CXuiSceneFurnace -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Result -44.000000 -44.000000 -200.000000,60.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Lit -32.000000 -32.000000 -124.000000,66.000000,0.000000 -CXuiCtrlFireProgress -FlameProgressStateSmall -12 - - - - -Fuel -34.000000 -34.000000 -124.000000,98.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVerticalSmall - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Ingredient -36.000000 -36.000000 -124.000000,32.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridVerticalSmall - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Burn -32.000000 -32.000000 -164.000000,64.000000,0.000000 -CXuiCtrlBurnProgress -ArrowProgressStateSmall -24 - - - - -Inventory -234.000000 -78.000000 -13.000000,162.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -234.000000 -25.000000 -12.000000,140.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -FurnaceText -234.000000 -26.000000 -12.000000,8.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FuelText -114.000000 -20.000000 -6.000000,108.000000,0.000000 -3 -LabelContainerSceneRightSmall - - - - -IngredientText -114.000000 -20.000000 -6.000000,42.000000,0.000000 -3 -LabelContainerSceneRightSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -33.750000,96.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneFurnace + 640.000000 + 480.000000 + CXuiSceneFurnace + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 14 + + + + easein + 15 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Result + 44.000000 + 44.000000 + 200.000000,60.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Lit + 32.000000 + 32.000000 + 124.000000,66.000000,0.000000 + CXuiCtrlFireProgress + FlameProgressStateSmall + 12 + + + + + Fuel + 34.000000 + 34.000000 + 124.000000,98.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVerticalSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Ingredient + 36.000000 + 36.000000 + 124.000000,32.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVerticalSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Burn + 32.000000 + 32.000000 + 164.000000,64.000000,0.000000 + CXuiCtrlBurnProgress + ArrowProgressStateSmall + 24 + + + + + Inventory + 234.000000 + 78.000000 + 13.000000,162.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 234.000000 + 25.000000 + 12.000000,140.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + FurnaceText + 234.000000 + 26.000000 + 12.000000,8.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FuelText + 114.000000 + 20.000000 + 6.000000,108.000000,0.000000 + 3 + LabelContainerSceneRightSmall + + + + + IngredientText + 114.000000 + 20.000000 + 6.000000,42.000000,0.000000 + 3 + LabelContainerSceneRightSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_furnace_Small.xui b/Minecraft.Client/Common/Media/xuiscene_furnace_Small.xui index 7b4e5c57..86e641c3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_furnace_Small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_furnace_Small.xui @@ -1,847 +1,840 @@ - -640.000000 -360.000000 - - - -XuiSceneFurnace -640.000000 -360.000000 -CXuiSceneFurnace -XuiBlankScene -Pointer - - - -Group -260.000000 -290.000000 -190.000000,2.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Result -45.639984 -46.888008 -201.991943,58.343994,0.000000 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Fuel -39.712006 -40.479996 -122.991974,98.344009,0.000000 -3 -CXuiCtrlSlotList -ItemGridVerticalSmall - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Ingredient -38.352005 -37.960014 -123.991974,31.343994,0.000000 -3 -CXuiCtrlSlotList -ItemGridVerticalSmall - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -34.000000 -34.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Burn -32.000000 -32.639999 -163.991943,63.343994,0.000000 -CXuiCtrlBurnProgress -ArrowProgressStateSmall -24 - - - - -Lit -34.104004 -33.435295 -121.991943,64.908691,0.000000 -CXuiCtrlFireProgress -FlameProgressStateSmall -12 - - - - -Inventory -234.000000 -80.000000 -12.000000,161.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -233.000000 -12.000000,139.000000,0.000000 -9 -LabelContainerSceneLeftSmall - - - - -FurnaceText -229.000000 -26.000000 -12.000000,7.000000,0.000000 -3 -LabelContainerSceneLeftSmall - - - - -FuelText -114.000000 -20.000000 -6.000000,108.000000,0.000000 -3 -LabelContainerSceneRightSmall - - - - -IngredientText -114.000000 -20.000000 -6.000000,42.000000,0.000000 -3 -LabelContainerSceneRightSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,2.000000,0.000000 - - - -0 -64.000000,2.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,2.000000,0.000000 - - - -0 -190.000000,2.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneFurnace + 640.000000 + 360.000000 + CXuiSceneFurnace + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 14 + + + + easein + 15 + + + + none + 0 + + + + + + Group + 260.000000 + 290.000000 + 190.000000,2.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Result + 45.639984 + 46.888008 + 201.991943,58.343994,0.000000 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Fuel + 39.712006 + 40.479996 + 122.991974,98.344009,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVerticalSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Ingredient + 38.352005 + 37.960014 + 123.991974,31.343994,0.000000 + 3 + CXuiCtrlSlotList + ItemGridVerticalSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 34.000000 + 34.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Burn + 32.000000 + 32.639999 + 163.991943,63.343994,0.000000 + CXuiCtrlBurnProgress + ArrowProgressStateSmall + 24 + + + + + Lit + 34.104004 + 33.435295 + 121.991943,64.908691,0.000000 + CXuiCtrlFireProgress + FlameProgressStateSmall + 12 + + + + + Inventory + 234.000000 + 80.000000 + 12.000000,161.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 233.000000 + 12.000000,139.000000,0.000000 + 9 + LabelContainerSceneLeftSmall + + + + + FurnaceText + 229.000000 + 26.000000 + 12.000000,7.000000,0.000000 + 3 + LabelContainerSceneLeftSmall + + + + + FuelText + 114.000000 + 20.000000 + 6.000000,108.000000,0.000000 + 3 + LabelContainerSceneRightSmall + + + + + IngredientText + 114.000000 + 20.000000 + 6.000000,42.000000,0.000000 + 3 + LabelContainerSceneRightSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_helpandoptions.xui b/Minecraft.Client/Common/Media/xuiscene_helpandoptions.xui index bb64caf8..395244e4 100644 --- a/Minecraft.Client/Common/Media/xuiscene_helpandoptions.xui +++ b/Minecraft.Client/Common/Media/xuiscene_helpandoptions.xui @@ -1,949 +1,117 @@ - -1280.000000 -720.000000 - - - -SceneHelpAndOptions -1280.000000 -720.000000 -CScene_HelpAndOptions -XuiMenuScene -XuiButton1 - - - -XuiButton1 -450.000000 -40.000000 -414.000000,250.000000,0.000000 -XuiMainMenuButton_L -XuiButton7 -XuiButton2 - - - - -XuiButton2 -450.000000 -40.000000 -414.000000,300.000000,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 - - - - -XuiButton3 -450.000000 -40.000000 -414.000000,350.000000,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 - - - - -XuiButton4 -450.000000 -40.000000 -414.000000,400.000000,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 - - - - -XuiButton5 -450.000000 -40.000000 -414.000000,450.000000,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 - - - - -XuiButton6 -450.000000 -40.000000 -414.000000,500.000000,0.000000 -false -XuiMainMenuButton_L -XuiButton5 -XuiButton7 - - - - -XuiButton7 -450.000000 -40.000000 -414.000000,550.000000,0.000000 -false -XuiMainMenuButton_L -XuiButton6 -XuiButton1 - - - - -Timer -182.000000 -168.000000 -549.000000,288.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 1280.000000 + 720.000000 + + + + SceneHelpAndOptions + 1280.000000 + 720.000000 + CScene_HelpAndOptions + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 450.000000 + 40.000000 + 414.000000,250.000000,0.000000 + XuiMainMenuButton_L + XuiButton7 + XuiButton2 + + + + + XuiButton2 + 450.000000 + 40.000000 + 414.000000,300.000000,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 450.000000 + 40.000000 + 414.000000,350.000000,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 450.000000 + 40.000000 + 414.000000,400.000000,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 450.000000 + 40.000000 + 414.000000,450.000000,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 450.000000 + 40.000000 + 414.000000,500.000000,0.000000 + false + XuiMainMenuButton_L + XuiButton5 + XuiButton7 + + + + + XuiButton7 + 450.000000 + 40.000000 + 414.000000,550.000000,0.000000 + false + XuiMainMenuButton_L + XuiButton6 + XuiButton1 + + + + + Timer + 182.000000 + 168.000000 + 549.000000,288.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_helpandoptions_480.xui b/Minecraft.Client/Common/Media/xuiscene_helpandoptions_480.xui index 9f01292b..535e0e13 100644 --- a/Minecraft.Client/Common/Media/xuiscene_helpandoptions_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_helpandoptions_480.xui @@ -1,950 +1,118 @@ - -640.000000 -480.000000 - - - -SceneHelpAndOptions -640.000000 -480.000000 -CScene_HelpAndOptions -XuiMenuScene -XuiButton1 - - - -XuiButton1 -300.000000 -36.000000 -170.000031,140.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton8 -XuiButton2 - - - - -XuiButton2 -300.000000 -36.000000 -170.000031,180.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton1 -XuiButton3 - - - - -XuiButton3 -300.000000 -36.000000 -170.000031,220.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton2 -XuiButton4 - - - - -XuiButton4 -300.000000 -36.000000 -170.000031,260.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton3 -XuiButton5 - - - - -XuiButton5 -300.000000 -36.000000 -170.000031,300.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton4 -XuiButton6 - - - - -XuiButton6 -300.000000 -36.000000 -170.000031,340.000000,0.000000 -false -XuiMainMenuButton_L_Thin -XuiButton5 -XuiButton7 - - - - -XuiButton7 -300.000000 -36.000000 -170.000031,380.000000,0.000000 -false -XuiMainMenuButton_L_Thin -XuiButton6 -XuiButton1 - - - - -Timer -184.000000 -170.000000 -274.000000,195.000000,0.000000 -0.500000,0.500000,1.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 480.000000 + + + + SceneHelpAndOptions + 640.000000 + 480.000000 + CScene_HelpAndOptions + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 300.000000 + 36.000000 + 170.000031,140.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton8 + XuiButton2 + + + + + XuiButton2 + 300.000000 + 36.000000 + 170.000031,180.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 300.000000 + 36.000000 + 170.000031,220.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 300.000000 + 36.000000 + 170.000031,260.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 300.000000 + 36.000000 + 170.000031,300.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 300.000000 + 36.000000 + 170.000031,340.000000,0.000000 + false + XuiMainMenuButton_L_Thin + XuiButton5 + XuiButton7 + + + + + XuiButton7 + 300.000000 + 36.000000 + 170.000031,380.000000,0.000000 + false + XuiMainMenuButton_L_Thin + XuiButton6 + XuiButton1 + + + + + Timer + 184.000000 + 170.000000 + 274.000000,195.000000,0.000000 + 0.500000,0.500000,1.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_helpandoptions_small.xui b/Minecraft.Client/Common/Media/xuiscene_helpandoptions_small.xui index e28b544e..99361f8e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_helpandoptions_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_helpandoptions_small.xui @@ -1,950 +1,118 @@ - -640.000000 -360.000000 - - - -SceneHelpAndOptions -640.000000 -360.000000 -CScene_HelpAndOptions -XuiMenuScene -XuiButton1 - - - -XuiButton1 -400.000000 -40.000000 -120.000023,48.000000,0.000000 -XuiMainMenuButton_L -XuiButton7 -XuiButton2 - - - - -XuiButton2 -400.000000 -40.000000 -120.000023,93.000000,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 - - - - -XuiButton3 -400.000000 -40.000000 -120.000023,138.000000,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 - - - - -XuiButton4 -400.000000 -40.000000 -120.000023,183.000000,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 - - - - -XuiButton5 -400.000000 -40.000000 -120.000023,228.000000,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 - - - - -XuiButton6 -400.000000 -40.000000 -120.000000,273.000000,0.000000 -false -XuiMainMenuButton_L -XuiButton5 -XuiButton7 - - - - -XuiButton7 -400.000000 -40.000000 -120.000000,318.000000,0.000000 -false -XuiMainMenuButton_L -XuiButton6 -XuiButton1 - - - - -Timer -184.000000 -170.000000 -274.000000,118.000000,0.000000 -0.500000,0.500000,1.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 360.000000 + + + + SceneHelpAndOptions + 640.000000 + 360.000000 + CScene_HelpAndOptions + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 400.000000 + 40.000000 + 120.000023,48.000000,0.000000 + XuiMainMenuButton_L + XuiButton7 + XuiButton2 + + + + + XuiButton2 + 400.000000 + 40.000000 + 120.000023,93.000000,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 400.000000 + 40.000000 + 120.000023,138.000000,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 400.000000 + 40.000000 + 120.000023,183.000000,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 400.000000 + 40.000000 + 120.000023,228.000000,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 400.000000 + 40.000000 + 120.000000,273.000000,0.000000 + false + XuiMainMenuButton_L + XuiButton5 + XuiButton7 + + + + + XuiButton7 + 400.000000 + 40.000000 + 120.000000,318.000000,0.000000 + false + XuiMainMenuButton_L + XuiButton6 + XuiButton1 + + + + + Timer + 184.000000 + 170.000000 + 274.000000,118.000000,0.000000 + 0.500000,0.500000,1.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hopper.xui b/Minecraft.Client/Common/Media/xuiscene_hopper.xui index caacfab7..9607d283 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hopper.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hopper.xui @@ -1,1436 +1,1429 @@ - -1280.000000 -720.000000 - - - -HopperScene -1280.000000 -720.000000 -CXuiSceneHopper -XuiBlankScene -Pointer - - - -Group -430.000000 -335.000000 -425.000000,192.500046,0.000000 -15 -XuiScene -Pointer - - - -Inventory -378.000000 -128.000000 -26.000017,138.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -378.000000 -45.000000 -26.000017,276.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Hopper -210.000000 -45.000000 -110.000015,50.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -374.000000 -26.000000,108.000000,0.000000 -8 -LabelContainerSceneLeft - - - - -HopperText -374.000000 -28.000017,16.000000,0.000000 -2 -LabelContainerSceneCentre - - - - -Pointer -42.000000 -42.000000 --185.000000,-246.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -425.000000,192.500046,0.000000 - - - -0 -425.000000,192.500031,0.000000 - - - -2 -100 --100 -50 -425.000000,192.500031,0.000000 - - - -0 -160.000000,192.500031,0.000000 - - - -2 -100 --100 -50 -160.000000,192.500031,0.000000 - - - -0 -425.000000,192.500031,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + HopperScene + 1280.000000 + 720.000000 + CXuiSceneHopper + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 8 + + + + easein + 8 + + + + none + 9 + + + + easein + 9 + + + + none + 8 + + + + + + Group + 430.000000 + 335.000000 + 425.000000,192.500046,0.000000 + 15 + XuiScene + Pointer + + + + Inventory + 378.000000 + 128.000000 + 26.000017,138.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 378.000000 + 45.000000 + 26.000017,276.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Hopper + 210.000000 + 45.000000 + 110.000015,50.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 374.000000 + 26.000000,108.000000,0.000000 + 8 + LabelContainerSceneLeft + + + + + HopperText + 374.000000 + 28.000017,16.000000,0.000000 + 2 + LabelContainerSceneCentre + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-246.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hopper_480.xui b/Minecraft.Client/Common/Media/xuiscene_hopper_480.xui index 2fd755d2..43c41dff 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hopper_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hopper_480.xui @@ -1,1891 +1,1884 @@ - -640.000000 -480.000000 - - - -HoperScene -640.000000 -480.000000 -CXuiSceneHopper -XuiBlankScene -Pointer - - - -Group -260.000000 -220.000000 -190.000015,130.000031,0.000000 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -13.000001,92.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000001,180.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Hopper -130.000000 -65.000015,36.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -13.000000,72.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -HopperText -160.000000 -25.000000 -50.000008,14.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-100.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000015,130.000031,0.000000 - - - -0 -190.000000,130.000031,0.000000 - - - -2 -100 --100 -50 -190.000000,130.000031,0.000000 - - - -0 -33.750000,130.000031,0.000000 - - - -2 -100 --100 -50 -60.000000,130.000031,0.000000 - - - -0 -190.000000,130.000031,0.000000 - - - - + + 640.000000 + 480.000000 + + + + HoperScene + 640.000000 + 480.000000 + CXuiSceneHopper + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 8 + + + + easein + 8 + + + + none + 9 + + + + easein + 10 + + + + none + 8 + + + + + + Group + 260.000000 + 220.000000 + 190.000015,130.000031,0.000000 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 13.000001,92.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000001,180.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Hopper + 130.000000 + 65.000015,36.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 13.000000,72.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + HopperText + 160.000000 + 25.000000 + 50.000008,14.000000,0.000000 + LabelContainerSceneCentreSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-100.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hopper_small.xui b/Minecraft.Client/Common/Media/xuiscene_hopper_small.xui index df67f279..7f803bf3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hopper_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hopper_small.xui @@ -1,1348 +1,1341 @@ - -640.000000 -360.000000 - - - -HopperScene -640.000000 -360.000000 -CXuiSceneHopper -XuiBlankScene -Pointer - - - -Group -260.000000 -220.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -13.000009,91.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000009,180.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Hopper -130.000000 -65.000015,36.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -13.000000,70.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -HopperText -162.000000 -25.000000 -49.000008,14.000000,0.000000 -2 -LabelContainerSceneCentreSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-110.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -64.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + HopperScene + 640.000000 + 360.000000 + CXuiSceneHopper + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 260.000000 + 220.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 13.000009,91.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000009,180.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Hopper + 130.000000 + 65.000015,36.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 13.000000,70.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + HopperText + 162.000000 + 25.000000 + 49.000008,14.000000,0.000000 + 2 + LabelContainerSceneCentreSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-110.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_horse.xui b/Minecraft.Client/Common/Media/xuiscene_horse.xui index deec82ad..68f71918 100644 --- a/Minecraft.Client/Common/Media/xuiscene_horse.xui +++ b/Minecraft.Client/Common/Media/xuiscene_horse.xui @@ -1,2281 +1,2274 @@ - -1280.000000 -720.000000 - - - -HorseScene -1280.000000 -720.000000 -CXuiSceneHorseInventory -XuiBlankScene -Pointer - - - -Group -430.000000 -430.000000 -425.000000,135.000031,0.000000 -15 -XuiScene -Pointer - - - -Inventory -378.000000 -128.000000 -26.000017,234.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -382.000000 -45.000000 -26.000000,372.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Chest -210.000000 -126.000000 -194.000000,56.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -374.000000 -26.000000,202.000000,0.000000 -8 -LabelContainerSceneLeft - - - - -HorseText -374.000000 -26.000000,16.000000,0.000000 -2 -LabelContainerSceneLeft - - - - -Saddle -45.000000 -45.000000 -26.000000,56.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridHorseSaddle - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseSaddle -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseSaddle -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseSaddle -22594 -4 - - - - - -Armor -45.000000 -45.000000 -26.000000,102.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridHorseArmor - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseArmor -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseArmor -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonHorseArmor -22594 -4 - - - - - -Horse -120.000000 -126.000000 -71.000000,56.000000,0.000000 -3 -HorsePanel -..\Images\img1.png - - - - -Pointer -42.000000 -42.000000 --185.000000,-151.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -425.000000,135.000031,0.000000 - - - -0 -425.000000,135.000046,0.000000 - - - -2 -100 --100 -50 -425.000000,135.000046,0.000000 - - - -0 -160.000000,135.000046,0.000000 - - - -2 -100 --100 -50 -160.000000,135.000046,0.000000 - - - -0 -425.000000,135.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + HorseScene + 1280.000000 + 720.000000 + CXuiSceneHorseInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 11 + + + + easein + 11 + + + + none + 12 + + + + easein + 12 + + + + none + 13 + + + + + + Group + 430.000000 + 430.000000 + 425.000000,135.000031,0.000000 + 15 + XuiScene + Pointer + + + + Inventory + 378.000000 + 128.000000 + 26.000017,234.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 382.000000 + 45.000000 + 26.000000,372.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Chest + 210.000000 + 126.000000 + 194.000000,56.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 374.000000 + 26.000000,202.000000,0.000000 + 8 + LabelContainerSceneLeft + + + + + HorseText + 374.000000 + 26.000000,16.000000,0.000000 + 2 + LabelContainerSceneLeft + + + + + Saddle + 45.000000 + 45.000000 + 26.000000,56.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseSaddle + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseSaddle + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseSaddle + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseSaddle + 22594 + 4 + + + + + + Armor + 45.000000 + 45.000000 + 26.000000,102.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseArmor + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseArmor + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseArmor + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseArmor + 22594 + 4 + + + + + + Horse + 120.000000 + 126.000000 + 71.000000,56.000000,0.000000 + 3 + HorsePanel + ..\Images\img1.png + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-151.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_horse_480.xui b/Minecraft.Client/Common/Media/xuiscene_horse_480.xui index 12cf3ad3..7aa0e88e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_horse_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_horse_480.xui @@ -1,2770 +1,3090 @@ - -640.000000 -480.000000 - - - -HorseScene -640.000000 -480.000000 -CXuiSceneHorseInventory -XuiBlankScene -Pointer - - - -Group -260.000000 -285.000000 -190.000015,98.000000,0.000000 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,156.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,244.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Chest -130.000000 -90.000000 -116.000000,40.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,132.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -HopperText -160.000000 -25.000000 -12.000000,14.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Saddle -30.000000 -12.000000,40.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Armor -30.000000 -12.000000,68.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Horse -74.000000 -78.000000 -40.000000,40.000000,0.000000 -3 -HorsePanel -..\Images\img1.png - - - - -Pointer -26.000000 -26.000000 --50.000000,-35.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000015,98.000000,0.000000 - - - -0 -190.000000,98.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,98.000000,0.000000 - - - -0 -33.750000,98.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,98.000000,0.000000 - - - -0 -190.000000,98.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + HorseScene + 640.000000 + 480.000000 + CXuiSceneHorseInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 11 + + + + easein + 11 + + + + none + 12 + + + + easein + 13 + + + + none + 11 + + + + + + Group + 260.000000 + 285.000000 + 190.000015,98.000000,0.000000 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,156.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,244.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Chest + 130.000000 + 90.000000 + 116.000000,40.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,132.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + HopperText + 160.000000 + 25.000000 + 12.000000,14.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Saddle + 30.000000 + 12.000000,40.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseSaddleSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseSaddle + 22594 + 4 + + + + + + Armor + 30.000000 + 12.000000,68.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseArmorSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseArmor + 22594 + 4 + + + + + + Horse + 74.000000 + 78.000000 + 40.000000,40.000000,0.000000 + 3 + HorsePanel + ..\Images\img1.png + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-35.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_horse_small.xui b/Minecraft.Client/Common/Media/xuiscene_horse_small.xui index f345392e..3cbae3f9 100644 --- a/Minecraft.Client/Common/Media/xuiscene_horse_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_horse_small.xui @@ -1,2175 +1,2495 @@ - -640.000000 -360.000000 - - - -HorseScene -640.000000 -360.000000 -CXuiSceneHorseInventory -XuiBlankScene -Pointer - - - -Group -260.000000 -285.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,156.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,244.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Chest -130.000000 -78.000000 -116.000000,40.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,134.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -HorseText -162.000000 -25.000000 -12.000000,14.000000,0.000000 -2 -LabelContainerSceneLeftSmall - - - - -Saddle -30.000000 -12.000000,40.000004,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Armor -30.000000 -12.000000,68.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Horse -74.000000 -78.000000 -40.000000,40.000000,0.000000 -3 -HorsePanel -..\Images\img1.png - - - - -Pointer -26.000000 -26.000000 --50.000000,-45.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -64.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + HorseScene + 640.000000 + 360.000000 + CXuiSceneHorseInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 11 + + + + easein + 12 + + + + none + 0 + + + + + + Group + 260.000000 + 285.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,156.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,244.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Chest + 130.000000 + 78.000000 + 116.000000,40.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,134.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + HorseText + 162.000000 + 25.000000 + 12.000000,14.000000,0.000000 + 2 + LabelContainerSceneLeftSmall + + + + + Saddle + 30.000000 + 12.000000,40.000004,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseSaddleSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseSaddle + 22594 + 4 + + + + + + Armor + 30.000000 + 12.000000,68.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridHorseArmorSmall + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonHorseArmor + 22594 + 4 + + + + + + Horse + 74.000000 + 78.000000 + 40.000000,40.000000,0.000000 + 3 + HorsePanel + ..\Images\img1.png + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-45.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay.xui index 5d052cba..54ee0e3f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay.xui @@ -1,829 +1,828 @@ - -1280.000000 -720.000000 - - - -SceneHowToPlay -1280.000000 -720.000000 -[LayerFolders]0|-Fireworks|4|+|0|-Hopper|4|+|0|-Dropper|4|+|0|-Beacon|4|+|0|-Horses|2|+|0|-Enderchest|2|+|0|-Trading|7|+|0|-Anvil|5|+|0|-Enchantment|4|+|0|-Brewing|4|+|0|-FarmingAnimals|2|+|0|-Breeding|2|+|1|-Creative Mode|3|+|0|+What's New|1|+|1|-SocialMedia|1|+|0|-Multiplayer|1|+|0|-CraftingTable|5|+|0|-Crafting|5|+|0|-Furnace|6|+|0|-Large Chest|4|+|0|-SmallChest|4|+|0|-Inventory|3|+|0|-Basics|1|+|0|-HUD|2|+|0|-Dispenser|4|+|0|-TheEnd|2|+|0|-Nether Portal|2|+|0[/LayerFolders] -CScene_HowToPlay -XuiBlankScene -XuiSliderVolume - - - -XuiImageNetherPortal -525.000000 -308.000000 -596.000000,252.000000,0.000000 -ImHowToPlayNetherPortal - - - - -XuiHtmlControlNetherPortal -380.000000 -296.000000 -180.000000,252.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageTheEnd -525.000000 -308.000000 -596.000000,252.000000,0.000000 -ImHowToPlayTheEnd - - - - -XuiHtmlControlTheEnd -380.000000 -296.000000 -180.000000,252.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageDispenser -453.000000 -431.000000 -658.000000,186.000000,0.000000 -ImHowToPlayDispenser - - - - -XuiHtmlControlDispenser -380.000000 -296.000000 -220.000000,252.000000,0.000000 -XuiHtmlControl_H2P - - - - -DInventory -372.000000 -28.000000 -696.000000,376.000000,0.000000 -LabelContainerSceneLeft - - - - -DText -260.000000 -32.000000 -820.000000,214.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiHtmlControlHUD -706.000000 -188.000000 -286.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageHUD -583.000000 -157.000000 -348.000000,444.000000,0.000000 -ImHowToPlayHUD - - - - -XuiHtmlControlBasics -634.000000 -384.000000 -322.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageInventory -451.000000 -455.000000 -654.000000,196.000000,0.000000 -ImHowToPlayInventory - - - - -IInventory -372.000000 -28.000000 -692.000000,406.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiHtmlControlInventory -404.000000 -380.000000 -204.000046,226.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageChest -449.000000 -434.000000 -626.000000,196.000000,0.000000 -ImHowToPlayChest - - - - -SCChest -376.000000 -28.000000 -662.000000,220.000000,0.000000 -LabelContainerSceneLeft - - - - -SCInventory -376.000000 -32.000000 -662.000000,388.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiHtmlControlChest -362.000000 -271.000000 -231.000000,272.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlLargeChest -364.000000 -260.000000 -280.000000,262.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageLargeChest -335.000000 -417.000000 -686.000000,196.000000,0.000000 -ImHowToPlayLargeChest - - - - -LCChest -280.000000 -24.000000 -712.000000,212.000000,0.000000 -LabelContainerSceneLeft - - - - -LCInventory -280.000000 -24.000000 -712.000000,430.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiImageFurnace -444.000000 -448.000000 -639.000000,194.000000,0.000000 -ImHowToPlayFurnace - - - - -FChest -325.000000 -34.000000 -666.000000,206.000000,0.000000 -LabelContainerSceneLeft - - - - -FIngredient -125.000000 -20.000000 -661.000000,258.000000,0.000000 -LabelContainerSceneRight - - - - -FInventory -320.000000 -34.000000 -666.000000,384.000000,0.000000 -LabelContainerSceneLeft - - - - -FFuel -125.000000 -20.000000 -661.000000,352.000000,0.000000 -LabelContainerSceneRight - - - - -XuiHtmlControlFurnace -380.000000 -359.000000 -217.750015,222.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageCrafting -563.000000 -428.000000 -599.000000,206.000000,0.000000 -ImHowToPlayCrafting - - - - -CInventory -242.000000 -20.000000 -844.000000,458.000000,0.000000 -XuiLabelDarkCentred - - - - -CGroup -492.000000 -27.000000 -610.000000,282.000000,0.000000 -XuiLabelDarkCentred - - - - -CItem -215.000000 -20.000000 -612.000000,458.000000,0.000000 -XuiLabelDarkCentred - - - - -XuiHtmlControlCrafting -380.000000 -331.000000 -188.000000,246.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageCraftingTable -517.000000 -371.000000 -590.000000,224.000000,0.000000 -ImHowToPlayCraftingTable - - - - -CTInventory3x3 -264.000000 -20.000000 -827.000000,442.000000,0.000000 -XuiLabelDarkCentred - - - - -CTGroup -340.000000 -27.000000 -680.000000,294.000000,0.000000 -XuiLabelDarkCentred - - - - -CTItem -209.678864 -20.000000 -607.000000,442.000000,0.000000 -XuiLabelDarkCentred - - - - -XuiHtmlControlCraftingTable -365.000000 -322.000000 -194.000000,242.000031,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlMultiplayer -633.000000 -384.000000 -324.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlSocialMedia -633.000000 -384.000000 -324.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBanList -633.000000 -384.000000 -324.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlWhatsNew -633.000000 -384.000000 -324.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlCreative -380.000000 -331.000000 -198.000000,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageCreative -491.000000 -371.000000 -611.000000,226.000000,0.000000 -ImHowToPlayCreative - - - - -CIGroup -340.000000 -27.000000 -687.000000,290.000000,0.000000 -XuiLabelDarkCentred - - - - -XuiHtmlControlHostOptions -633.000000 -384.000000 -324.000000,218.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBreeding -380.000000 -331.000000 -198.000000,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageBreeding -339.000000 -342.000000 -612.000000,246.000000,0.000000 -ImHowToPlayBreeding - - - - -XuiHtmlControlFarmingAnimals -380.000000 -331.000000 -198.000000,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageFarmingAnimals -339.000000 -342.000000 -612.000000,246.000000,0.000000 -ImHowToPlayFarmingAnimals - - - - -XuiHtmlControlBrewing -380.000000 -331.000000 -198.000000,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageBrewing -339.000000 -342.000000 -612.000000,241.000000,0.000000 -ImHowToPlayBrewing - - - - -BInventory -300.000000 -34.000000 -630.000000,396.000000,0.000000 -LabelContainerSceneLeft - - - - -BBrew -300.000000 -34.000000 -630.000000,249.000000,0.000000 -LabelContainerSceneCentre - - - - -XuiHtmlControlEnchantment -380.000000 -331.000000 -198.000000,224.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageEnchantment -339.000000 -342.000000 -612.000000,226.000000,0.000000 -ImHowToPlayEnchantment - - - - -EInventory -300.000000 -34.000000 -638.000000,376.000000,0.000000 -LabelContainerSceneLeft - - - - -EEnchant -300.000000 -34.000000 -638.000000,240.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiHtmlControlAnvil -380.000000 -359.000000 -217.750015,222.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageAnvil -430.000000 -430.000000 -680.000000,198.000000,0.000000 -ImHowToPlayAnvil - - - - -ACost -232.000000 -848.000000,360.000000,0.000000 -XuiLabelAffordable - - - - -AInventory -260.000000 -34.000000 -703.333313,385.333344,0.000000 -LabelContainerSceneLeft - - - - -ARepairAndName -260.000000 -34.000000 -814.000000,210.666672,0.000000 -LabelContainerSceneCentre - - - - -XuiHtmlControlTrading -380.000000 -359.000000 -142.000000,222.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageTrading -588.000000 -360.000000 -552.000000,230.000000,0.000000 -ImHowToPlayTrading - - - - -TVillagerOffers -588.000000 -34.000000 -552.000000,246.000000,0.000000 -LabelContainerSceneCentre - - - - -TNeededForTrade -216.000000 -43.000000 -578.000000,385.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -TOffer1Label -144.000000 -24.000000 -634.000000,436.000000,0.000000 -XuiLabelDarkLeftWrapSmall10 - - - - -TOffer2Label -144.000000 -24.000000 -633.125061,489.000000,0.000000 -XuiLabelDarkLeftWrapSmall10 - - - - -TInventory -312.000000 -24.000000 -799.125061,380.000000,0.000000 -XuiLabelDarkCentredSmall - - - - -XuiHtmlControlEnderchest -380.000000 -331.000000 -198.000000,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageEnderchest -339.000000 -342.000000 -612.000000,246.000000,0.000000 -ImHowToPlayEnderchest - - - - -XuiHtmlControlHorses -380.000000 -331.000000 -176.000076,242.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageHorses -516.000000 -302.000000 -588.000061,266.000000,0.000000 -ImHowToPlayHorses - - - - -XuiHtmlControlBeacon -380.000000 -359.000000 -208.000000,222.000000,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageBeacon -430.000000 -430.000000 -640.000000,198.000000,0.000000 -ImHowToPlayBeacon - - - - -BeSecond -190.000000 -34.000000 -861.125000,218.000000,0.000000 -XuiLabelDarkCentredWrapSmall - + + 1280.000000 + 720.000000 + + + + SceneHowToPlay + 1280.000000 + 720.000000 + CScene_HowToPlay + XuiBlankScene + XuiSliderVolume + + + + XuiImageNetherPortal + 525.000000 + 308.000000 + 596.000000,252.000000,0.000000 + ImHowToPlayNetherPortal + + + + + XuiHtmlControlNetherPortal + 380.000000 + 296.000000 + 180.000000,252.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageTheEnd + 525.000000 + 308.000000 + 596.000000,252.000000,0.000000 + ImHowToPlayTheEnd + + + + + XuiHtmlControlTheEnd + 380.000000 + 296.000000 + 180.000000,252.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageDispenser + 453.000000 + 431.000000 + 658.000000,186.000000,0.000000 + ImHowToPlayDispenser + + + + + XuiHtmlControlDispenser + 380.000000 + 296.000000 + 220.000000,252.000000,0.000000 + XuiHtmlControl_H2P + + + + + DInventory + 372.000000 + 28.000000 + 696.000000,376.000000,0.000000 + LabelContainerSceneLeft + + + + + DText + 260.000000 + 32.000000 + 820.000000,214.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiHtmlControlHUD + 706.000000 + 188.000000 + 286.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageHUD + 583.000000 + 157.000000 + 348.000000,444.000000,0.000000 + ImHowToPlayHUD + + + + + XuiHtmlControlBasics + 634.000000 + 384.000000 + 322.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageInventory + 451.000000 + 455.000000 + 654.000000,196.000000,0.000000 + ImHowToPlayInventory + + + + + IInventory + 372.000000 + 28.000000 + 692.000000,406.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiHtmlControlInventory + 404.000000 + 380.000000 + 204.000046,226.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageChest + 449.000000 + 434.000000 + 626.000000,196.000000,0.000000 + ImHowToPlayChest + + + + + SCChest + 376.000000 + 28.000000 + 662.000000,220.000000,0.000000 + LabelContainerSceneLeft + + + + + SCInventory + 376.000000 + 32.000000 + 662.000000,388.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiHtmlControlChest + 362.000000 + 271.000000 + 231.000000,272.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlLargeChest + 364.000000 + 260.000000 + 280.000000,262.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageLargeChest + 335.000000 + 417.000000 + 686.000000,196.000000,0.000000 + ImHowToPlayLargeChest + + + + + LCChest + 280.000000 + 24.000000 + 712.000000,212.000000,0.000000 + LabelContainerSceneLeft + + + + + LCInventory + 280.000000 + 24.000000 + 712.000000,430.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiImageFurnace + 444.000000 + 448.000000 + 639.000000,194.000000,0.000000 + ImHowToPlayFurnace + + + + + FChest + 325.000000 + 34.000000 + 666.000000,206.000000,0.000000 + LabelContainerSceneLeft + + + + + FIngredient + 125.000000 + 20.000000 + 661.000000,258.000000,0.000000 + LabelContainerSceneRight + + + + + FInventory + 320.000000 + 34.000000 + 666.000000,384.000000,0.000000 + LabelContainerSceneLeft + + + + + FFuel + 125.000000 + 20.000000 + 661.000000,352.000000,0.000000 + LabelContainerSceneRight + + + + + XuiHtmlControlFurnace + 380.000000 + 359.000000 + 217.750015,222.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageCrafting + 563.000000 + 428.000000 + 599.000000,206.000000,0.000000 + ImHowToPlayCrafting + + + + + CInventory + 242.000000 + 20.000000 + 844.000000,458.000000,0.000000 + XuiLabelDarkCentred + + + + + CGroup + 492.000000 + 27.000000 + 610.000000,282.000000,0.000000 + XuiLabelDarkCentred + + + + + CItem + 215.000000 + 20.000000 + 612.000000,458.000000,0.000000 + XuiLabelDarkCentred + + + + + XuiHtmlControlCrafting + 380.000000 + 331.000000 + 188.000000,246.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageCraftingTable + 517.000000 + 371.000000 + 590.000000,224.000000,0.000000 + ImHowToPlayCraftingTable + + + + + CTInventory3x3 + 264.000000 + 20.000000 + 827.000000,442.000000,0.000000 + XuiLabelDarkCentred + + + + + CTGroup + 340.000000 + 27.000000 + 680.000000,294.000000,0.000000 + XuiLabelDarkCentred + + + + + CTItem + 209.678864 + 20.000000 + 607.000000,442.000000,0.000000 + XuiLabelDarkCentred + + + + + XuiHtmlControlCraftingTable + 365.000000 + 322.000000 + 194.000000,242.000031,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlMultiplayer + 633.000000 + 384.000000 + 324.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlSocialMedia + 633.000000 + 384.000000 + 324.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBanList + 633.000000 + 384.000000 + 324.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlWhatsNew + 633.000000 + 384.000000 + 324.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlCreative + 380.000000 + 331.000000 + 198.000000,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageCreative + 491.000000 + 371.000000 + 611.000000,226.000000,0.000000 + ImHowToPlayCreative + + + + + CIGroup + 340.000000 + 27.000000 + 687.000000,290.000000,0.000000 + XuiLabelDarkCentred + + + + + XuiHtmlControlHostOptions + 633.000000 + 384.000000 + 324.000000,218.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBreeding + 380.000000 + 331.000000 + 198.000000,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageBreeding + 339.000000 + 342.000000 + 612.000000,246.000000,0.000000 + ImHowToPlayBreeding + + + + + XuiHtmlControlFarmingAnimals + 380.000000 + 331.000000 + 198.000000,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageFarmingAnimals + 339.000000 + 342.000000 + 612.000000,246.000000,0.000000 + ImHowToPlayFarmingAnimals + + + + + XuiHtmlControlBrewing + 380.000000 + 331.000000 + 198.000000,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageBrewing + 339.000000 + 342.000000 + 612.000000,241.000000,0.000000 + ImHowToPlayBrewing + + + + + BInventory + 300.000000 + 34.000000 + 630.000000,396.000000,0.000000 + LabelContainerSceneLeft + + + + + BBrew + 300.000000 + 34.000000 + 630.000000,249.000000,0.000000 + LabelContainerSceneCentre + + + + + XuiHtmlControlEnchantment + 380.000000 + 331.000000 + 198.000000,224.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageEnchantment + 339.000000 + 342.000000 + 612.000000,226.000000,0.000000 + ImHowToPlayEnchantment + + + + + EInventory + 300.000000 + 34.000000 + 638.000000,376.000000,0.000000 + LabelContainerSceneLeft + + + + + EEnchant + 300.000000 + 34.000000 + 638.000000,240.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiHtmlControlAnvil + 380.000000 + 359.000000 + 217.750015,222.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageAnvil + 430.000000 + 430.000000 + 680.000000,198.000000,0.000000 + ImHowToPlayAnvil + + + + + ACost + 232.000000 + 848.000000,360.000000,0.000000 + XuiLabelAffordable + + + + + AInventory + 260.000000 + 34.000000 + 703.333313,385.333344,0.000000 + LabelContainerSceneLeft + + + + + ARepairAndName + 260.000000 + 34.000000 + 814.000000,210.666672,0.000000 + LabelContainerSceneCentre + + + + + XuiHtmlControlTrading + 380.000000 + 359.000000 + 142.000000,222.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageTrading + 588.000000 + 360.000000 + 552.000000,230.000000,0.000000 + ImHowToPlayTrading + + + + + TVillagerOffers + 588.000000 + 34.000000 + 552.000000,246.000000,0.000000 + LabelContainerSceneCentre + + + + + TNeededForTrade + 216.000000 + 43.000000 + 578.000000,385.000000,0.000000 + false + XuiLabelDarkCentredWrapSmall + + + + + TOffer1Label + 144.000000 + 24.000000 + 634.000000,436.000000,0.000000 + XuiLabelDarkLeftWrapSmall10 + + + + + TOffer2Label + 144.000000 + 24.000000 + 633.125061,489.000000,0.000000 + XuiLabelDarkLeftWrapSmall10 + + + + + TInventory + 312.000000 + 24.000000 + 799.125061,380.000000,0.000000 + XuiLabelDarkCentredSmall + + + + + XuiHtmlControlEnderchest + 380.000000 + 331.000000 + 198.000000,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageEnderchest + 339.000000 + 342.000000 + 612.000000,246.000000,0.000000 + ImHowToPlayEnderchest + + + + + XuiHtmlControlHorses + 380.000000 + 331.000000 + 176.000076,242.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageHorses + 516.000000 + 302.000000 + 588.000061,266.000000,0.000000 + ImHowToPlayHorses + + + + + XuiHtmlControlBeacon + 380.000000 + 359.000000 + 208.000000,222.000000,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageBeacon + 430.000000 + 430.000000 + 640.000000,198.000000,0.000000 + ImHowToPlayBeacon + + + + + BeSecond + 190.000000 + 34.000000 + 861.125000,218.000000,0.000000 + XuiLabelDarkCentredWrapSmall + - - - - -BeFirst -190.000000 -34.000000 -659.125061,218.000000,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -XuiImageDropper -453.000000 -431.000000 -632.000000,186.000000,0.000000 -ImHowToPlayDispenser - - - - -XuiHtmlControlDropper -380.000000 -296.000000 -194.000000,252.000000,0.000000 -XuiHtmlControl_H2P - - - - -DrInventory -372.000000 -28.000000 -670.500061,376.000000,0.000000 -LabelContainerSceneLeft - - - - -DrText -260.000000 -32.000000 -794.500061,214.000000,0.000000 -LabelContainerSceneLeft - - - - -XuiImageHopper -430.000000 -336.000000 -620.000000,206.000000,0.000000 -ImHowToPlayHopper - - - - -XuiHtmlControlHopper -380.000000 -296.000000 -206.000000,220.000000,0.000000 -XuiHtmlControl_H2P - - - - -HInventory -372.000000 -28.000000 -648.000000,316.000000,0.000000 -LabelContainerSceneLeft - - - - -HText -392.000000 -32.000000 -640.000000,220.000000,0.000000 -LabelContainerSceneCentre - - - - -XuiImageFireworks -428.000000 -450.000000 -636.000000,176.000000,0.000000 -ImHowToPlayFireworks - - - - -XuiHtmlControlFireworks -380.000000 -400.000000 -214.000000,196.000000,0.000000 -XuiHtmlControl_H2P - - - - -FiInventory -372.000000 -28.000000 -665.500061,382.000000,0.000000 -LabelContainerSceneLeft - - - - -FiText -260.000000 -32.000000 -665.500061,194.000000,0.000000 -LabelContainerSceneLeft - - - + + + + + BeFirst + 190.000000 + 34.000000 + 659.125061,218.000000,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + XuiImageDropper + 453.000000 + 431.000000 + 632.000000,186.000000,0.000000 + ImHowToPlayDispenser + + + + + XuiHtmlControlDropper + 380.000000 + 296.000000 + 194.000000,252.000000,0.000000 + XuiHtmlControl_H2P + + + + + DrInventory + 372.000000 + 28.000000 + 670.500061,376.000000,0.000000 + LabelContainerSceneLeft + + + + + DrText + 260.000000 + 32.000000 + 794.500061,214.000000,0.000000 + LabelContainerSceneLeft + + + + + XuiImageHopper + 430.000000 + 336.000000 + 620.000000,206.000000,0.000000 + ImHowToPlayHopper + + + + + XuiHtmlControlHopper + 380.000000 + 296.000000 + 206.000000,220.000000,0.000000 + XuiHtmlControl_H2P + + + + + HInventory + 372.000000 + 28.000000 + 648.000000,316.000000,0.000000 + LabelContainerSceneLeft + + + + + HText + 392.000000 + 32.000000 + 640.000000,220.000000,0.000000 + LabelContainerSceneCentre + + + + + XuiImageFireworks + 428.000000 + 450.000000 + 636.000000,176.000000,0.000000 + ImHowToPlayFireworks + + + + + XuiHtmlControlFireworks + 380.000000 + 400.000000 + 214.000000,196.000000,0.000000 + XuiHtmlControl_H2P + + + + + FiInventory + 372.000000 + 28.000000 + 665.500061,382.000000,0.000000 + LabelContainerSceneLeft + + + + + FiText + 260.000000 + 32.000000 + 665.500061,194.000000,0.000000 + LabelContainerSceneLeft + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay_480.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay_480.xui index 4876fb13..a8b2fe26 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay_480.xui @@ -1,831 +1,830 @@ - -640.000000 -480.000000 - - - -SceneHowToPlay -640.000000 -480.000000 -[LayerFolders]0|-Fireworks|4|+|0|-Hopper|4|+|0|-Dropper|4|+|0|-Beacon|4|+|0|-Horses|2|+|0|-Enderchest|2|+|0|-Trading|6|+|0|-Anvil|5|+|0|+Enchantment|4|+|0|+Brewing|4|+|0|-FarmingAnimals|2|+|0|+Breeding|2|+|1|+Creative Mode|3|+|1|+What's New|1|+|0|+Multiplayer|1|+|0|+SocialMedia|1|+|0|+CraftingTable|5|+|0|+Crafting|5|+|0|-Furnace|6|+|0|+Large Chest|4|+|0|+SmallChest|4|+|0|+Inventory|3|+|0|+Basics|1|+|0|+HUD|2|+|0|+Dispenser|4|+|0|+Nether Portal|2|+|0|-TheEnd|2|+|0[/LayerFolders] -CScene_HowToPlay -XuiBlankScene -XuiSliderVolume - - - -XuiHtmlControlTheEnd -270.000000 -240.000000 -52.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageTheEnd -248.000000 -146.000000 -346.000000,172.000000,0.000000 -ImHowToPlayTheEndSmall - - - - -XuiHtmlControlNetherPortal -270.000000 -240.000000 -52.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageNetherPortal -248.000000 -146.000000 -346.000000,172.000000,0.000000 -ImHowToPlayNetherPortalSmall - - - - -XuiHtmlControlDispenser -270.000000 -240.000000 -52.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageDispenser -262.000000 -280.000000 -336.000000,126.000000,0.000000 -ImHowToPlayDispenserSmall - - - - -DInventory -230.000000 -17.000000 -355.000000,258.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -DText -160.000000 -23.000000 -390.000000,140.000000,0.000000 -2 -LabelContainerSceneCentreSmall - - - - -XuiHtmlControlHUD -520.000000 -152.000000 -60.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageHUD -364.000000 -84.000000 -138.000000,322.000000,0.000000 -ImHowToPlayHUDSmall - - - - -XuiHtmlControlBasics -526.000000 -240.000000 -57.000000,132.000046,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiHtmlControlInventory -270.000000 -240.000000 -52.000046,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageInventory -262.000000 -280.000000 -336.000000,126.000000,0.000000 -ImHowToPlayInventorySmall - - - - -IInventory -230.000000 -18.000000 -353.000000,258.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiHtmlControlChest -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageChest -258.000000 -260.000000 -340.000000,134.000000,0.000000 -ImHowToPlayChestSmall - - - - -SCChest -230.000000 -23.000000 -352.000000,140.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -SCInventory -230.000000 -19.000000 -352.000000,244.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiHtmlControlLargeChest -280.000000 -240.000000 -60.000038,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageLargeChest -213.000000 -270.000000 -364.000000,130.000000,0.000000 -ImHowToPlayLargeChestSmall - - - - -LCChest -189.000000 -17.000000 -377.000000,138.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -LCInventory -189.000000 -14.000000 -377.000000,282.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiHtmlControlFurnace -264.000000 -240.000000 -56.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageFurnace -262.000000 -290.000000 -336.000000,120.000000,0.000000 -ImHowToPlayFurnaceSmall - - - - -FChest -218.000000 -21.000000 -352.000000,130.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FIngredient -114.000000 -18.000000 -344.000000,164.000000,0.000000 -LabelContainerSceneRightSmall - - - - -FInventory -218.000000 -18.000000 -352.000000,262.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FFuel -114.000000 -18.000000 -344.000000,234.000000,0.000000 -LabelContainerSceneRightSmall - - - - -XuiHtmlControlCrafting -270.000000 -240.000000 -52.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageCrafting -252.000000 -170.000000 -342.000000,176.000000,0.000000 -ImHowToPlayCraftingSmall - - - - -CInventory -128.000000 -14.000000 -458.000000,258.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CGroup -200.000000 -14.000000 -368.000000,208.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CItem -100.000000 -14.000000 -350.000000,258.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlCraftingTable -270.000000 -240.000000 -57.000000,132.000031,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageCraftingTable -245.000000 -142.000000 -342.000000,182.000000,0.000000 -ImHowToPlayCraftingTableSmall - - - - -CTInventory3x3 -132.000000 -14.000000 -448.000000,250.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CTGroup -160.000000 -14.000000 -384.000000,208.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CTItem -98.000000 -14.000000 -346.000000,250.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlSocialMedia -520.000000 -244.000000 -60.000000,138.000031,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlMultiplayer -520.000000 -244.000000 -60.000000,138.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlWhatsNew -520.000000 -244.000000 -60.000000,138.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBanList -520.000000 -244.000000 -60.000000,138.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiImageCreative -258.000000 -194.000000 -340.000000,177.000000,0.000000 -ImHowToPlayCreativeSmall - - - - -XuiHtmlControlCreative -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -CIGroup -160.000000 -14.000000 -390.000000,208.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlHostOptions -520.000000 -244.000000 -60.000000,138.000046,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBreeding -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBreeding -262.000000 -280.000000 -340.000000,126.000000,0.000000 -ImHowToPlayBreedingSmall - - - - -XuiHtmlControlFarmingAnimals -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageFarmingAnimals -262.000000 -280.000000 -340.000000,126.000000,0.000000 -ImHowToPlayFarmingAnimalsSmall - - - - -XuiHtmlControlBrewing -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBrewing -260.000000 -290.000000 -340.000000,122.000000,0.000000 -ImHowToPlayBrewingSmall - - - - -BInventory -210.000000 -18.000000 -354.000000,262.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -BBrew -210.000000 -18.000000 -365.000000,131.000000,0.000000 -8 -LabelContainerSceneCentreSmall - - - - -XuiImageEnchantment -262.000000 -280.000000 -340.000000,122.000000,0.000000 -ImHowToPlayEnchantmentSmall - - - - -XuiHtmlControlEnchantment -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -EInventory -210.000000 -18.000000 -356.000000,254.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -EEnchant -210.000000 -18.000000 -356.000000,130.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -XuiImageAnvil -260.000000 -290.000000 -340.000000,122.000000,0.000000 -ImHowToPlayAnvilSmall - - - - -XuiHtmlControlAnvil -264.000000 -240.000000 -56.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -ACost -156.000000 -18.000000 -430.000000,238.000000,0.000000 -8 -XuiLabelAffordableSmall - - - - -AInventory -156.370361 -18.000000 -353.037048,264.814819,0.000000 -8 -LabelContainerSceneCentreSmall - - - - -ARepairAndName -156.370361 -18.000000 -415.851868,130.000000,0.000000 -8 -LabelContainerSceneCentreSmall - - - - -XuiHtmlControlTrading -264.000000 -240.000000 -56.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageTrading -260.000000 -174.000000 -342.000000,125.000000,0.000000 -ImHowToPlayTradingSmall - - - - -TInventory -142.000000 -11.000000 -447.000000,207.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -TOffer1Label -56.000000 -11.000000 -381.000000,240.000000,0.000000 -8 -XuiLabelDarkLeftWrapSmall8 - - - - -TNeededForTrade -88.000000 -24.000000 -349.000000,211.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -TVillagerOffers -260.000000 -18.000000 -342.000000,140.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -XuiHtmlControlEnderchest -270.000000 -240.000000 -54.000000,132.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageEnderchest -262.000000 -280.000000 -340.000000,126.000000,0.000000 -ImHowToPlayEnderchestSmall - - - - -XuiHtmlControlHorses -282.000000 -239.000000 -48.000114,134.000061,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageHorses -248.000000 -146.000000 -346.000092,178.000061,0.000000 -ImHowToPlayHorsesSmall - - - - -XuiHtmlControlBeacon -204.000000 -240.000000 -49.999985,136.000061,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBeacon -336.000000 -290.000000 -270.000000,124.000053,0.000000 -ImHowToPlayBeaconSmall - - - - -BeSecond -144.000000 -34.000000 -444.000000,138.000061,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -BeFirst -144.000000 -34.000000 -286.000000,138.000061,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -XuiImageDropper -262.000000 -280.000000 -340.000000,132.000061,0.000000 -ImHowToPlayDispenserSmall - - - - -XuiHtmlControlDropper -282.000000 -240.000000 -42.000000,138.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -DrInventory -230.000000 -24.000000 -354.000000,262.000061,0.000000 -LabelContainerSceneLeftSmall - - - - -DrText -160.000000 -24.000000 -422.000000,142.000061,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiImageHopper -260.000000 -220.000000 -340.000000,162.000000,0.000000 -ImHowToPlayHopperSmall - - - - -XuiHtmlControlHopper -282.000000 -240.000000 -42.000000,140.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -HInventory -230.000000 -24.000000 -354.000000,236.000061,0.000000 -LabelContainerSceneLeftSmall - - - - -HText -230.000000 -24.000000 -356.000000,170.000061,0.000000 -LabelContainerSceneCentreSmall - - - - -XuiImageFireworks -260.000000 -280.000000 -344.000000,134.000061,0.000000 -ImHowToPlayFireworksSmall - - - - -XuiHtmlControlFireworks -282.000000 -240.000000 -46.000000,140.000000,0.000000 -XuiHtmlControl_H2P_Small -false - - - - -FiInventory -230.000000 -28.000000 -358.000000,266.000061,0.000000 -LabelContainerSceneLeftSmall - - - - -FiText -230.000000 -24.000000 -358.000000,144.000061,0.000000 -LabelContainerSceneLeftSmall - - - + + 640.000000 + 480.000000 + + + + SceneHowToPlay + 640.000000 + 480.000000 + CScene_HowToPlay + XuiBlankScene + XuiSliderVolume + + + + XuiHtmlControlTheEnd + 270.000000 + 240.000000 + 52.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageTheEnd + 248.000000 + 146.000000 + 346.000000,172.000000,0.000000 + ImHowToPlayTheEndSmall + + + + + XuiHtmlControlNetherPortal + 270.000000 + 240.000000 + 52.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageNetherPortal + 248.000000 + 146.000000 + 346.000000,172.000000,0.000000 + ImHowToPlayNetherPortalSmall + + + + + XuiHtmlControlDispenser + 270.000000 + 240.000000 + 52.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageDispenser + 262.000000 + 280.000000 + 336.000000,126.000000,0.000000 + ImHowToPlayDispenserSmall + + + + + DInventory + 230.000000 + 17.000000 + 355.000000,258.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + DText + 160.000000 + 23.000000 + 390.000000,140.000000,0.000000 + 2 + LabelContainerSceneCentreSmall + + + + + XuiHtmlControlHUD + 520.000000 + 152.000000 + 60.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageHUD + 364.000000 + 84.000000 + 138.000000,322.000000,0.000000 + ImHowToPlayHUDSmall + + + + + XuiHtmlControlBasics + 526.000000 + 240.000000 + 57.000000,132.000046,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiHtmlControlInventory + 270.000000 + 240.000000 + 52.000046,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageInventory + 262.000000 + 280.000000 + 336.000000,126.000000,0.000000 + ImHowToPlayInventorySmall + + + + + IInventory + 230.000000 + 18.000000 + 353.000000,258.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiHtmlControlChest + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageChest + 258.000000 + 260.000000 + 340.000000,134.000000,0.000000 + ImHowToPlayChestSmall + + + + + SCChest + 230.000000 + 23.000000 + 352.000000,140.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + SCInventory + 230.000000 + 19.000000 + 352.000000,244.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiHtmlControlLargeChest + 280.000000 + 240.000000 + 60.000038,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageLargeChest + 213.000000 + 270.000000 + 364.000000,130.000000,0.000000 + ImHowToPlayLargeChestSmall + + + + + LCChest + 189.000000 + 17.000000 + 377.000000,138.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + LCInventory + 189.000000 + 14.000000 + 377.000000,282.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiHtmlControlFurnace + 264.000000 + 240.000000 + 56.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageFurnace + 262.000000 + 290.000000 + 336.000000,120.000000,0.000000 + ImHowToPlayFurnaceSmall + + + + + FChest + 218.000000 + 21.000000 + 352.000000,130.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FIngredient + 114.000000 + 18.000000 + 344.000000,164.000000,0.000000 + LabelContainerSceneRightSmall + + + + + FInventory + 218.000000 + 18.000000 + 352.000000,262.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FFuel + 114.000000 + 18.000000 + 344.000000,234.000000,0.000000 + LabelContainerSceneRightSmall + + + + + XuiHtmlControlCrafting + 270.000000 + 240.000000 + 52.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageCrafting + 252.000000 + 170.000000 + 342.000000,176.000000,0.000000 + ImHowToPlayCraftingSmall + + + + + CInventory + 128.000000 + 14.000000 + 458.000000,258.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CGroup + 200.000000 + 14.000000 + 368.000000,208.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CItem + 100.000000 + 14.000000 + 350.000000,258.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlCraftingTable + 270.000000 + 240.000000 + 57.000000,132.000031,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageCraftingTable + 245.000000 + 142.000000 + 342.000000,182.000000,0.000000 + ImHowToPlayCraftingTableSmall + + + + + CTInventory3x3 + 132.000000 + 14.000000 + 448.000000,250.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CTGroup + 160.000000 + 14.000000 + 384.000000,208.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CTItem + 98.000000 + 14.000000 + 346.000000,250.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlSocialMedia + 520.000000 + 244.000000 + 60.000000,138.000031,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlMultiplayer + 520.000000 + 244.000000 + 60.000000,138.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlWhatsNew + 520.000000 + 244.000000 + 60.000000,138.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBanList + 520.000000 + 244.000000 + 60.000000,138.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiImageCreative + 258.000000 + 194.000000 + 340.000000,177.000000,0.000000 + ImHowToPlayCreativeSmall + + + + + XuiHtmlControlCreative + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + CIGroup + 160.000000 + 14.000000 + 390.000000,208.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlHostOptions + 520.000000 + 244.000000 + 60.000000,138.000046,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBreeding + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBreeding + 262.000000 + 280.000000 + 340.000000,126.000000,0.000000 + ImHowToPlayBreedingSmall + + + + + XuiHtmlControlFarmingAnimals + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageFarmingAnimals + 262.000000 + 280.000000 + 340.000000,126.000000,0.000000 + ImHowToPlayFarmingAnimalsSmall + + + + + XuiHtmlControlBrewing + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBrewing + 260.000000 + 290.000000 + 340.000000,122.000000,0.000000 + ImHowToPlayBrewingSmall + + + + + BInventory + 210.000000 + 18.000000 + 354.000000,262.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + BBrew + 210.000000 + 18.000000 + 365.000000,131.000000,0.000000 + 8 + LabelContainerSceneCentreSmall + + + + + XuiImageEnchantment + 262.000000 + 280.000000 + 340.000000,122.000000,0.000000 + ImHowToPlayEnchantmentSmall + + + + + XuiHtmlControlEnchantment + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + EInventory + 210.000000 + 18.000000 + 356.000000,254.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + EEnchant + 210.000000 + 18.000000 + 356.000000,130.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + XuiImageAnvil + 260.000000 + 290.000000 + 340.000000,122.000000,0.000000 + ImHowToPlayAnvilSmall + + + + + XuiHtmlControlAnvil + 264.000000 + 240.000000 + 56.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + ACost + 156.000000 + 18.000000 + 430.000000,238.000000,0.000000 + 8 + XuiLabelAffordableSmall + + + + + AInventory + 156.370361 + 18.000000 + 353.037048,264.814819,0.000000 + 8 + LabelContainerSceneCentreSmall + + + + + ARepairAndName + 156.370361 + 18.000000 + 415.851868,130.000000,0.000000 + 8 + LabelContainerSceneCentreSmall + + + + + XuiHtmlControlTrading + 264.000000 + 240.000000 + 56.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageTrading + 260.000000 + 174.000000 + 342.000000,125.000000,0.000000 + ImHowToPlayTradingSmall + + + + + TInventory + 142.000000 + 11.000000 + 447.000000,207.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + TOffer1Label + 56.000000 + 11.000000 + 381.000000,240.000000,0.000000 + 8 + XuiLabelDarkLeftWrapSmall8 + + + + + TNeededForTrade + 88.000000 + 24.000000 + 349.000000,211.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + TVillagerOffers + 260.000000 + 18.000000 + 342.000000,140.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + XuiHtmlControlEnderchest + 270.000000 + 240.000000 + 54.000000,132.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageEnderchest + 262.000000 + 280.000000 + 340.000000,126.000000,0.000000 + ImHowToPlayEnderchestSmall + + + + + XuiHtmlControlHorses + 282.000000 + 239.000000 + 48.000114,134.000061,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageHorses + 248.000000 + 146.000000 + 346.000092,178.000061,0.000000 + ImHowToPlayHorsesSmall + + + + + XuiHtmlControlBeacon + 204.000000 + 240.000000 + 49.999985,136.000061,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBeacon + 336.000000 + 290.000000 + 270.000000,124.000053,0.000000 + ImHowToPlayBeaconSmall + + + + + BeSecond + 144.000000 + 34.000000 + 444.000000,138.000061,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + BeFirst + 144.000000 + 34.000000 + 286.000000,138.000061,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + XuiImageDropper + 262.000000 + 280.000000 + 340.000000,132.000061,0.000000 + ImHowToPlayDispenserSmall + + + + + XuiHtmlControlDropper + 282.000000 + 240.000000 + 42.000000,138.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + DrInventory + 230.000000 + 24.000000 + 354.000000,262.000061,0.000000 + LabelContainerSceneLeftSmall + + + + + DrText + 160.000000 + 24.000000 + 422.000000,142.000061,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiImageHopper + 260.000000 + 220.000000 + 340.000000,162.000000,0.000000 + ImHowToPlayHopperSmall + + + + + XuiHtmlControlHopper + 282.000000 + 240.000000 + 42.000000,140.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + HInventory + 230.000000 + 24.000000 + 354.000000,236.000061,0.000000 + LabelContainerSceneLeftSmall + + + + + HText + 230.000000 + 24.000000 + 356.000000,170.000061,0.000000 + LabelContainerSceneCentreSmall + + + + + XuiImageFireworks + 260.000000 + 280.000000 + 344.000000,134.000061,0.000000 + ImHowToPlayFireworksSmall + + + + + XuiHtmlControlFireworks + 282.000000 + 240.000000 + 46.000000,140.000000,0.000000 + XuiHtmlControl_H2P_Small + false + + + + + FiInventory + 230.000000 + 28.000000 + 358.000000,266.000061,0.000000 + LabelContainerSceneLeftSmall + + + + + FiText + 230.000000 + 24.000000 + 358.000000,144.000061,0.000000 + LabelContainerSceneLeftSmall + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu.xui index 5b195a9a..f12b6c12 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu.xui @@ -1,115 +1,105 @@ - -1280.000000 -720.000000 - - - -SceneHowToPlayMenu -1280.000000 -720.000000 -true -CScene_HowToPlayMenu -XuiMenuScene -XuiButton1 - - - -HowToListButtons -480.000000 -396.000000 -400.000031,200.000000,0.000000 -CXuiCtrlPassThroughList -XuiHowToList -JoinGame - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -true -MenuTitleLogo - - - + + 1280.000000 + 720.000000 + + + + SceneHowToPlayMenu + 1280.000000 + 720.000000 + true + CScene_HowToPlayMenu + XuiMenuScene + XuiButton1 + + + + HowToListButtons + 480.000000 + 396.000000 + 400.000031,200.000000,0.000000 + CXuiCtrlPassThroughList + XuiHowToList + JoinGame + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_480.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_480.xui index d46f0c0a..5c312d6f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_480.xui @@ -1,63 +1,63 @@ - -640.000000 -480.000000 - - - -SceneHowToPlayMenu -640.000000 -480.000000 -true -CScene_HowToPlayMenu -XuiMenuScene -XuiButton1 - - - -HowToListButtons -480.000000 -268.000000 -80.000000,120.000000,0.000000 -CXuiCtrlPassThroughList -XuiHowToList480 -JoinGame - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -300.000000 -36.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuLButton_Thin -0.000000,10.000000,0.000000 - - - - -control_ListItem -300.000000 -36.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuLButton_Thin -0.000000,10.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + SceneHowToPlayMenu + 640.000000 + 480.000000 + true + CScene_HowToPlayMenu + XuiMenuScene + XuiButton1 + + + + HowToListButtons + 480.000000 + 268.000000 + 80.000000,120.000000,0.000000 + CXuiCtrlPassThroughList + XuiHowToList480 + JoinGame + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 300.000000 + 36.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuLButton_Thin + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 300.000000 + 36.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuLButton_Thin + 0.000000,10.000000,0.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_small.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_small.xui index 0ac56c29..fa516e2f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay_menu_small.xui @@ -1,50 +1,50 @@ - -640.000000 -360.000000 - - - -SceneHowToPlayMenu -640.000000 -360.000000 -true -CScene_HowToPlayMenu -XuiMenuScene -XuiButton1 - - - -HowToListButtons -480.000000 -243.000015 -80.000038,35.000000,0.000000 -CXuiCtrlPassThroughList -XuiHowToList -JoinGame - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -450.000000 -50.000000 -15.000000,15.000000,0.000000 -5 -false -XuiMainMenuButton_List - - - - + + 640.000000 + 360.000000 + + + + SceneHowToPlayMenu + 640.000000 + 360.000000 + true + CScene_HowToPlayMenu + XuiMenuScene + XuiButton1 + + + + HowToListButtons + 480.000000 + 243.000015 + 80.000038,35.000000,0.000000 + CXuiCtrlPassThroughList + XuiHowToList + JoinGame + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 450.000000 + 50.000000 + 15.000000,15.000000,0.000000 + 5 + false + XuiMainMenuButton_List + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_howtoplay_small.xui b/Minecraft.Client/Common/Media/xuiscene_howtoplay_small.xui index d9d1c7f5..aed6804c 100644 --- a/Minecraft.Client/Common/Media/xuiscene_howtoplay_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_howtoplay_small.xui @@ -1,832 +1,831 @@ - -640.000000 -360.000000 - - - -SceneHowToPlay -640.000000 -360.000000 -[LayerFolders]0|-Fireworks|4|+|0|-Hopper|4|+|0|-Dropper|4|+|0|-Beacon|4|+|0|-Horses|2|+|0|-Enderchest|2|+|0|-Trading|6|+|0|-Anvil|5|+|0|-Enchantment|4|+|0|+Brewing|4|+|0|+FarmingAnimals|2|+|0|-Breeding|2|+|1|+Creative Mode|3|+|4|+CraftingTable|5|+|0|+Crafting|5|+|0|-Furnace|6|+|0|+Large Chest|4|+|0|+SmallChest|4|+|0|+Inventory|3|+|0|+Basics|1|+|0|+HUD|2|+|0|+Dispenser|4|+|0|-Nether Portal|2|+|0|+TheEnd|2|+|0[/LayerFolders] -CScene_HowToPlay -XuiBlankScene -XuiSliderVolume - - - -XuiHtmlControlTheEnd -280.000000 -240.000000 -82.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageTheEnd -248.000000 -146.000000 -382.000000,54.000000,0.000000 -ImHowToPlayTheEndSmall - - - - -XuiHtmlControlNetherPortal -280.000000 -240.000000 -82.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageNetherPortal -248.000000 -146.000000 -382.000000,54.000000,0.000000 -ImHowToPlayNetherPortalSmall - - - - -XuiHtmlControlDispenser -280.000000 -240.000000 -76.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageDispenser -262.000000 -280.000000 -371.000000,3.000000,0.000000 -ImHowToPlayDispenserSmall - - - - -DInventory -230.000000 -17.000000 -388.000000,137.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -DText -160.000000 -23.000000 -422.000000,18.000000,0.000000 -2 -LabelContainerSceneCentreSmall - - - - -XuiImageHUD -364.000000 -84.000000 -157.000000,204.000000,0.000000 -ImHowToPlayHUDSmall - - - - -XuiHtmlControlHUD -540.000000 -152.000000 -82.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiHtmlControlBasics -540.000000 -240.000000 -82.000000,12.000046,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageInventory -262.000000 -280.000000 -372.000000,6.000000,0.000000 -ImHowToPlayInventorySmall - - - - -XuiHtmlControlInventory -280.000000 -240.000000 -76.000046,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -IInventory -214.000000 -18.000000 -389.000000,138.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiImageChest -258.000000 -260.000000 -375.000000,15.000000,0.000000 -ImHowToPlayChestSmall - - - - -XuiHtmlControlChest -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -SCChest -230.000000 -23.000000 -388.000000,23.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -SCInventory -230.000000 -19.000000 -388.000000,128.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiImageLargeChest -213.000000 -270.000000 -398.000000,6.000000,0.000000 -ImHowToPlayLargeChestSmall - - - - -XuiHtmlControlLargeChest -280.000000 -240.000000 -97.000038,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -LCChest -189.000000 -17.000000 -415.000000,12.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -LCInventory -189.000000 -14.000000 -415.000000,158.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiHtmlControlFurnace -280.000000 -240.000000 -75.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageFurnace -262.000000 -290.000000 -371.000000,0.000000,0.000000 -ImHowToPlayFurnaceSmall - - - - -FChest -219.000000 -21.000000 -385.000000,11.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -FIngredient -114.000000 -18.000000 -381.000000,44.000000,0.000000 -LabelContainerSceneRightSmall - - - - -FInventory -219.000000 -18.000000 -385.000000,143.000000,0.000000 -12 -LabelContainerSceneLeftSmall - - - - -FFuel -114.000000 -18.000000 -381.000000,113.000000,0.000000 -LabelContainerSceneRightSmall - - - - -XuiHtmlControlCrafting -280.000000 -240.000000 -82.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageCrafting -252.000000 -170.000000 -376.000000,56.000000,0.000000 -ImHowToPlayCraftingSmall - - - - -CInventory -128.000000 -14.000000 -493.000000,140.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CGroup -200.000000 -18.000000 -403.000000,90.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CItem -101.000000 -14.000000 -385.000000,140.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlCraftingTable -280.000000 -240.000000 -82.000000,12.000031,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageCraftingTable -245.000000 -142.000000 -376.000000,60.000000,0.000000 -ImHowToPlayCraftingTableSmall - - - - -CTInventory3x3 -128.000000 -14.000000 -488.000000,128.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CTGroup -160.000000 -14.000000 -421.222229,86.777779,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -CTItem -95.000000 -14.000000 -386.000000,128.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlMultiplayer -520.000000 -244.000000 -85.000008,24.000038,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlSocialMedia -520.000000 -244.000000 -87.000008,23.000023,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlWhatsNew -520.000000 -244.000000 -87.000008,23.000023,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBanList -520.000000 -244.000000 -87.000008,23.000023,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlCreative -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageCreative -258.000000 -194.000000 -375.000000,15.000000,0.000000 -ImHowToPlayCreativeSmall - - - - -CIGroup -160.000000 -14.000000 -425.000000,46.000000,0.000000 -XuiLabelDarkCentredHowtoSmall - - - - -XuiHtmlControlHostOptions -520.000000 -244.000000 -87.000008,23.000023,0.000000 -XuiHtmlControl_H2P - - - - -XuiHtmlControlBreeding -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBreeding -262.000000 -280.000000 -375.000000,6.000000,0.000000 -ImHowToPlayBreedingSmall - - - - -XuiHtmlControlFarmingAnimals -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageFarmingAnimals -262.000000 -280.000000 -375.000000,6.000000,0.000000 -ImHowToPlayFarmingAnimalsSmall - - - - -XuiHtmlControlBrewing -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBrewing -260.000000 -290.000000 -375.000000,2.000000,0.000000 -ImHowToPlayBrewingSmall - - - - -BBrew -210.000000 -18.000000 -399.000000,12.000000,0.000000 -8 -LabelContainerSceneCentreSmall - - - - -BInventory -210.000000 -18.000000 -388.000000,142.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -XuiImageEnchantment -262.000000 -280.000000 -375.000000,6.000000,0.000000 -ImHowToPlayEnchantmentSmall - - - - -XuiHtmlControlEnchantment -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -EInventory -210.000000 -18.000000 -388.000000,138.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -EEnchant -210.000000 -18.000000 -388.000000,14.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -XuiHtmlControlAnvil -280.000000 -240.000000 -75.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageAnvil -260.000000 -290.000000 -372.000000,6.000000,0.000000 -ImHowToPlayAnvilSmall - - - - -ACost -156.000000 -18.000000 -461.000000,120.999992,0.000000 -8 -XuiLabelAffordableSmall - - - - -AInventory -156.000000 -18.000000 -384.000000,148.000000,0.000000 -8 -LabelContainerSceneLeftSmall - - - - -ARepairAndName -156.000000 -18.000000 -448.000000,18.999992,0.000000 -8 -LabelContainerSceneCentreSmall - - - - -XuiHtmlControlTrading -280.000000 -240.000000 -75.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageTrading -260.000000 -174.000000 -372.000000,56.000000,0.000000 -ImHowToPlayTradingSmall - - - - -TVillagerOffers -260.000000 -18.000000 -372.000000,71.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -TNeededForTrade -88.000000 -24.000000 -379.000000,138.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -TOffer1Label -56.000000 -11.000000 -411.000000,171.000000,0.000000 -8 -XuiLabelDarkLeftWrapSmall8 - - - - -TInventory -142.000000 -11.000000 -477.000000,138.000000,0.000000 -8 -XuiLabelDarkCentred8 - - - - -XuiImageEnderchest -262.000000 -280.000000 -375.000000,6.000000,0.000000 -ImHowToPlayEnderchestSmall - - - - -XuiHtmlControlEnderchest -280.000000 -240.000000 -80.000000,12.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiHtmlControlHorses -282.000000 -239.000000 -74.000114,13.000046,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageHorses -248.000000 -146.000000 -372.000092,58.000046,0.000000 -ImHowToPlayHorsesSmall - - - - -XuiHtmlControlBeacon -204.000000 -240.000000 -76.999985,14.000046,0.000000 -XuiHtmlControl_H2P_Small - - - - -XuiImageBeacon -336.000000 -290.000000 -296.000000,2.000048,0.000000 -ImHowToPlayBeaconSmall - - - - -BeSecond -144.000000 -34.000000 -470.000000,16.000046,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -BeFirst -144.000000 -34.000000 -312.000000,16.000046,0.000000 -XuiLabelDarkCentredWrapSmall - - - - -XuiImageDropper -262.000000 -280.000000 -372.000000,8.000046,0.000000 -ImHowToPlayDispenserSmall - - - - -XuiHtmlControlDropper -282.000000 -240.000000 -74.000000,14.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -DrInventory -230.000000 -24.000000 -386.000000,139.000046,0.000000 -LabelContainerSceneLeftSmall - - - - -DrText -160.000000 -24.000000 -454.000000,18.000048,0.000000 -LabelContainerSceneLeftSmall - - - - -XuiImageHopper -260.000000 -220.000000 -372.000000,36.000000,0.000000 -ImHowToPlayHopperSmall - - - - -XuiHtmlControlHopper -282.000000 -240.000000 -74.000000,14.000000,0.000000 -XuiHtmlControl_H2P_Small - - - - -HInventory -230.000000 -24.000000 -386.000000,110.000046,0.000000 -LabelContainerSceneLeftSmall - - - - -HText -230.000000 -24.000000 -387.000000,44.000046,0.000000 -LabelContainerSceneCentreSmall - - - - -XuiImageFireworks -260.000000 -280.000000 -372.000000,8.000050,0.000000 -ImHowToPlayFireworksSmall - - - - -XuiHtmlControlFireworks -282.000000 -240.000000 -74.000000,14.000000,0.000000 -XuiHtmlControl_H2P_Small -false - - - - -FiInventory -230.000000 -28.000000 -386.000000,140.000046,0.000000 -LabelContainerSceneLeftSmall - - - - -FiText -230.000000 -24.000000 -386.000000,18.000046,0.000000 -LabelContainerSceneLeftSmall - - - + + 640.000000 + 360.000000 + + + + SceneHowToPlay + 640.000000 + 360.000000 + CScene_HowToPlay + XuiBlankScene + XuiSliderVolume + + + + XuiHtmlControlTheEnd + 280.000000 + 240.000000 + 82.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageTheEnd + 248.000000 + 146.000000 + 382.000000,54.000000,0.000000 + ImHowToPlayTheEndSmall + + + + + XuiHtmlControlNetherPortal + 280.000000 + 240.000000 + 82.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageNetherPortal + 248.000000 + 146.000000 + 382.000000,54.000000,0.000000 + ImHowToPlayNetherPortalSmall + + + + + XuiHtmlControlDispenser + 280.000000 + 240.000000 + 76.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageDispenser + 262.000000 + 280.000000 + 371.000000,3.000000,0.000000 + ImHowToPlayDispenserSmall + + + + + DInventory + 230.000000 + 17.000000 + 388.000000,137.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + DText + 160.000000 + 23.000000 + 422.000000,18.000000,0.000000 + 2 + LabelContainerSceneCentreSmall + + + + + XuiImageHUD + 364.000000 + 84.000000 + 157.000000,204.000000,0.000000 + ImHowToPlayHUDSmall + + + + + XuiHtmlControlHUD + 540.000000 + 152.000000 + 82.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiHtmlControlBasics + 540.000000 + 240.000000 + 82.000000,12.000046,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageInventory + 262.000000 + 280.000000 + 372.000000,6.000000,0.000000 + ImHowToPlayInventorySmall + + + + + XuiHtmlControlInventory + 280.000000 + 240.000000 + 76.000046,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + IInventory + 214.000000 + 18.000000 + 389.000000,138.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiImageChest + 258.000000 + 260.000000 + 375.000000,15.000000,0.000000 + ImHowToPlayChestSmall + + + + + XuiHtmlControlChest + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + SCChest + 230.000000 + 23.000000 + 388.000000,23.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + SCInventory + 230.000000 + 19.000000 + 388.000000,128.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiImageLargeChest + 213.000000 + 270.000000 + 398.000000,6.000000,0.000000 + ImHowToPlayLargeChestSmall + + + + + XuiHtmlControlLargeChest + 280.000000 + 240.000000 + 97.000038,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + LCChest + 189.000000 + 17.000000 + 415.000000,12.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + LCInventory + 189.000000 + 14.000000 + 415.000000,158.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiHtmlControlFurnace + 280.000000 + 240.000000 + 75.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageFurnace + 262.000000 + 290.000000 + 371.000000,0.000000,0.000000 + ImHowToPlayFurnaceSmall + + + + + FChest + 219.000000 + 21.000000 + 385.000000,11.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + FIngredient + 114.000000 + 18.000000 + 381.000000,44.000000,0.000000 + LabelContainerSceneRightSmall + + + + + FInventory + 219.000000 + 18.000000 + 385.000000,143.000000,0.000000 + 12 + LabelContainerSceneLeftSmall + + + + + FFuel + 114.000000 + 18.000000 + 381.000000,113.000000,0.000000 + LabelContainerSceneRightSmall + + + + + XuiHtmlControlCrafting + 280.000000 + 240.000000 + 82.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageCrafting + 252.000000 + 170.000000 + 376.000000,56.000000,0.000000 + ImHowToPlayCraftingSmall + + + + + CInventory + 128.000000 + 14.000000 + 493.000000,140.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CGroup + 200.000000 + 18.000000 + 403.000000,90.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CItem + 101.000000 + 14.000000 + 385.000000,140.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlCraftingTable + 280.000000 + 240.000000 + 82.000000,12.000031,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageCraftingTable + 245.000000 + 142.000000 + 376.000000,60.000000,0.000000 + ImHowToPlayCraftingTableSmall + + + + + CTInventory3x3 + 128.000000 + 14.000000 + 488.000000,128.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CTGroup + 160.000000 + 14.000000 + 421.222229,86.777779,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + CTItem + 95.000000 + 14.000000 + 386.000000,128.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlMultiplayer + 520.000000 + 244.000000 + 85.000008,24.000038,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlSocialMedia + 520.000000 + 244.000000 + 87.000008,23.000023,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlWhatsNew + 520.000000 + 244.000000 + 87.000008,23.000023,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBanList + 520.000000 + 244.000000 + 87.000008,23.000023,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlCreative + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageCreative + 258.000000 + 194.000000 + 375.000000,15.000000,0.000000 + ImHowToPlayCreativeSmall + + + + + CIGroup + 160.000000 + 14.000000 + 425.000000,46.000000,0.000000 + XuiLabelDarkCentredHowtoSmall + + + + + XuiHtmlControlHostOptions + 520.000000 + 244.000000 + 87.000008,23.000023,0.000000 + XuiHtmlControl_H2P + + + + + XuiHtmlControlBreeding + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBreeding + 262.000000 + 280.000000 + 375.000000,6.000000,0.000000 + ImHowToPlayBreedingSmall + + + + + XuiHtmlControlFarmingAnimals + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageFarmingAnimals + 262.000000 + 280.000000 + 375.000000,6.000000,0.000000 + ImHowToPlayFarmingAnimalsSmall + + + + + XuiHtmlControlBrewing + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBrewing + 260.000000 + 290.000000 + 375.000000,2.000000,0.000000 + ImHowToPlayBrewingSmall + + + + + BBrew + 210.000000 + 18.000000 + 399.000000,12.000000,0.000000 + 8 + LabelContainerSceneCentreSmall + + + + + BInventory + 210.000000 + 18.000000 + 388.000000,142.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + XuiImageEnchantment + 262.000000 + 280.000000 + 375.000000,6.000000,0.000000 + ImHowToPlayEnchantmentSmall + + + + + XuiHtmlControlEnchantment + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + EInventory + 210.000000 + 18.000000 + 388.000000,138.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + EEnchant + 210.000000 + 18.000000 + 388.000000,14.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + XuiHtmlControlAnvil + 280.000000 + 240.000000 + 75.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageAnvil + 260.000000 + 290.000000 + 372.000000,6.000000,0.000000 + ImHowToPlayAnvilSmall + + + + + ACost + 156.000000 + 18.000000 + 461.000000,120.999992,0.000000 + 8 + XuiLabelAffordableSmall + + + + + AInventory + 156.000000 + 18.000000 + 384.000000,148.000000,0.000000 + 8 + LabelContainerSceneLeftSmall + + + + + ARepairAndName + 156.000000 + 18.000000 + 448.000000,18.999992,0.000000 + 8 + LabelContainerSceneCentreSmall + + + + + XuiHtmlControlTrading + 280.000000 + 240.000000 + 75.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageTrading + 260.000000 + 174.000000 + 372.000000,56.000000,0.000000 + ImHowToPlayTradingSmall + + + + + TVillagerOffers + 260.000000 + 18.000000 + 372.000000,71.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + TNeededForTrade + 88.000000 + 24.000000 + 379.000000,138.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + TOffer1Label + 56.000000 + 11.000000 + 411.000000,171.000000,0.000000 + 8 + XuiLabelDarkLeftWrapSmall8 + + + + + TInventory + 142.000000 + 11.000000 + 477.000000,138.000000,0.000000 + 8 + XuiLabelDarkCentred8 + + + + + XuiImageEnderchest + 262.000000 + 280.000000 + 375.000000,6.000000,0.000000 + ImHowToPlayEnderchestSmall + + + + + XuiHtmlControlEnderchest + 280.000000 + 240.000000 + 80.000000,12.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiHtmlControlHorses + 282.000000 + 239.000000 + 74.000114,13.000046,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageHorses + 248.000000 + 146.000000 + 372.000092,58.000046,0.000000 + ImHowToPlayHorsesSmall + + + + + XuiHtmlControlBeacon + 204.000000 + 240.000000 + 76.999985,14.000046,0.000000 + XuiHtmlControl_H2P_Small + + + + + XuiImageBeacon + 336.000000 + 290.000000 + 296.000000,2.000048,0.000000 + ImHowToPlayBeaconSmall + + + + + BeSecond + 144.000000 + 34.000000 + 470.000000,16.000046,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + BeFirst + 144.000000 + 34.000000 + 312.000000,16.000046,0.000000 + XuiLabelDarkCentredWrapSmall + + + + + XuiImageDropper + 262.000000 + 280.000000 + 372.000000,8.000046,0.000000 + ImHowToPlayDispenserSmall + + + + + XuiHtmlControlDropper + 282.000000 + 240.000000 + 74.000000,14.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + DrInventory + 230.000000 + 24.000000 + 386.000000,139.000046,0.000000 + LabelContainerSceneLeftSmall + + + + + DrText + 160.000000 + 24.000000 + 454.000000,18.000048,0.000000 + LabelContainerSceneLeftSmall + + + + + XuiImageHopper + 260.000000 + 220.000000 + 372.000000,36.000000,0.000000 + ImHowToPlayHopperSmall + + + + + XuiHtmlControlHopper + 282.000000 + 240.000000 + 74.000000,14.000000,0.000000 + XuiHtmlControl_H2P_Small + + + + + HInventory + 230.000000 + 24.000000 + 386.000000,110.000046,0.000000 + LabelContainerSceneLeftSmall + + + + + HText + 230.000000 + 24.000000 + 387.000000,44.000046,0.000000 + LabelContainerSceneCentreSmall + + + + + XuiImageFireworks + 260.000000 + 280.000000 + 372.000000,8.000050,0.000000 + ImHowToPlayFireworksSmall + + + + + XuiHtmlControlFireworks + 282.000000 + 240.000000 + 74.000000,14.000000,0.000000 + XuiHtmlControl_H2P_Small + false + + + + + FiInventory + 230.000000 + 28.000000 + 386.000000,140.000046,0.000000 + LabelContainerSceneLeftSmall + + + + + FiText + 230.000000 + 24.000000 + 386.000000,18.000046,0.000000 + LabelContainerSceneLeftSmall + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hud.xui b/Minecraft.Client/Common/Media/xuiscene_hud.xui index f358a086..124660c1 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hud.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hud.xui @@ -1,948 +1,944 @@ - -1280.000000 -720.000000 - - - -HUDScene -1280.000000 -720.000000 -CXuiSceneHud -XuiBlankScene - - - -Crosshair -15.000000 -15.000000 -616.000000,336.000000,0.000000 -3.000000,3.000000,3.000000 -HudCrosshair - - - - -HudHolder -548.000000 -150.000000 -366.000031,480.000000,0.000000 - - - -HudGroup -548.000000 -150.000000 - - - -HudScaleGroup -182.000000 -54.000000 -0.000038,3.000057,0.000000 -3.000000,3.000000,3.000000 - - - -Hotbar -182.000000 -24.000000 -0.000000,26.000000,0.000000 - - - -Box -182.000000 -22.000000 -0.000000,1.000000,0.000000 -15 -HUDHotBarBack - - - - -Inventory1 -24.000000 -24.000000 --0.999939,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory2 -24.000000 -24.000000 -19.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory3 -24.000000 -24.000000 -39.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory4 -24.000000 -24.000000 -59.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory5 -24.000000 -24.000000 -79.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory6 -24.000000 -24.000000 -99.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory7 -24.000000 -24.000000 -119.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory8 -24.000000 -24.000000 -139.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory9 -24.000000 -24.000000 -159.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - - -ExperienceProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -ExperienceProgress -200 - - - - -HorseJumpProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -HorseJumpProgress -200 - - - - -Armour -81.000000 -9.000000 - - - -Armour0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudArmour - - - - -Armour1 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudArmour - - - - -Armour2 -9.000000 -9.000000 -16.000029,0.000061,0.000000 -HudArmour - - - - -Armour3 -9.000000 -9.000000 -24.000027,0.000061,0.000000 -HudArmour - - - - -Armour4 -9.000000 -9.000000 -32.000027,0.000061,0.000000 -HudArmour - - - - -Armour5 -9.000000 -9.000000 -40.000027,0.000061,0.000000 -HudArmour - - - - -Armour6 -9.000000 -9.000000 -48.000023,0.000061,0.000000 -HudArmour - - - - -Armour7 -9.000000 -9.000000 -56.000023,0.000061,0.000000 -HudArmour - - - - -Armour8 -9.000000 -9.000000 -64.000023,0.000061,0.000000 -HudArmour - - - - -Armour9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudArmour - - - - - -HealthAbsorb -81.000000 -9.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Health -81.000000 -9.000000 -0.000000,10.000031,0.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -HorseHealth -81.000000 -19.000000 -101.000000,0.000000,0.000000 - - - -Health9 -9.000000 -9.000000 -0.000031,10.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -8.000000,10.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -16.000000,10.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -24.000000,10.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -32.000000,10.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -40.000000,10.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -48.000000,10.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -56.000000,10.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -64.000000,10.000061,0.000000 -HudHealth - - - - -Health0 -9.000000 -9.000000 -72.000031,10.000061,0.000000 -HudHealth - - - - -Health19 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health18 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health17 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health16 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health15 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health14 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health13 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health12 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health11 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health10 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Food -81.000000 -9.000000 -101.000031,10.000031,0.000000 - - - -Food9 -9.000000 -9.000000 -0.000000,0.000061,0.000000 -HudFood - - - - -Food8 -9.000000 -9.000000 -7.999992,0.000061,0.000000 -HudFood - - - - -Food7 -9.000000 -9.000000 -15.999992,0.000061,0.000000 -HudFood - - - - -Food6 -9.000000 -9.000000 -23.999992,0.000061,0.000000 -HudFood - - - - -Food5 -9.000000 -9.000000 -31.999996,0.000061,0.000000 -HudFood - - - - -Food4 -9.000000 -9.000000 -39.999996,0.000061,0.000000 -HudFood - - - - -Food3 -9.000000 -9.000000 -47.999996,0.000061,0.000000 -HudFood - - - - -Food2 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudFood - - - - -Food1 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudFood - - - - -Food0 -9.000000 -9.000000 -72.000000,0.000061,0.000000 -HudFood - - - - - -Air -81.000000 -9.000000 -101.000031,0.000000,0.000000 - - - -Air9 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudAir - - - - -Air8 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudAir - - - - -Air7 -9.000000 -9.000000 -16.000031,0.000061,0.000000 -HudAir - - - - -Air6 -9.000000 -9.000000 -24.000031,0.000061,0.000000 -HudAir - - - - -Air5 -9.000000 -9.000000 -32.000031,0.000061,0.000000 -HudAir - - - - -Air4 -9.000000 -9.000000 -40.000031,0.000061,0.000000 -HudAir - - - - -Air3 -9.000000 -9.000000 -48.000031,0.000061,0.000000 -HudAir - - - - -Air2 -9.000000 -9.000000 -56.000031,0.000061,0.000000 -HudAir - - - - -Air1 -9.000000 -9.000000 -64.000031,0.000061,0.000000 -HudAir - - - - -Air0 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudAir - - - - - -XPLevel -20.000000 -9.000000 -81.000000,10.000000,0.000000 -HudXPLevel - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - - - - -HudScaleGroup -Scale -Position - - -0 -3.000000,3.000000,3.000000 -0.000038,3.000057,0.000000 - - - -0 -2.000000,2.000000,2.000000 -90.999992,46.000057,0.000000 - - - -0 -4.000000,4.000000,4.000000 --90.999962,-43.999943,0.000000 - - - - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - -Crosshair -Scale -Position - - -0 -3.000000,3.000000,3.000000 -616.000000,336.000000,0.000000 - - - -0 -2.000000,2.000000,2.000000 -624.000000,344.000000,0.000000 - - - -0 -4.000000,4.000000,1.000000 -610.000000,330.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + HUDScene + 1280.000000 + 720.000000 + CXuiSceneHud + XuiBlankScene + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + Crosshair + + + none + 1 + 0 + + + + none + 64 + 68 + + + + none + 69 + 70 + + + + + + Crosshair + 15.000000 + 15.000000 + 616.000000,336.000000,0.000000 + 3.000000,3.000000,3.000000 + HudCrosshair + + + + + HudHolder + 548.000000 + 150.000000 + 366.000031,480.000000,0.000000 + + + + HudGroup + 548.000000 + 150.000000 + + + + HudScaleGroup + + + none + 1 + 3 + + + + none + 64 + 65 + + + + none + 66 + 67 + + + + + + HudScaleGroup + 182.000000 + 54.000000 + 0.000038,3.000057,0.000000 + 3.000000,3.000000,3.000000 + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + + + Hotbar + 182.000000 + 24.000000 + 0.000000,26.000000,0.000000 + + + + Box + 182.000000 + 22.000000 + 0.000000,1.000000,0.000000 + 15 + HUDHotBarBack + + + + + Inventory1 + 24.000000 + 24.000000 + -0.999939,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory2 + 24.000000 + 24.000000 + 19.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory3 + 24.000000 + 24.000000 + 39.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory4 + 24.000000 + 24.000000 + 59.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory5 + 24.000000 + 24.000000 + 79.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory6 + 24.000000 + 24.000000 + 99.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory7 + 24.000000 + 24.000000 + 119.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory8 + 24.000000 + 24.000000 + 139.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory9 + 24.000000 + 24.000000 + 159.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + + ExperienceProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + ExperienceProgress + 200 + + + + + HorseJumpProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + HorseJumpProgress + 200 + + + + + Armour + 81.000000 + 9.000000 + + + + Armour0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudArmour + + + + + Armour1 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudArmour + + + + + Armour2 + 9.000000 + 9.000000 + 16.000029,0.000061,0.000000 + HudArmour + + + + + Armour3 + 9.000000 + 9.000000 + 24.000027,0.000061,0.000000 + HudArmour + + + + + Armour4 + 9.000000 + 9.000000 + 32.000027,0.000061,0.000000 + HudArmour + + + + + Armour5 + 9.000000 + 9.000000 + 40.000027,0.000061,0.000000 + HudArmour + + + + + Armour6 + 9.000000 + 9.000000 + 48.000023,0.000061,0.000000 + HudArmour + + + + + Armour7 + 9.000000 + 9.000000 + 56.000023,0.000061,0.000000 + HudArmour + + + + + Armour8 + 9.000000 + 9.000000 + 64.000023,0.000061,0.000000 + HudArmour + + + + + Armour9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudArmour + + + + + + HealthAbsorb + 81.000000 + 9.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Health + 81.000000 + 9.000000 + 0.000000,10.000031,0.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + HorseHealth + 81.000000 + 19.000000 + 101.000000,0.000000,0.000000 + + + + Health9 + 9.000000 + 9.000000 + 0.000031,10.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 8.000000,10.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 16.000000,10.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 24.000000,10.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 32.000000,10.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 40.000000,10.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 48.000000,10.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 56.000000,10.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 64.000000,10.000061,0.000000 + HudHealth + + + + + Health0 + 9.000000 + 9.000000 + 72.000031,10.000061,0.000000 + HudHealth + + + + + Health19 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health18 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health17 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health16 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health15 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health14 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health13 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health12 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health11 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health10 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Food + 81.000000 + 9.000000 + 101.000031,10.000031,0.000000 + + + + Food9 + 9.000000 + 9.000000 + 0.000000,0.000061,0.000000 + HudFood + + + + + Food8 + 9.000000 + 9.000000 + 7.999992,0.000061,0.000000 + HudFood + + + + + Food7 + 9.000000 + 9.000000 + 15.999992,0.000061,0.000000 + HudFood + + + + + Food6 + 9.000000 + 9.000000 + 23.999992,0.000061,0.000000 + HudFood + + + + + Food5 + 9.000000 + 9.000000 + 31.999996,0.000061,0.000000 + HudFood + + + + + Food4 + 9.000000 + 9.000000 + 39.999996,0.000061,0.000000 + HudFood + + + + + Food3 + 9.000000 + 9.000000 + 47.999996,0.000061,0.000000 + HudFood + + + + + Food2 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudFood + + + + + Food1 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudFood + + + + + Food0 + 9.000000 + 9.000000 + 72.000000,0.000061,0.000000 + HudFood + + + + + + Air + 81.000000 + 9.000000 + 101.000031,0.000000,0.000000 + + + + Air9 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudAir + + + + + Air8 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudAir + + + + + Air7 + 9.000000 + 9.000000 + 16.000031,0.000061,0.000000 + HudAir + + + + + Air6 + 9.000000 + 9.000000 + 24.000031,0.000061,0.000000 + HudAir + + + + + Air5 + 9.000000 + 9.000000 + 32.000031,0.000061,0.000000 + HudAir + + + + + Air4 + 9.000000 + 9.000000 + 40.000031,0.000061,0.000000 + HudAir + + + + + Air3 + 9.000000 + 9.000000 + 48.000031,0.000061,0.000000 + HudAir + + + + + Air2 + 9.000000 + 9.000000 + 56.000031,0.000061,0.000000 + HudAir + + + + + Air1 + 9.000000 + 9.000000 + 64.000031,0.000061,0.000000 + HudAir + + + + + Air0 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudAir + + + + + + XPLevel + 20.000000 + 9.000000 + 81.000000,10.000000,0.000000 + HudXPLevel + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hud_480.xui b/Minecraft.Client/Common/Media/xuiscene_hud_480.xui index c4903a5a..398e005d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hud_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hud_480.xui @@ -1,948 +1,944 @@ - -640.000000 -480.000000 - - - -HUDScene -640.000000 -480.000000 -CXuiSceneHud -XuiBlankScene - - - -Crosshair -15.000000 -15.000000 -306.000031,226.000015,0.000000 -2.000000,2.000000,1.000000 -HudCrosshair - - - - -HudHolder -273.000000 -81.000000 -183.500015,336.000000,0.000000 - - - -HudGroup -273.000000 -81.000000 - - - -HudScaleGroup -182.000000 -54.000000 --45.000000,-17.999977,0.000000 -2.000000,2.000000,1.000000 - - - -Hotbar -182.000000 -24.000000 -0.000000,26.000000,0.000000 - - - -Box -182.000000 -22.000000 -0.000000,1.000000,0.000000 -15 -HUDHotBarBack - - - - -Inventory1 -24.000000 -24.000000 --0.999939,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory2 -24.000000 -24.000000 -19.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory3 -24.000000 -24.000000 -39.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory4 -24.000000 -24.000000 -59.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory5 -24.000000 -24.000000 -79.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory6 -24.000000 -24.000000 -99.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory7 -24.000000 -24.000000 -119.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory8 -24.000000 -24.000000 -139.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory9 -24.000000 -24.000000 -159.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - - -ExperienceProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -ExperienceProgress -200 - - - - -HorseJumpProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -HorseJumpProgress -200 - - - - -Armour -81.000000 -9.000000 - - - -Armour0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudArmour - - - - -Armour1 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudArmour - - - - -Armour2 -9.000000 -9.000000 -16.000029,0.000061,0.000000 -HudArmour - - - - -Armour3 -9.000000 -9.000000 -24.000027,0.000061,0.000000 -HudArmour - - - - -Armour4 -9.000000 -9.000000 -32.000027,0.000061,0.000000 -HudArmour - - - - -Armour5 -9.000000 -9.000000 -40.000027,0.000061,0.000000 -HudArmour - - - - -Armour6 -9.000000 -9.000000 -48.000023,0.000061,0.000000 -HudArmour - - - - -Armour7 -9.000000 -9.000000 -56.000023,0.000061,0.000000 -HudArmour - - - - -Armour8 -9.000000 -9.000000 -64.000023,0.000061,0.000000 -HudArmour - - - - -Armour9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudArmour - - - - - -HealthAbsorb -81.000000 -9.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Health -81.000000 -9.000000 -0.000000,10.000031,0.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -HorseHealth -81.000000 -19.000000 -101.000000,0.000000,0.000000 - - - -Health9 -9.000000 -9.000000 -0.000031,10.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -8.000000,10.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -16.000000,10.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -24.000000,10.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -32.000000,10.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -40.000000,10.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -48.000000,10.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -56.000000,10.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -64.000000,10.000061,0.000000 -HudHealth - - - - -Health0 -9.000000 -9.000000 -72.000031,10.000061,0.000000 -HudHealth - - - - -Health19 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health18 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health17 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health16 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health15 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health14 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health13 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health12 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health11 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health10 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Food -81.000000 -9.000000 -101.000031,10.000031,0.000000 - - - -Food9 -9.000000 -9.000000 -0.000000,0.000061,0.000000 -HudFood - - - - -Food8 -9.000000 -9.000000 -7.999992,0.000061,0.000000 -HudFood - - - - -Food7 -9.000000 -9.000000 -15.999992,0.000061,0.000000 -HudFood - - - - -Food6 -9.000000 -9.000000 -23.999992,0.000061,0.000000 -HudFood - - - - -Food5 -9.000000 -9.000000 -31.999996,0.000061,0.000000 -HudFood - - - - -Food4 -9.000000 -9.000000 -39.999996,0.000061,0.000000 -HudFood - - - - -Food3 -9.000000 -9.000000 -47.999996,0.000061,0.000000 -HudFood - - - - -Food2 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudFood - - - - -Food1 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudFood - - - - -Food0 -9.000000 -9.000000 -72.000000,0.000061,0.000000 -HudFood - - - - - -Air -81.000000 -9.000000 -101.000031,0.000000,0.000000 - - - -Air9 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudAir - - - - -Air8 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudAir - - - - -Air7 -9.000000 -9.000000 -16.000031,0.000061,0.000000 -HudAir - - - - -Air6 -9.000000 -9.000000 -24.000031,0.000061,0.000000 -HudAir - - - - -Air5 -9.000000 -9.000000 -32.000031,0.000061,0.000000 -HudAir - - - - -Air4 -9.000000 -9.000000 -40.000031,0.000061,0.000000 -HudAir - - - - -Air3 -9.000000 -9.000000 -48.000031,0.000061,0.000000 -HudAir - - - - -Air2 -9.000000 -9.000000 -56.000031,0.000061,0.000000 -HudAir - - - - -Air1 -9.000000 -9.000000 -64.000031,0.000061,0.000000 -HudAir - - - - -Air0 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudAir - - - - - -XPLevel -20.000000 -9.000000 -81.000000,10.000000,0.000000 -HudXPLevel - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - - - - -HudScaleGroup -Scale -Position - - -0 -2.000000,2.000000,1.000000 --45.000000,-17.999977,0.000000 - - - -0 -1.500000,1.500000,1.000000 -0.000011,8.000023,0.000000 - - - -0 -2.500000,2.500000,1.000000 --90.999985,-41.999977,0.000000 - - - - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - -Crosshair -Scale -Position - - -0 -2.000000,2.000000,1.000000 -306.000031,226.000015,0.000000 - - - -0 -1.000000,1.000000,1.000000 -312.000000,232.000000,0.000000 - - - -0 -3.000000,3.000000,1.000000 -298.000000,218.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + HUDScene + 640.000000 + 480.000000 + CXuiSceneHud + XuiBlankScene + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + Crosshair + + + none + 1 + 0 + + + + none + 68 + 69 + + + + none + 70 + 71 + + + + + + Crosshair + 15.000000 + 15.000000 + 306.000031,226.000015,0.000000 + 2.000000,2.000000,1.000000 + HudCrosshair + + + + + HudHolder + 273.000000 + 81.000000 + 183.500015,336.000000,0.000000 + + + + HudGroup + 273.000000 + 81.000000 + + + + HudScaleGroup + + + none + 1 + 3 + + + + none + 64 + 65 + + + + none + 66 + 67 + + + + + + HudScaleGroup + 182.000000 + 54.000000 + -45.000000,-17.999977,0.000000 + 2.000000,2.000000,1.000000 + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + + + Hotbar + 182.000000 + 24.000000 + 0.000000,26.000000,0.000000 + + + + Box + 182.000000 + 22.000000 + 0.000000,1.000000,0.000000 + 15 + HUDHotBarBack + + + + + Inventory1 + 24.000000 + 24.000000 + -0.999939,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory2 + 24.000000 + 24.000000 + 19.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory3 + 24.000000 + 24.000000 + 39.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory4 + 24.000000 + 24.000000 + 59.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory5 + 24.000000 + 24.000000 + 79.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory6 + 24.000000 + 24.000000 + 99.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory7 + 24.000000 + 24.000000 + 119.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory8 + 24.000000 + 24.000000 + 139.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory9 + 24.000000 + 24.000000 + 159.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + + ExperienceProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + ExperienceProgress + 200 + + + + + HorseJumpProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + HorseJumpProgress + 200 + + + + + Armour + 81.000000 + 9.000000 + + + + Armour0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudArmour + + + + + Armour1 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudArmour + + + + + Armour2 + 9.000000 + 9.000000 + 16.000029,0.000061,0.000000 + HudArmour + + + + + Armour3 + 9.000000 + 9.000000 + 24.000027,0.000061,0.000000 + HudArmour + + + + + Armour4 + 9.000000 + 9.000000 + 32.000027,0.000061,0.000000 + HudArmour + + + + + Armour5 + 9.000000 + 9.000000 + 40.000027,0.000061,0.000000 + HudArmour + + + + + Armour6 + 9.000000 + 9.000000 + 48.000023,0.000061,0.000000 + HudArmour + + + + + Armour7 + 9.000000 + 9.000000 + 56.000023,0.000061,0.000000 + HudArmour + + + + + Armour8 + 9.000000 + 9.000000 + 64.000023,0.000061,0.000000 + HudArmour + + + + + Armour9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudArmour + + + + + + HealthAbsorb + 81.000000 + 9.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Health + 81.000000 + 9.000000 + 0.000000,10.000031,0.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + HorseHealth + 81.000000 + 19.000000 + 101.000000,0.000000,0.000000 + + + + Health9 + 9.000000 + 9.000000 + 0.000031,10.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 8.000000,10.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 16.000000,10.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 24.000000,10.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 32.000000,10.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 40.000000,10.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 48.000000,10.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 56.000000,10.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 64.000000,10.000061,0.000000 + HudHealth + + + + + Health0 + 9.000000 + 9.000000 + 72.000031,10.000061,0.000000 + HudHealth + + + + + Health19 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health18 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health17 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health16 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health15 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health14 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health13 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health12 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health11 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health10 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Food + 81.000000 + 9.000000 + 101.000031,10.000031,0.000000 + + + + Food9 + 9.000000 + 9.000000 + 0.000000,0.000061,0.000000 + HudFood + + + + + Food8 + 9.000000 + 9.000000 + 7.999992,0.000061,0.000000 + HudFood + + + + + Food7 + 9.000000 + 9.000000 + 15.999992,0.000061,0.000000 + HudFood + + + + + Food6 + 9.000000 + 9.000000 + 23.999992,0.000061,0.000000 + HudFood + + + + + Food5 + 9.000000 + 9.000000 + 31.999996,0.000061,0.000000 + HudFood + + + + + Food4 + 9.000000 + 9.000000 + 39.999996,0.000061,0.000000 + HudFood + + + + + Food3 + 9.000000 + 9.000000 + 47.999996,0.000061,0.000000 + HudFood + + + + + Food2 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudFood + + + + + Food1 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudFood + + + + + Food0 + 9.000000 + 9.000000 + 72.000000,0.000061,0.000000 + HudFood + + + + + + Air + 81.000000 + 9.000000 + 101.000031,0.000000,0.000000 + + + + Air9 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudAir + + + + + Air8 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudAir + + + + + Air7 + 9.000000 + 9.000000 + 16.000031,0.000061,0.000000 + HudAir + + + + + Air6 + 9.000000 + 9.000000 + 24.000031,0.000061,0.000000 + HudAir + + + + + Air5 + 9.000000 + 9.000000 + 32.000031,0.000061,0.000000 + HudAir + + + + + Air4 + 9.000000 + 9.000000 + 40.000031,0.000061,0.000000 + HudAir + + + + + Air3 + 9.000000 + 9.000000 + 48.000031,0.000061,0.000000 + HudAir + + + + + Air2 + 9.000000 + 9.000000 + 56.000031,0.000061,0.000000 + HudAir + + + + + Air1 + 9.000000 + 9.000000 + 64.000031,0.000061,0.000000 + HudAir + + + + + Air0 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudAir + + + + + + XPLevel + 20.000000 + 9.000000 + 81.000000,10.000000,0.000000 + HudXPLevel + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_hud_small.xui b/Minecraft.Client/Common/Media/xuiscene_hud_small.xui index b86761ce..10a5d2df 100644 --- a/Minecraft.Client/Common/Media/xuiscene_hud_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_hud_small.xui @@ -1,967 +1,962 @@ - -640.000000 -360.000000 - - - -HUDScene -640.000000 -360.000000 -CXuiSceneHud -XuiBlankScene - - - -Crosshair -15.000000 -15.000000 -304.000000,164.000000,0.000000 -2.000000,2.000000,1.000000 -HudCrosshair - - - - -HudHolder -273.000000 -81.000000 -182.000000,240.000000,0.000000 - - - -HudGroup -273.000000 -81.000000 - - - -HudScaleGroup -182.000000 -54.000000 -0.000015,8.000008,0.000000 -1.520000,1.520000,1.020000 - - - -Hotbar -182.000000 -24.000000 -0.000000,30.000000,0.000000 - - - -Box -182.000000 -22.000000 --0.000000,1.000000,0.000000 -15 -HUDHotBarBack - - - - -Inventory1 -24.000000 -24.000000 --0.999939,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory2 -24.000000 -24.000000 -19.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory3 -24.000000 -24.000000 -39.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory4 -24.000000 -24.000000 -59.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory5 -24.000000 -24.000000 -79.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory6 -24.000000 -24.000000 -99.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory7 -24.000000 -24.000000 -119.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory8 -24.000000 -24.000000 -139.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - -Inventory9 -24.000000 -24.000000 -159.000061,0.000061,0.000000 -CXuiCtrlSlotItem -ItemHUDHotbar - - - - - -ExperienceProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -ExperienceProgress -200 - - - - -HorseJumpProgress -182.000000 -5.000000 -0.000031,20.000031,0.000000 -HorseJumpProgress -200 - - - - -Armour -81.000000 -9.000000 - - - -Armour0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudArmour - - - - -Armour1 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudArmour - - - - -Armour2 -9.000000 -9.000000 -16.000029,0.000061,0.000000 -HudArmour - - - - -Armour3 -9.000000 -9.000000 -24.000027,0.000061,0.000000 -HudArmour - - - - -Armour4 -9.000000 -9.000000 -32.000027,0.000061,0.000000 -HudArmour - - - - -Armour5 -9.000000 -9.000000 -40.000027,0.000061,0.000000 -HudArmour - - - - -Armour6 -9.000000 -9.000000 -48.000023,0.000061,0.000000 -HudArmour - - - - -Armour7 -9.000000 -9.000000 -56.000023,0.000061,0.000000 -HudArmour - - - - -Armour8 -9.000000 -9.000000 -64.000023,0.000061,0.000000 -HudArmour - - - - -Armour9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudArmour - - - - - -HealthAbsorb -81.000000 -9.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Health -81.000000 -9.000000 -0.000000,10.000031,0.000000 - - - -Health0 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health9 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -HorseHealth -81.000000 -19.000000 -101.000000,0.000000,0.000000 - - - -Health9 -9.000000 -9.000000 -0.000031,10.000061,0.000000 -HudHealth - - - - -Health8 -9.000000 -9.000000 -8.000000,10.000061,0.000000 -HudHealth - - - - -Health7 -9.000000 -9.000000 -16.000000,10.000061,0.000000 -HudHealth - - - - -Health6 -9.000000 -9.000000 -24.000000,10.000061,0.000000 -HudHealth - - - - -Health5 -9.000000 -9.000000 -32.000000,10.000061,0.000000 -HudHealth - - - - -Health4 -9.000000 -9.000000 -40.000000,10.000061,0.000000 -HudHealth - - - - -Health3 -9.000000 -9.000000 -48.000000,10.000061,0.000000 -HudHealth - - - - -Health2 -9.000000 -9.000000 -56.000000,10.000061,0.000000 -HudHealth - - - - -Health1 -9.000000 -9.000000 -64.000000,10.000061,0.000000 -HudHealth - - - - -Health0 -9.000000 -9.000000 -72.000031,10.000061,0.000000 -HudHealth - - - - -Health19 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudHealth - - - - -Health18 -9.000000 -9.000000 -8.000000,0.000061,0.000000 -HudHealth - - - - -Health17 -9.000000 -9.000000 -16.000000,0.000061,0.000000 -HudHealth - - - - -Health16 -9.000000 -9.000000 -24.000000,0.000061,0.000000 -HudHealth - - - - -Health15 -9.000000 -9.000000 -32.000000,0.000061,0.000000 -HudHealth - - - - -Health14 -9.000000 -9.000000 -40.000000,0.000061,0.000000 -HudHealth - - - - -Health13 -9.000000 -9.000000 -48.000000,0.000061,0.000000 -HudHealth - - - - -Health12 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudHealth - - - - -Health11 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudHealth - - - - -Health10 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudHealth - - - - - -Food -81.000000 -9.000000 -101.000031,10.000031,0.000000 - - - -Food9 -9.000000 -9.000000 -0.000000,0.000061,0.000000 -HudFood - - - - -Food8 -9.000000 -9.000000 -7.999992,0.000061,0.000000 -HudFood - - - - -Food7 -9.000000 -9.000000 -15.999992,0.000061,0.000000 -HudFood - - - - -Food6 -9.000000 -9.000000 -23.999992,0.000061,0.000000 -HudFood - - - - -Food5 -9.000000 -9.000000 -31.999996,0.000061,0.000000 -HudFood - - - - -Food4 -9.000000 -9.000000 -39.999996,0.000061,0.000000 -HudFood - - - - -Food3 -9.000000 -9.000000 -47.999996,0.000061,0.000000 -HudFood - - - - -Food2 -9.000000 -9.000000 -56.000000,0.000061,0.000000 -HudFood - - - - -Food1 -9.000000 -9.000000 -64.000000,0.000061,0.000000 -HudFood - - - - -Food0 -9.000000 -9.000000 -72.000000,0.000061,0.000000 -HudFood - - - - - -Air -81.000000 -9.000000 -101.000031,0.000000,0.000000 - - - -Air9 -9.000000 -9.000000 -0.000031,0.000061,0.000000 -HudAir - - - - -Air8 -9.000000 -9.000000 -8.000031,0.000061,0.000000 -HudAir - - - - -Air7 -9.000000 -9.000000 -16.000031,0.000061,0.000000 -HudAir - - - - -Air6 -9.000000 -9.000000 -24.000031,0.000061,0.000000 -HudAir - - - - -Air5 -9.000000 -9.000000 -32.000031,0.000061,0.000000 -HudAir - - - - -Air4 -9.000000 -9.000000 -40.000031,0.000061,0.000000 -HudAir - - - - -Air3 -9.000000 -9.000000 -48.000031,0.000061,0.000000 -HudAir - - - - -Air2 -9.000000 -9.000000 -56.000031,0.000061,0.000000 -HudAir - - - - -Air1 -9.000000 -9.000000 -64.000031,0.000061,0.000000 -HudAir - - - - -Air0 -9.000000 -9.000000 -72.000031,0.000061,0.000000 -HudAir - - - - - -XPLevel -20.000000 -9.000000 -81.000000,10.000000,0.000000 -HudXPLevel - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - -Hotbar -Position - - -0 -0.000000,30.000000,0.000000 - - - -0 -0.000000,30.000000,0.000000 - - - -0 -0.000000,27.000000,0.000000 - - - - - - -HudScaleGroup -Scale -Position - - -0 -1.520000,1.520000,1.020000 -0.000015,8.000008,0.000000 - - - -0 -1.000000,1.000000,1.000000 -46.000015,2.000008,0.000000 - - - -0 -2.000000,2.000000,3.000000 --45.999969,-13.999992,0.000000 - - - - - - - - -Normal - -stop - - -ScaleSmall - -stop - - -ScaleLarge - -stop - - - -Crosshair -Scale -Position - - -0 -2.000000,2.000000,1.000000 -304.000000,164.000000,0.000000 - - - -0 -1.000000,1.000000,1.000000 -312.000000,172.000000,0.000000 - - - -0 -3.000000,3.000000,1.000000 -296.000000,156.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + HUDScene + 640.000000 + 360.000000 + CXuiSceneHud + XuiBlankScene + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + Crosshair + + + none + 1 + 0 + + + + none + 66 + 70 + + + + none + 71 + 72 + + + + + + Crosshair + 15.000000 + 15.000000 + 304.000000,164.000000,0.000000 + 2.000000,2.000000,1.000000 + HudCrosshair + + + + + HudHolder + 273.000000 + 81.000000 + 182.000000,240.000000,0.000000 + + + + HudGroup + 273.000000 + 81.000000 + + + + HudScaleGroup + + + none + 4 + 3 + + + + none + 66 + 67 + + + + none + 68 + 69 + + + + + + HudScaleGroup + 182.000000 + 54.000000 + 0.000015,8.000008,0.000000 + 1.520000,1.520000,1.020000 + + + + + Normal + + stop + + + ScaleSmall + + stop + + + ScaleLarge + + stop + + + + Hotbar + + + none + 5 + + + + none + 5 + + + + none + 65 + + + + + + Hotbar + 182.000000 + 24.000000 + 0.000000,30.000000,0.000000 + + + + Box + 182.000000 + 22.000000 + -0.000000,1.000000,0.000000 + 15 + HUDHotBarBack + + + + + Inventory1 + 24.000000 + 24.000000 + -0.999939,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory2 + 24.000000 + 24.000000 + 19.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory3 + 24.000000 + 24.000000 + 39.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory4 + 24.000000 + 24.000000 + 59.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory5 + 24.000000 + 24.000000 + 79.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory6 + 24.000000 + 24.000000 + 99.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory7 + 24.000000 + 24.000000 + 119.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory8 + 24.000000 + 24.000000 + 139.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + Inventory9 + 24.000000 + 24.000000 + 159.000061,0.000061,0.000000 + CXuiCtrlSlotItem + ItemHUDHotbar + + + + + + ExperienceProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + ExperienceProgress + 200 + + + + + HorseJumpProgress + 182.000000 + 5.000000 + 0.000031,20.000031,0.000000 + HorseJumpProgress + 200 + + + + + Armour + 81.000000 + 9.000000 + + + + Armour0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudArmour + + + + + Armour1 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudArmour + + + + + Armour2 + 9.000000 + 9.000000 + 16.000029,0.000061,0.000000 + HudArmour + + + + + Armour3 + 9.000000 + 9.000000 + 24.000027,0.000061,0.000000 + HudArmour + + + + + Armour4 + 9.000000 + 9.000000 + 32.000027,0.000061,0.000000 + HudArmour + + + + + Armour5 + 9.000000 + 9.000000 + 40.000027,0.000061,0.000000 + HudArmour + + + + + Armour6 + 9.000000 + 9.000000 + 48.000023,0.000061,0.000000 + HudArmour + + + + + Armour7 + 9.000000 + 9.000000 + 56.000023,0.000061,0.000000 + HudArmour + + + + + Armour8 + 9.000000 + 9.000000 + 64.000023,0.000061,0.000000 + HudArmour + + + + + Armour9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudArmour + + + + + + HealthAbsorb + 81.000000 + 9.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Health + 81.000000 + 9.000000 + 0.000000,10.000031,0.000000 + + + + Health0 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health9 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + HorseHealth + 81.000000 + 19.000000 + 101.000000,0.000000,0.000000 + + + + Health9 + 9.000000 + 9.000000 + 0.000031,10.000061,0.000000 + HudHealth + + + + + Health8 + 9.000000 + 9.000000 + 8.000000,10.000061,0.000000 + HudHealth + + + + + Health7 + 9.000000 + 9.000000 + 16.000000,10.000061,0.000000 + HudHealth + + + + + Health6 + 9.000000 + 9.000000 + 24.000000,10.000061,0.000000 + HudHealth + + + + + Health5 + 9.000000 + 9.000000 + 32.000000,10.000061,0.000000 + HudHealth + + + + + Health4 + 9.000000 + 9.000000 + 40.000000,10.000061,0.000000 + HudHealth + + + + + Health3 + 9.000000 + 9.000000 + 48.000000,10.000061,0.000000 + HudHealth + + + + + Health2 + 9.000000 + 9.000000 + 56.000000,10.000061,0.000000 + HudHealth + + + + + Health1 + 9.000000 + 9.000000 + 64.000000,10.000061,0.000000 + HudHealth + + + + + Health0 + 9.000000 + 9.000000 + 72.000031,10.000061,0.000000 + HudHealth + + + + + Health19 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudHealth + + + + + Health18 + 9.000000 + 9.000000 + 8.000000,0.000061,0.000000 + HudHealth + + + + + Health17 + 9.000000 + 9.000000 + 16.000000,0.000061,0.000000 + HudHealth + + + + + Health16 + 9.000000 + 9.000000 + 24.000000,0.000061,0.000000 + HudHealth + + + + + Health15 + 9.000000 + 9.000000 + 32.000000,0.000061,0.000000 + HudHealth + + + + + Health14 + 9.000000 + 9.000000 + 40.000000,0.000061,0.000000 + HudHealth + + + + + Health13 + 9.000000 + 9.000000 + 48.000000,0.000061,0.000000 + HudHealth + + + + + Health12 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudHealth + + + + + Health11 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudHealth + + + + + Health10 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudHealth + + + + + + Food + 81.000000 + 9.000000 + 101.000031,10.000031,0.000000 + + + + Food9 + 9.000000 + 9.000000 + 0.000000,0.000061,0.000000 + HudFood + + + + + Food8 + 9.000000 + 9.000000 + 7.999992,0.000061,0.000000 + HudFood + + + + + Food7 + 9.000000 + 9.000000 + 15.999992,0.000061,0.000000 + HudFood + + + + + Food6 + 9.000000 + 9.000000 + 23.999992,0.000061,0.000000 + HudFood + + + + + Food5 + 9.000000 + 9.000000 + 31.999996,0.000061,0.000000 + HudFood + + + + + Food4 + 9.000000 + 9.000000 + 39.999996,0.000061,0.000000 + HudFood + + + + + Food3 + 9.000000 + 9.000000 + 47.999996,0.000061,0.000000 + HudFood + + + + + Food2 + 9.000000 + 9.000000 + 56.000000,0.000061,0.000000 + HudFood + + + + + Food1 + 9.000000 + 9.000000 + 64.000000,0.000061,0.000000 + HudFood + + + + + Food0 + 9.000000 + 9.000000 + 72.000000,0.000061,0.000000 + HudFood + + + + + + Air + 81.000000 + 9.000000 + 101.000031,0.000000,0.000000 + + + + Air9 + 9.000000 + 9.000000 + 0.000031,0.000061,0.000000 + HudAir + + + + + Air8 + 9.000000 + 9.000000 + 8.000031,0.000061,0.000000 + HudAir + + + + + Air7 + 9.000000 + 9.000000 + 16.000031,0.000061,0.000000 + HudAir + + + + + Air6 + 9.000000 + 9.000000 + 24.000031,0.000061,0.000000 + HudAir + + + + + Air5 + 9.000000 + 9.000000 + 32.000031,0.000061,0.000000 + HudAir + + + + + Air4 + 9.000000 + 9.000000 + 40.000031,0.000061,0.000000 + HudAir + + + + + Air3 + 9.000000 + 9.000000 + 48.000031,0.000061,0.000000 + HudAir + + + + + Air2 + 9.000000 + 9.000000 + 56.000031,0.000061,0.000000 + HudAir + + + + + Air1 + 9.000000 + 9.000000 + 64.000031,0.000061,0.000000 + HudAir + + + + + Air0 + 9.000000 + 9.000000 + 72.000031,0.000061,0.000000 + HudAir + + + + + + XPLevel + 20.000000 + 9.000000 + 81.000000,10.000000,0.000000 + HudXPLevel + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options.xui index 0555a0b9..dacaf87e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options.xui @@ -1,155 +1,155 @@ - -1280.000000 -720.000000 - - - -InGameHostOptions -454.666687 -435.000000 -412.666718,140.000031,0.000000 -CScene_InGameHostOptions -XuiScene -GameOptions\CheckboxFireSpreads -2 - - - -GameOptions -450.000000 -411.000000 -0.000000,16.000000,0.000000 -2 -XuiBlankScene - - - -CheckboxNaturalRegen -402.000000 -34.000000 -22.000000,274.000000,0.000000 -2 -XuiCheckbox -CheckboxTileDrops -ButtonTeleportToPlayer -ButtonTeleportToPlayer - - - - -CheckboxTileDrops -402.000000 -34.000000 -22.000000,240.000000,0.000000 -2 -XuiCheckbox -CheckboxMobLoot -CheckboxNaturalRegen - - - - -CheckboxMobLoot -402.000000 -34.000000 -22.000000,204.000000,0.000000 -2 -XuiCheckbox -CheckboxMobGriefing -CheckboxTileDrops - - - - -CheckboxMobGriefing -402.000000 -34.000000 -22.000000,170.000000,0.000000 -2 -XuiCheckbox -CheckboxMobSpawning -CheckboxMobLoot - - - - -CheckboxMobSpawning -402.000000 -34.000000 -22.000000,136.000000,0.000000 -2 -XuiCheckbox -CheckboxKeepInventory -CheckboxMobGriefing - - - - -CheckboxKeepInventory -402.000000 -34.000000 -22.000000,102.000000,0.000000 -2 -XuiCheckbox -CheckboxDaylightCycle -CheckboxMobSpawning - - - - -CheckboxDaylightCycle -402.000000 -34.000000 -22.000000,68.000000,0.000000 -2 -XuiCheckbox -CheckboxTNT -CheckboxKeepInventory - - - - -CheckboxTNT -402.000000 -34.000000 -22.000000,34.000000,0.000000 -2 -XuiCheckbox -CheckboxFireSpreads -CheckboxDaylightCycle - - - - -CheckboxFireSpreads -402.000000 -34.000000 -22.000000,1.000000,0.000000 -2 -XuiCheckbox -CheckboxTNT - - - - -ButtonTeleportToPlayer -412.000000 -40.000000 -21.000000,311.000000,0.000000 -CheckboxNaturalRegen -ButtonTeleportPlayerToMe - - - - -ButtonTeleportPlayerToMe -412.000000 -40.000000 -21.000000,360.000000,0.000000 -ButtonTeleportToPlayer - - - - + + 1280.000000 + 720.000000 + + + + InGameHostOptions + 454.666687 + 435.000000 + 412.666718,140.000031,0.000000 + CScene_InGameHostOptions + XuiScene + GameOptions\CheckboxFireSpreads + 2 + + + + GameOptions + 450.000000 + 411.000000 + 0.000000,16.000000,0.000000 + 2 + XuiBlankScene + + + + CheckboxNaturalRegen + 402.000000 + 34.000000 + 22.000000,274.000000,0.000000 + 2 + XuiCheckbox + CheckboxTileDrops + ButtonTeleportToPlayer + ButtonTeleportToPlayer + + + + + CheckboxTileDrops + 402.000000 + 34.000000 + 22.000000,240.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobLoot + CheckboxNaturalRegen + + + + + CheckboxMobLoot + 402.000000 + 34.000000 + 22.000000,204.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobGriefing + CheckboxTileDrops + + + + + CheckboxMobGriefing + 402.000000 + 34.000000 + 22.000000,170.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobSpawning + CheckboxMobLoot + + + + + CheckboxMobSpawning + 402.000000 + 34.000000 + 22.000000,136.000000,0.000000 + 2 + XuiCheckbox + CheckboxKeepInventory + CheckboxMobGriefing + + + + + CheckboxKeepInventory + 402.000000 + 34.000000 + 22.000000,102.000000,0.000000 + 2 + XuiCheckbox + CheckboxDaylightCycle + CheckboxMobSpawning + + + + + CheckboxDaylightCycle + 402.000000 + 34.000000 + 22.000000,68.000000,0.000000 + 2 + XuiCheckbox + CheckboxTNT + CheckboxKeepInventory + + + + + CheckboxTNT + 402.000000 + 34.000000 + 22.000000,34.000000,0.000000 + 2 + XuiCheckbox + CheckboxFireSpreads + CheckboxDaylightCycle + + + + + CheckboxFireSpreads + 402.000000 + 34.000000 + 22.000000,1.000000,0.000000 + 2 + XuiCheckbox + CheckboxTNT + + + + + ButtonTeleportToPlayer + 412.000000 + 40.000000 + 21.000000,311.000000,0.000000 + CheckboxNaturalRegen + ButtonTeleportPlayerToMe + + + + + ButtonTeleportPlayerToMe + 412.000000 + 40.000000 + 21.000000,360.000000,0.000000 + ButtonTeleportToPlayer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_480.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_480.xui index 130658ed..527f8407 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_480.xui @@ -1,154 +1,154 @@ - -640.000000 -480.000000 - - - -InGameHostOptions -440.000000 -330.000000 -100.000038,75.000000,0.000000 -CScene_InGameHostOptions -GraphicPanel -GameOptions\CheckboxFireSpreads - - - -GameOptions -440.000000 -330.000000 -2 -XuiBlankScene - - - -CheckboxNaturalRegen -402.000000 -24.000000 -15.000016,206.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTileDrops -ButtonTeleportToPlayer - - - - -CheckboxTileDrops -402.000000 -24.000000 -15.000016,182.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobLoot -CheckboxNaturalRegen - - - - -CheckboxMobLoot -402.000000 -24.000000 -15.000016,158.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobGriefing -CheckboxTileDrops - - - - -CheckboxMobGriefing -402.000000 -24.000000 -15.000016,134.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobSpawning -CheckboxMobLoot - - - - -CheckboxMobSpawning -402.000000 -24.000000 -15.000016,110.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxKeepInventory -CheckboxMobGriefing - - - - -CheckboxKeepInventory -402.000000 -24.000000 -15.000016,86.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxDaylightCycle -CheckboxMobSpawning - - - - -CheckboxDaylightCycle -402.000000 -24.000000 -15.000016,62.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTNT -CheckboxKeepInventory - - - - -CheckboxTNT -402.000000 -24.000000 -15.000016,38.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxFireSpreads -CheckboxDaylightCycle - - - - -CheckboxFireSpreads -402.000000 -24.000000 -15.000016,14.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTNT - - - - -ButtonTeleportToPlayer -410.000000 -36.000000 -15.000020,232.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxNaturalRegen -ButtonTeleportPlayerToMe - - - - -ButtonTeleportPlayerToMe -410.000000 -36.000000 -15.000020,276.000000,0.000000 -XuiMainMenuButton_L_Thin -ButtonTeleportToPlayer - - - - + + 640.000000 + 480.000000 + + + + InGameHostOptions + 440.000000 + 330.000000 + 100.000038,75.000000,0.000000 + CScene_InGameHostOptions + GraphicPanel + GameOptions\CheckboxFireSpreads + + + + GameOptions + 440.000000 + 330.000000 + 2 + XuiBlankScene + + + + CheckboxNaturalRegen + 402.000000 + 24.000000 + 15.000016,206.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTileDrops + ButtonTeleportToPlayer + + + + + CheckboxTileDrops + 402.000000 + 24.000000 + 15.000016,182.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobLoot + CheckboxNaturalRegen + + + + + CheckboxMobLoot + 402.000000 + 24.000000 + 15.000016,158.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobGriefing + CheckboxTileDrops + + + + + CheckboxMobGriefing + 402.000000 + 24.000000 + 15.000016,134.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobSpawning + CheckboxMobLoot + + + + + CheckboxMobSpawning + 402.000000 + 24.000000 + 15.000016,110.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxKeepInventory + CheckboxMobGriefing + + + + + CheckboxKeepInventory + 402.000000 + 24.000000 + 15.000016,86.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxDaylightCycle + CheckboxMobSpawning + + + + + CheckboxDaylightCycle + 402.000000 + 24.000000 + 15.000016,62.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTNT + CheckboxKeepInventory + + + + + CheckboxTNT + 402.000000 + 24.000000 + 15.000016,38.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxFireSpreads + CheckboxDaylightCycle + + + + + CheckboxFireSpreads + 402.000000 + 24.000000 + 15.000016,14.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTNT + + + + + ButtonTeleportToPlayer + 410.000000 + 36.000000 + 15.000020,232.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxNaturalRegen + ButtonTeleportPlayerToMe + + + + + ButtonTeleportPlayerToMe + 410.000000 + 36.000000 + 15.000020,276.000000,0.000000 + XuiMainMenuButton_L_Thin + ButtonTeleportToPlayer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_small.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_small.xui index fc6a75e7..2d762932 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_host_options_small.xui @@ -1,154 +1,154 @@ - -640.000000 -360.000000 - - - -InGameHostOptions -440.000000 -330.000000 -100.000038,0.000000,0.000000 -CScene_InGameHostOptions -GraphicPanel -GameOptions\CheckboxFireSpreads - - - -GameOptions -440.000000 -330.000000 -2 -XuiBlankScene - - - -CheckboxNaturalRegen -402.000000 -24.000000 -15.000016,206.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTileDrops -ButtonTeleportToPlayer - - - - -CheckboxTileDrops -402.000000 -24.000000 -15.000016,182.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobLoot -CheckboxNaturalRegen - - - - -CheckboxMobLoot -402.000000 -24.000000 -15.000016,158.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobGriefing -CheckboxTileDrops - - - - -CheckboxMobGriefing -402.000000 -24.000000 -15.000016,134.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxMobSpawning -CheckboxMobLoot - - - - -CheckboxMobSpawning -402.000000 -24.000000 -15.000016,110.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxKeepInventory -CheckboxMobGriefing - - - - -CheckboxKeepInventory -402.000000 -24.000000 -15.000016,86.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxDaylightCycle -CheckboxMobSpawning - - - - -CheckboxDaylightCycle -402.000000 -24.000000 -15.000016,62.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTNT -CheckboxKeepInventory - - - - -CheckboxTNT -402.000000 -24.000000 -15.000016,38.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxFireSpreads -CheckboxDaylightCycle - - - - -CheckboxFireSpreads -402.000000 -24.000000 -15.000016,14.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTNT - - - - -ButtonTeleportToPlayer -410.000000 -36.000000 -15.000020,232.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxNaturalRegen -ButtonTeleportPlayerToMe - - - - -ButtonTeleportPlayerToMe -410.000000 -36.000000 -15.000020,276.000000,0.000000 -XuiMainMenuButton_L_Thin -ButtonTeleportToPlayer - - - - + + 640.000000 + 360.000000 + + + + InGameHostOptions + 440.000000 + 330.000000 + 100.000038,0.000000,0.000000 + CScene_InGameHostOptions + GraphicPanel + GameOptions\CheckboxFireSpreads + + + + GameOptions + 440.000000 + 330.000000 + 2 + XuiBlankScene + + + + CheckboxNaturalRegen + 402.000000 + 24.000000 + 15.000016,206.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTileDrops + ButtonTeleportToPlayer + + + + + CheckboxTileDrops + 402.000000 + 24.000000 + 15.000016,182.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobLoot + CheckboxNaturalRegen + + + + + CheckboxMobLoot + 402.000000 + 24.000000 + 15.000016,158.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobGriefing + CheckboxTileDrops + + + + + CheckboxMobGriefing + 402.000000 + 24.000000 + 15.000016,134.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxMobSpawning + CheckboxMobLoot + + + + + CheckboxMobSpawning + 402.000000 + 24.000000 + 15.000016,110.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxKeepInventory + CheckboxMobGriefing + + + + + CheckboxKeepInventory + 402.000000 + 24.000000 + 15.000016,86.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxDaylightCycle + CheckboxMobSpawning + + + + + CheckboxDaylightCycle + 402.000000 + 24.000000 + 15.000016,62.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTNT + CheckboxKeepInventory + + + + + CheckboxTNT + 402.000000 + 24.000000 + 15.000016,38.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxFireSpreads + CheckboxDaylightCycle + + + + + CheckboxFireSpreads + 402.000000 + 24.000000 + 15.000016,14.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTNT + + + + + ButtonTeleportToPlayer + 410.000000 + 36.000000 + 15.000020,232.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxNaturalRegen + ButtonTeleportPlayerToMe + + + + + ButtonTeleportPlayerToMe + 410.000000 + 36.000000 + 15.000020,276.000000,0.000000 + XuiMainMenuButton_L_Thin + ButtonTeleportToPlayer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options.xui index 83767a9f..8c4c7d78 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options.xui @@ -1,163 +1,163 @@ - -1280.000000 -720.000000 - - - -InGamePlayerOptions -450.000000 -470.000000 -414.000000,125.000000,0.000000 -CScene_InGamePlayerOptions -XuiScene -CheckboxBuildAndMine - - - -CheckboxHostInvisible -402.000000 -34.000000 -20.000000,362.000000,0.000000 -2 -XuiCheckbox -CheckboxHostHunger -ButtonKick - - - - -CheckboxHostHunger -402.000000 -34.000000 -20.000000,328.000000,0.000000 -2 -XuiCheckbox -CheckboxHostFly -CheckboxHostInvisible - - - - -CheckboxHostFly -402.000000 -34.000000 -20.000000,294.000000,0.000000 -2 -XuiCheckbox -CheckboxTeleport -CheckboxHostHunger - - - - -ButtonKick -412.000000 -40.000000 -20.000013,410.000000,0.000000 -CheckboxHostInvisible - - - - -CheckboxTeleport -402.000000 -34.000000 -20.000000,258.000000,0.000000 -2 -XuiCheckbox -CheckboxOp -CheckboxHostFly - - - - -CheckboxOp -402.000000 -34.000000 -20.000000,224.000000,0.000000 -2 -XuiCheckbox -CheckboxAttackAnimals -CheckboxTeleport - - - - -CheckboxAttackAnimals -402.000000 -34.000000 -20.000000,190.000000,0.000000 -2 -XuiCheckbox -CheckboxAttackPlayers -CheckboxOp - - - - -CheckboxAttackPlayers -402.000000 -34.000000 -20.000000,156.000000,0.000000 -2 -XuiCheckbox -CheckboxUseContainers -CheckboxAttackAnimals - - - - -CheckboxUseContainers -402.000000 -34.000000 -20.000000,122.000000,0.000000 -2 -XuiCheckbox -CheckboxUseDoorsAndSwitches -CheckboxAttackPlayers - - - - -CheckboxUseDoorsAndSwitches -402.000000 -34.000000 -20.000000,88.000000,0.000000 -2 -XuiCheckbox -CheckboxBuildAndMine -CheckboxUseContainers - - - - -CheckboxBuildAndMine -402.000000 -34.000000 -20.000000,54.000000,0.000000 -2 -XuiCheckbox -CheckboxUseDoorsAndSwitches - - - - -Gamertag -362.000000 -40.000000 -56.000000,14.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -Icon -40.000000 -40.000000 -16.000000,14.000000,0.000000 -PlayerColourIcon - - - + + 1280.000000 + 720.000000 + + + + InGamePlayerOptions + 450.000000 + 470.000000 + 414.000000,125.000000,0.000000 + CScene_InGamePlayerOptions + XuiScene + CheckboxBuildAndMine + + + + CheckboxHostInvisible + 402.000000 + 34.000000 + 20.000000,362.000000,0.000000 + 2 + XuiCheckbox + CheckboxHostHunger + ButtonKick + + + + + CheckboxHostHunger + 402.000000 + 34.000000 + 20.000000,328.000000,0.000000 + 2 + XuiCheckbox + CheckboxHostFly + CheckboxHostInvisible + + + + + CheckboxHostFly + 402.000000 + 34.000000 + 20.000000,294.000000,0.000000 + 2 + XuiCheckbox + CheckboxTeleport + CheckboxHostHunger + + + + + ButtonKick + 412.000000 + 40.000000 + 20.000013,410.000000,0.000000 + CheckboxHostInvisible + + + + + CheckboxTeleport + 402.000000 + 34.000000 + 20.000000,258.000000,0.000000 + 2 + XuiCheckbox + CheckboxOp + CheckboxHostFly + + + + + CheckboxOp + 402.000000 + 34.000000 + 20.000000,224.000000,0.000000 + 2 + XuiCheckbox + CheckboxAttackAnimals + CheckboxTeleport + + + + + CheckboxAttackAnimals + 402.000000 + 34.000000 + 20.000000,190.000000,0.000000 + 2 + XuiCheckbox + CheckboxAttackPlayers + CheckboxOp + + + + + CheckboxAttackPlayers + 402.000000 + 34.000000 + 20.000000,156.000000,0.000000 + 2 + XuiCheckbox + CheckboxUseContainers + CheckboxAttackAnimals + + + + + CheckboxUseContainers + 402.000000 + 34.000000 + 20.000000,122.000000,0.000000 + 2 + XuiCheckbox + CheckboxUseDoorsAndSwitches + CheckboxAttackPlayers + + + + + CheckboxUseDoorsAndSwitches + 402.000000 + 34.000000 + 20.000000,88.000000,0.000000 + 2 + XuiCheckbox + CheckboxBuildAndMine + CheckboxUseContainers + + + + + CheckboxBuildAndMine + 402.000000 + 34.000000 + 20.000000,54.000000,0.000000 + 2 + XuiCheckbox + CheckboxUseDoorsAndSwitches + + + + + Gamertag + 362.000000 + 40.000000 + 56.000000,14.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + Icon + 40.000000 + 40.000000 + 16.000000,14.000000,0.000000 + PlayerColourIcon + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_480.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_480.xui index afb11d7f..ce0b0290 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_480.xui @@ -1,164 +1,164 @@ - -640.000000 -480.000000 - - - -InGamePlayerOptions -450.000000 -335.000000 -95.000061,72.500015,0.000000 -CScene_InGamePlayerOptions -GraphicPanel -CheckboxBuildAndMine - - - -CheckboxHostInvisible -402.000000 -22.000000 -20.000000,258.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxHostHunger -ButtonKick - - - - -CheckboxHostHunger -402.000000 -22.000000 -20.000000,236.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxHostFly -CheckboxHostInvisible - - - - -CheckboxHostFly -402.000000 -22.000000 -20.000000,214.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTeleport -CheckboxHostHunger - - - - -ButtonKick -408.000000 -36.000000 -20.000013,284.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxHostInvisible - - - - -CheckboxTeleport -402.000000 -22.000000 -20.000000,191.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxOp -CheckboxHostFly - - - - -CheckboxOp -402.000000 -22.000000 -20.000000,169.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxAttackAnimals -CheckboxTeleport - - - - -CheckboxAttackAnimals -402.000000 -22.000000 -20.000000,147.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxAttackPlayers -CheckboxOp - - - - -CheckboxAttackPlayers -402.000000 -22.000000 -20.000000,125.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseContainers -CheckboxAttackAnimals - - - - -CheckboxUseContainers -402.000000 -22.000000 -20.000000,103.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseDoorsAndSwitches -CheckboxAttackPlayers - - - - -CheckboxUseDoorsAndSwitches -402.000000 -22.000000 -20.000000,81.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxBuildAndMine -CheckboxUseContainers - - - - -CheckboxBuildAndMine -402.000000 -22.000000 -20.000000,59.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseDoorsAndSwitches - - - - -Gamertag -362.000000 -40.000000 -56.000000,14.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -Icon -40.000000 -40.000000 -16.000000,14.000000,0.000000 -PlayerColourIcon - - - + + 640.000000 + 480.000000 + + + + InGamePlayerOptions + 450.000000 + 335.000000 + 95.000061,72.500015,0.000000 + CScene_InGamePlayerOptions + GraphicPanel + CheckboxBuildAndMine + + + + CheckboxHostInvisible + 402.000000 + 22.000000 + 20.000000,258.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxHostHunger + ButtonKick + + + + + CheckboxHostHunger + 402.000000 + 22.000000 + 20.000000,236.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxHostFly + CheckboxHostInvisible + + + + + CheckboxHostFly + 402.000000 + 22.000000 + 20.000000,214.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTeleport + CheckboxHostHunger + + + + + ButtonKick + 408.000000 + 36.000000 + 20.000013,284.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxHostInvisible + + + + + CheckboxTeleport + 402.000000 + 22.000000 + 20.000000,191.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxOp + CheckboxHostFly + + + + + CheckboxOp + 402.000000 + 22.000000 + 20.000000,169.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxAttackAnimals + CheckboxTeleport + + + + + CheckboxAttackAnimals + 402.000000 + 22.000000 + 20.000000,147.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxAttackPlayers + CheckboxOp + + + + + CheckboxAttackPlayers + 402.000000 + 22.000000 + 20.000000,125.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseContainers + CheckboxAttackAnimals + + + + + CheckboxUseContainers + 402.000000 + 22.000000 + 20.000000,103.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseDoorsAndSwitches + CheckboxAttackPlayers + + + + + CheckboxUseDoorsAndSwitches + 402.000000 + 22.000000 + 20.000000,81.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxBuildAndMine + CheckboxUseContainers + + + + + CheckboxBuildAndMine + 402.000000 + 22.000000 + 20.000000,59.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseDoorsAndSwitches + + + + + Gamertag + 362.000000 + 40.000000 + 56.000000,14.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + Icon + 40.000000 + 40.000000 + 16.000000,14.000000,0.000000 + PlayerColourIcon + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_small.xui b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_small.xui index 8a35121f..de238a1b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingame_player_options_small.xui @@ -1,164 +1,164 @@ - -640.000000 -360.000000 - - - -InGamePlayerOptions -450.000000 -335.000000 -95.000061,-7.000000,0.000000 -CScene_InGamePlayerOptions -GraphicPanel -CheckboxBuildAndMine - - - -CheckboxHostInvisible -402.000000 -22.000000 -20.000000,258.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxHostHunger -ButtonKick - - - - -CheckboxHostHunger -402.000000 -22.000000 -20.000000,236.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxHostFly -CheckboxHostInvisible - - - - -CheckboxHostFly -402.000000 -22.000000 -20.000000,214.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxTeleport -CheckboxHostHunger - - - - -ButtonKick -410.000000 -36.000000 -20.000000,284.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxHostInvisible - - - - -CheckboxTeleport -402.000000 -22.000000 -20.000000,191.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxOp -CheckboxHostFly - - - - -CheckboxOp -402.000000 -22.000000 -20.000000,169.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxAttackAnimals -CheckboxTeleport - - - - -CheckboxAttackAnimals -402.000000 -22.000000 -20.000000,147.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxAttackPlayers -CheckboxOp - - - - -CheckboxAttackPlayers -402.000000 -22.000000 -20.000000,125.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseContainers -CheckboxAttackAnimals - - - - -CheckboxUseContainers -402.000000 -22.000000 -20.000000,103.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseDoorsAndSwitches -CheckboxAttackPlayers - - - - -CheckboxUseDoorsAndSwitches -402.000000 -22.000000 -20.000000,81.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxBuildAndMine -CheckboxUseContainers - - - - -CheckboxBuildAndMine -402.000000 -22.000000 -20.000000,59.000000,0.000000 -2 -XuiCheckboxSmall -CheckboxUseDoorsAndSwitches - - - - -Gamertag -362.000000 -40.000000 -56.000000,14.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -Icon -40.000000 -40.000000 -16.000000,14.000000,0.000000 -PlayerColourIcon - - - + + 640.000000 + 360.000000 + + + + InGamePlayerOptions + 450.000000 + 335.000000 + 95.000061,-7.000000,0.000000 + CScene_InGamePlayerOptions + GraphicPanel + CheckboxBuildAndMine + + + + CheckboxHostInvisible + 402.000000 + 22.000000 + 20.000000,258.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxHostHunger + ButtonKick + + + + + CheckboxHostHunger + 402.000000 + 22.000000 + 20.000000,236.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxHostFly + CheckboxHostInvisible + + + + + CheckboxHostFly + 402.000000 + 22.000000 + 20.000000,214.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxTeleport + CheckboxHostHunger + + + + + ButtonKick + 410.000000 + 36.000000 + 20.000000,284.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxHostInvisible + + + + + CheckboxTeleport + 402.000000 + 22.000000 + 20.000000,191.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxOp + CheckboxHostFly + + + + + CheckboxOp + 402.000000 + 22.000000 + 20.000000,169.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxAttackAnimals + CheckboxTeleport + + + + + CheckboxAttackAnimals + 402.000000 + 22.000000 + 20.000000,147.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxAttackPlayers + CheckboxOp + + + + + CheckboxAttackPlayers + 402.000000 + 22.000000 + 20.000000,125.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseContainers + CheckboxAttackAnimals + + + + + CheckboxUseContainers + 402.000000 + 22.000000 + 20.000000,103.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseDoorsAndSwitches + CheckboxAttackPlayers + + + + + CheckboxUseDoorsAndSwitches + 402.000000 + 22.000000 + 20.000000,81.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxBuildAndMine + CheckboxUseContainers + + + + + CheckboxBuildAndMine + 402.000000 + 22.000000 + 20.000000,59.000000,0.000000 + 2 + XuiCheckboxSmall + CheckboxUseDoorsAndSwitches + + + + + Gamertag + 362.000000 + 40.000000 + 56.000000,14.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + Icon + 40.000000 + 40.000000 + 16.000000,14.000000,0.000000 + PlayerColourIcon + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingameinfo.xui b/Minecraft.Client/Common/Media/xuiscene_ingameinfo.xui index 967713a7..3707ba0d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingameinfo.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingameinfo.xui @@ -1,78 +1,78 @@ - -1280.000000 -720.000000 - - - -InGameInfo -1280.000000 -720.000000 -CScene_InGameInfo -XuiBlankScene -GamePlayers - - - -GamePlayers -500.000000 -336.000000 -390.000000,192.000046,0.000000 -CXuiCtrlPassThroughList -XuiPlayerList -GameOptionsButton - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - - -Title -400.000000 -412.000000,202.000046,0.000000 -XuiLabelDarkLeftWrap18 - - - - -GameOptionsButton -500.000000 -60.000000 -390.000000,122.000000,0.000000 -XuiMainMenuButton_L -GamePlayers - - - + + 1280.000000 + 720.000000 + + + + InGameInfo + 1280.000000 + 720.000000 + CScene_InGameInfo + XuiBlankScene + GamePlayers + + + + GamePlayers + 500.000000 + 336.000000 + 390.000000,192.000046,0.000000 + CXuiCtrlPassThroughList + XuiPlayerList + GameOptionsButton + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + + Title + 400.000000 + 412.000000,202.000046,0.000000 + XuiLabelDarkLeftWrap18 + + + + + GameOptionsButton + 500.000000 + 60.000000 + 390.000000,122.000000,0.000000 + XuiMainMenuButton_L + GamePlayers + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingameinfo_480.xui b/Minecraft.Client/Common/Media/xuiscene_ingameinfo_480.xui index 29d60027..b5b70c70 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingameinfo_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingameinfo_480.xui @@ -1,79 +1,79 @@ - -640.000000 -480.000000 - - - -InGameInfo -640.000000 -480.000000 -CScene_InGameInfo -XuiBlankScene -GameOptionsButton - - - -GamePlayers -340.000000 -272.000000 -150.000031,130.000015,0.000000 -CXuiCtrlPassThroughList -XuiPlayerListSmall -GameOptionsButton - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - - -Title -300.000000 -22.000000 -170.000000,144.000000,0.000000 -XuiLabelDark - - - - -GameOptionsButton -340.000000 -36.000000 -150.000000,89.000000,0.000000 -XuiMainMenuButton_L_Thin -GamePlayers - - - + + 640.000000 + 480.000000 + + + + InGameInfo + 640.000000 + 480.000000 + CScene_InGameInfo + XuiBlankScene + GameOptionsButton + + + + GamePlayers + 340.000000 + 272.000000 + 150.000031,130.000015,0.000000 + CXuiCtrlPassThroughList + XuiPlayerListSmall + GameOptionsButton + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + + Title + 300.000000 + 22.000000 + 170.000000,144.000000,0.000000 + XuiLabelDark + + + + + GameOptionsButton + 340.000000 + 36.000000 + 150.000000,89.000000,0.000000 + XuiMainMenuButton_L_Thin + GamePlayers + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_ingameinfo_small.xui b/Minecraft.Client/Common/Media/xuiscene_ingameinfo_small.xui index 70ba7594..fb742bea 100644 --- a/Minecraft.Client/Common/Media/xuiscene_ingameinfo_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_ingameinfo_small.xui @@ -1,90 +1,90 @@ - -640.000000 -360.000000 - - - -InGameInfo -640.000000 -360.000000 -CScene_InGameInfo -XuiBlankScene -GameOptionsButton - - - -GamePlayers -400.000000 -236.000000 -120.000023,52.000011,0.000000 -CXuiCtrlPassThroughList -XuiPlayerListSmall -GameOptionsButton - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - - -Title -358.000000 -26.000000 -140.000000,61.999969,0.000000 -XuiLabelDarkLeftWrap16 - - - - -GameOptionsButton -400.000000 -36.000000 -120.000000,11.000000,0.000000 -XuiMainMenuButton_L_Thin -GamePlayers - - - + + 640.000000 + 360.000000 + + + + InGameInfo + 640.000000 + 360.000000 + CScene_InGameInfo + XuiBlankScene + GameOptionsButton + + + + GamePlayers + 400.000000 + 236.000000 + 120.000023,52.000011,0.000000 + CXuiCtrlPassThroughList + XuiPlayerListSmall + GameOptionsButton + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + + Title + 358.000000 + 26.000000 + 140.000000,61.999969,0.000000 + XuiLabelDarkLeftWrap16 + + + + + GameOptionsButton + 400.000000 + 36.000000 + 120.000000,11.000000,0.000000 + XuiMainMenuButton_L_Thin + GamePlayers + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_intro.xui b/Minecraft.Client/Common/Media/xuiscene_intro.xui index e18cf47c..a59e7cb5 100644 --- a/Minecraft.Client/Common/Media/xuiscene_intro.xui +++ b/Minecraft.Client/Common/Media/xuiscene_intro.xui @@ -1,382 +1,75 @@ - -1280.000000 -720.000000 - - - -SceneIntro -1280.000000 -720.000000 -CScene_Intro -XuiBlackScene - - - -1280.000000 -960.000000 - - -0xff0f0f80 - - - - -0xffffffff - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,278.000000,0.000000,0,278.000000,0.000000,278.000000,0.000000,278.000000,174.000000,0,278.000000,174.000000,278.000000,174.000000,0.000000,174.000000,0,0.000000,174.000000,0.000000,174.000000,0.000000,0.000000,0, - - - - -Logo4J -1280.000000 -720.000000 -0.000000 -false -Graphics\Logos\4JStudios_logo.png -48 - - - - -LogoMojang -1280.000000 -720.000000 -0.000000 -false -true -Graphics\Logos\mojang.png -48 - - - - -LogoMicrosoft -1280.000000 -720.000000 -0.000000 -false -true -Graphics\Logos\MS_Studios_MC.png -48 - - - - -LogoXLA -1280.000000 -720.000000 -0.000000 -true -Graphics\Logos\XBLA_MC.png -48 - - - - -LogoESRB -1280.000000 -720.000000 -0.000000 -false -Graphics\Logos\ESRB_10_Large.png - - - - - -Normal - - - -EndNormal - -stop - - -ESRBFade - - - -ESRBFadeEnd - -stop - - -StartFade - - - -EndFade - -stop - - - -LogoMojang -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -LogoMicrosoft -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -LogoXLA -Opacity -Show - - -0 -0.000000 -true - - - -0 -0.000000 -true - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -Logo4J -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -LogoESRB -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - - - - - -StartFade - - - -EndFade - -stop - - - + + 1280.000000 + 720.000000 + + + + SceneIntro + 1280.000000 + 720.000000 + CScene_Intro + XuiBlackScene + + + + + + + stop + XuiImage + + + + + stop + + + + + stop + + + + + stop + + + + + stop + + + + + + + + + + + + + + + + + + + + LogoXLA + + + + + 1280.000000 + 960.000000 + false + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_intro_480.xui b/Minecraft.Client/Common/Media/xuiscene_intro_480.xui index 36c18b7f..3de2c67a 100644 --- a/Minecraft.Client/Common/Media/xuiscene_intro_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_intro_480.xui @@ -1,389 +1,113 @@ - -640.000000 -480.000000 - - - -SceneIntro -640.000000 -480.000000 -CScene_Intro -XuiBlankScene - - - -640.000000 -480.000000 - - -0xff0f0f80 - - - - -0xffffffff - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,278.000000,0.000000,0,278.000000,0.000000,278.000000,0.000000,278.000000,174.000000,0,278.000000,174.000000,278.000000,174.000000,0.000000,174.000000,0,0.000000,174.000000,0.000000,174.000000,0.000000,0.000000,0, - - - - -Logo4J -640.000000 -480.000000 -0.000000 -false -16 -Graphics\Logos\4JStudios_logo.png -48 - - - - -LogoMojang -640.000000 -480.000000 -0.000000 -false -true -16 -Graphics\Logos\mojang.png -48 - - - - -LogoMicrosoft -640.000000 -480.000000 -0.000000 -false -true -16 -Graphics\Logos\MS_Studios_MC.png -48 - - - - -LogoXLA -640.000000 -480.000000 -0.000000 -true -16 -Graphics\Logos\XBLA_MC.png -48 - - - - -LogoESRB -1280.000000 -720.000000 --89.599922,8.600021,0.000000 -0.640000,0.640000,1.000000 -0.000000 -false -16 -Graphics\Logos\ESRB_10_Large.png - - - - - -Normal - - - -EndNormal - -stop - - -ESRBFade - - - -ESRBFadeEnd - -stop - - -StartFade - - - -EndFade - -stop - - - -LogoMojang -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -LogoMicrosoft -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -LogoXLA -Opacity -Show - - -0 -0.000000 -true - - - -0 -0.000000 -true - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -Logo4J -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - -LogoESRB -Opacity -Show - - -0 -0.000000 -false - - - -0 -0.000000 -false - - - -0 -0.000000 -true - - - -0 -1.000000 -true - - - -0 -1.000000 -true - - - -0 -0.000000 -false - - - - - - - -StartFade - - - -EndFade - -stop - - - + + 640.000000 + 480.000000 + + + + SceneIntro + 640.000000 + 480.000000 + CScene_Intro + XuiBlankScene + + + + + + + stop + + + + + stop + + + LogoMojang + + stop + + + + + + + + + stop + Graphics\Logos\mojang.png + + + + + stop + Graphics\Logos\4JStudios_logo.png + + + + + stop + + + + + + + + + LogoESRB + + + Graphics\Logos\MS_Studios_MC.png + + + + Logo4J + + stop + LogoXLA + + + + + + + + + + + + + stop + XuiImage + + + + + gotostop + + + + + stop + + + + + + + + + + 640.000000 + 480.000000 + false + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory.xui b/Minecraft.Client/Common/Media/xuiscene_inventory.xui index ae0e92ea..3103592d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory.xui @@ -1,1431 +1,1423 @@ - -1280.000000 -720.000000 - - - -XuiSceneInventory -1280.000000 -720.000000 -CXuiSceneInventory -XuiBlankScene -Pointer - - - -EffectsGroup -260.000000 -435.000000 -859.999878,94.000000,0.000000 - - - -Effect10 -260.000000 -58.000000 -0.000000,5.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect9 -260.000000 -58.000000 -0.000000,5.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect8 -260.000000 -58.000000 -0.000000,5.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect7 -260.000000 -58.000000 -0.000000,5.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect6 -260.000000 -58.000000 -0.000000,67.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect5 -260.000000 -58.000000 -0.000000,129.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect4 -260.000000 -58.000000 -0.000000,191.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect3 -260.000000 -58.000000 -0.000000,253.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect2 -260.000000 -58.000000 -0.000000,315.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - -Effect1 -260.000000 -58.000000 -0.000000,377.000000,0.000000 -CXuiCtrlMobEffect -MobEffect - - - - - -Group -431.000000 -435.000000 -424.000000,94.000000,0.000000 -15 -XuiScene -Pointer - - - -ArmourBackground -42.000000 -168.000000 -125.000000,26.000000,0.000000 -InventoryArmourBackground - - - - -Armor -71.000000 -172.000000 -125.000023,26.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridArmour - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - - -Character -126.000000 -168.000000 -180.000000,26.000000,0.000000 -3 -CharacterPanel -..\Images\img1.png - - - - -Inventory -382.000000 -150.000000 -25.000000,230.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -381.000000 -50.000000 -25.000000,370.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -375.000000 -32.000000 -25.000000,200.000000,0.000000 -LabelContainerSceneLeft - - - - -Pointer -42.000000 -42.000000 --185.000000,-84.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -424.000000,94.000000,0.000000 - - - -0 -424.000000,94.000000,0.000000 - - - -2 -100 --100 -50 -424.000000,94.000000,0.000000 - - - -0 -160.000000,94.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,94.000000,0.000000 - - - -0 -424.000000,94.000000,0.000000 - - - -EffectsGroup -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneInventory + 1280.000000 + 720.000000 + CXuiSceneInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 8 + + + + none + 8 + + + + easein + 8 + + + + none + 17 + + + + easein + 17 + + + + none + 8 + + + + EffectsGroup + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 0 + + + + none + 0 + + + + none + 0 + + + + none + 1065353216 + + + + + + EffectsGroup + 260.000000 + 435.000000 + 859.999878,94.000000,0.000000 + + + + Effect10 + 260.000000 + 58.000000 + 0.000000,5.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect9 + 260.000000 + 58.000000 + 0.000000,5.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect8 + 260.000000 + 58.000000 + 0.000000,5.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect7 + 260.000000 + 58.000000 + 0.000000,5.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect6 + 260.000000 + 58.000000 + 0.000000,67.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect5 + 260.000000 + 58.000000 + 0.000000,129.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect4 + 260.000000 + 58.000000 + 0.000000,191.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect3 + 260.000000 + 58.000000 + 0.000000,253.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect2 + 260.000000 + 58.000000 + 0.000000,315.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + Effect1 + 260.000000 + 58.000000 + 0.000000,377.000000,0.000000 + CXuiCtrlMobEffect + MobEffect + + + + + + Group + 431.000000 + 435.000000 + 424.000000,94.000000,0.000000 + 15 + XuiScene + Pointer + + + + ArmourBackground + 42.000000 + 168.000000 + 125.000000,26.000000,0.000000 + InventoryArmourBackground + + + + + Armor + 71.000000 + 172.000000 + 125.000023,26.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridArmour + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + + Character + 126.000000 + 168.000000 + 180.000000,26.000000,0.000000 + 3 + CharacterPanel + ..\Images\img1.png + + + + + Inventory + 382.000000 + 150.000000 + 25.000000,230.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 381.000000 + 50.000000 + 25.000000,370.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 375.000000 + 32.000000 + 25.000000,200.000000,0.000000 + LabelContainerSceneLeft + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-84.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory_480.xui b/Minecraft.Client/Common/Media/xuiscene_inventory_480.xui index 0e03c19c..e33a340f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory_480.xui @@ -1,1856 +1,1848 @@ - -640.000000 -480.000000 - - - -XuiSceneInventory -640.000000 -480.000000 -CXuiSceneInventory -XuiBlankScene -Pointer - - - -EffectsGroup -160.000000 -280.000000 -454.999878,105.000000,0.000000 - - - -Effect10 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect9 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect8 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect7 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect6 -160.000000 -36.000000 -0.000000,44.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect5 -160.000000 -36.000000 -0.000000,84.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect4 -160.000000 -36.000000 -0.000000,124.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect3 -160.000000 -36.000000 -0.000000,164.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect2 -160.000000 -36.000000 -0.000000,204.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect1 -160.000000 -36.000000 -0.000000,244.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - - -Group -260.000000 -290.000000 -190.000015,96.000000,0.000000 -15 -GraphicPanel -Pointer - - - -ArmourBackground -26.000000 -104.000000 -74.000000,18.000000,0.000000 -InventoryArmourBackgroundSmall - - - - -Armor -26.000000 -104.000000 -74.000000,18.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridArmour26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - - -Character -78.000000 -104.000000 -108.000000,18.000000,0.000000 -3 -CharacterPanel -..\Images\img1.png - - - - -Inventory -234.000000 -80.000000 -12.000000,160.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -235.000000 -12.000000,250.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -230.000000 -22.000000 -12.000000,139.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000015,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,96.000000,0.000000 - - - -0 -32.000000,96.000000,0.000000 - - - -2 -100 --100 -50 -32.000000,96.000000,0.000000 - - - -0 -190.000000,96.000000,0.000000 - - - -EffectsGroup -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneInventory + 640.000000 + 480.000000 + CXuiSceneInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 8 + + + + none + 16 + + + + easein + 16 + + + + none + 17 + + + + easein + 17 + + + + none + 16 + + + + EffectsGroup + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 0 + + + + none + 0 + + + + none + 0 + + + + none + 1065353216 + + + + + + EffectsGroup + 160.000000 + 280.000000 + 454.999878,105.000000,0.000000 + + + + Effect10 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect9 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect8 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect7 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect6 + 160.000000 + 36.000000 + 0.000000,44.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect5 + 160.000000 + 36.000000 + 0.000000,84.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect4 + 160.000000 + 36.000000 + 0.000000,124.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect3 + 160.000000 + 36.000000 + 0.000000,164.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect2 + 160.000000 + 36.000000 + 0.000000,204.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect1 + 160.000000 + 36.000000 + 0.000000,244.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + + Group + 260.000000 + 290.000000 + 190.000015,96.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + ArmourBackground + 26.000000 + 104.000000 + 74.000000,18.000000,0.000000 + InventoryArmourBackgroundSmall + + + + + Armor + 26.000000 + 104.000000 + 74.000000,18.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridArmour26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + + Character + 78.000000 + 104.000000 + 108.000000,18.000000,0.000000 + 3 + CharacterPanel + ..\Images\img1.png + + + + + Inventory + 234.000000 + 80.000000 + 12.000000,160.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 235.000000 + 12.000000,250.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 230.000000 + 22.000000 + 12.000000,139.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory_creative.xui b/Minecraft.Client/Common/Media/xuiscene_inventory_creative.xui index 6b653f78..8cba54ff 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory_creative.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory_creative.xui @@ -1,7462 +1,7455 @@ - -1280.000000 -720.000000 - - - -XuiSceneInventory -1280.000000 -720.000000 -CXuiSceneInventoryCreative -XuiBlankScene -Pointer - - - -Group -643.000000 -490.000000 -319.000000,115.000000,0.000000 -15 -XuiBlankScene -Pointer - - - -MainPanel -643.000000 -490.000000 -CreativeInventory - - - - -UseRow -486.000000 -54.000000 -52.000000,411.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical54 - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -Container -542.000000 -270.000000 -24.000000,121.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical54 - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - -control_ListItem -54.000000 -54.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton54 -22594 -4 - - - - - -Group_Tab_Images -643.000000 -78.000000 - - - -TabImage1 -83.000000 -78.000000 -0.000000,-2.000000,0.000000 -CreativeInventoryTabLeft - - - - -TabImage2 -83.000000 -78.000000 -80.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage3 -83.000000 -78.000000 -160.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage4 -83.000000 -78.000000 -240.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage5 -83.000000 -78.000000 -320.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage6 -83.000000 -78.000000 -400.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage7 -83.000000 -78.000000 -480.000000,-2.000000,0.000000 -CreativeInventoryTabMiddle - - - - -TabImage8 -83.000000 -78.000000 -560.000000,-2.000000,0.000000 -CreativeInventoryTabRight - - - - - -Group_Tab_Icons -1280.000000 -200.000000 --320.000000,-92.000000,0.000000 - - - -Icon_1 -48.000000 -48.000000 -337.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -48.000000 -48.000000 -417.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -48.000000 -48.000000 -497.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -48.000000 -48.000000 -577.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -48.000000 -48.000000 -657.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -48.000000 -48.000000 -737.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -48.000000 -48.000000 -817.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_8 -48.000000 -48.000000 -897.000000,108.000000,0.000000 -false -CraftingCategoryIcon - - - - - -InventoryText -540.000000 -32.000000 -51.000000,85.000000,0.000000 -false -XuiLabelDarkCentred - - - - -XuiSlider -34.000000 -270.000000 -582.000000,120.000000,0.000000 -true -XuiSliderVertical -true - - - - -ScrollUp -32.000000 -22.000000 -583.000000,100.000000,0.000000 -XuiScrollEndUp - - - - -ScrollDown -32.000000 -22.000000 -583.000000,391.000000,0.000000 -XuiScrollEnd - - - - -Pointer -42.000000 -42.000000 --504.000000,86.059990,0.000000 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -319.000000,115.000000,0.000000 - - - -0 -319.000000,115.000000,0.000000 - - - -2 -100 --100 -50 -319.000000,115.000000,0.000000 - - - -0 -100.000000,115.000000,0.000000 - - - -2 -100 --100 -50 -100.000000,115.000000,0.000000 - - - -0 -319.000000,115.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneInventory + 1280.000000 + 720.000000 + CXuiSceneInventoryCreative + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 28 + + + + easein + 28 + + + + none + 0 + + + + + + Group + 643.000000 + 490.000000 + 319.000000,115.000000,0.000000 + 15 + XuiBlankScene + Pointer + + + + MainPanel + 643.000000 + 490.000000 + CreativeInventory + + + + + UseRow + 486.000000 + 54.000000 + 52.000000,411.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical54 + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + + Container + 542.000000 + 270.000000 + 24.000000,121.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical54 + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + control_ListItem + 54.000000 + 54.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton54 + 22594 + 4 + + + + + + Group_Tab_Images + 643.000000 + 78.000000 + + + + TabImage1 + 83.000000 + 78.000000 + 0.000000,-2.000000,0.000000 + CreativeInventoryTabLeft + + + + + TabImage2 + 83.000000 + 78.000000 + 80.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage3 + 83.000000 + 78.000000 + 160.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage4 + 83.000000 + 78.000000 + 240.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage5 + 83.000000 + 78.000000 + 320.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage6 + 83.000000 + 78.000000 + 400.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage7 + 83.000000 + 78.000000 + 480.000000,-2.000000,0.000000 + CreativeInventoryTabMiddle + + + + + TabImage8 + 83.000000 + 78.000000 + 560.000000,-2.000000,0.000000 + CreativeInventoryTabRight + + + + + + Group_Tab_Icons + 1280.000000 + 200.000000 + -320.000000,-92.000000,0.000000 + + + + Icon_1 + 48.000000 + 48.000000 + 337.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 48.000000 + 48.000000 + 417.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 48.000000 + 48.000000 + 497.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 48.000000 + 48.000000 + 577.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 48.000000 + 48.000000 + 657.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 48.000000 + 48.000000 + 737.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 48.000000 + 48.000000 + 817.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_8 + 48.000000 + 48.000000 + 897.000000,108.000000,0.000000 + false + CraftingCategoryIcon + + + + + + InventoryText + 540.000000 + 32.000000 + 51.000000,85.000000,0.000000 + false + XuiLabelDarkCentred + + + + + XuiSlider + 34.000000 + 270.000000 + 582.000000,120.000000,0.000000 + true + XuiSliderVertical + true + + + + + ScrollUp + 32.000000 + 22.000000 + 583.000000,100.000000,0.000000 + XuiScrollEndUp + + + + + ScrollDown + 32.000000 + 22.000000 + 583.000000,391.000000,0.000000 + XuiScrollEnd + + + + + Pointer + 42.000000 + 42.000000 + -504.000000,86.059990,0.000000 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory_creative_480.xui b/Minecraft.Client/Common/Media/xuiscene_inventory_creative_480.xui index 55d2c520..22ab39b0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory_creative_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory_creative_480.xui @@ -1,7020 +1,7013 @@ - -640.000000 -480.000000 - - - -XuiSceneCreativeInventory -640.000000 -480.000000 -CXuiSceneInventoryCreative -XuiBlankScene -Pointer - - - -Group -418.000000 -294.000000 -111.000000,80.000000,0.000000 -15 -XuiBlankScene -Pointer - - - -MainPanel -418.000000 -294.000000 -CreativeInventorySmall - - - - -UseRow -292.000000 -32.000000 -47.000000,246.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -Container -322.000000 -162.000000 -32.000008,75.000015,0.000000 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -Group_Tab_Images -412.000000 -60.000000 -3.999992,-5.999985,0.000000 - - - -TabImage1 -54.000000 -56.000000 --4.000000,4.000000,0.000000 -CreativeInventoryTabLeftSmall - - - - -TabImage2 -54.000000 -56.000000 -48.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage3 -54.000000 -56.000000 -100.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage4 -54.000000 -56.000000 -152.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage5 -54.000000 -56.000000 -204.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage6 -54.000000 -56.000000 -256.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage7 -54.000000 -56.000000 -308.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage8 -54.000000 -56.000000 -360.000000,4.000000,0.000000 -CreativeInventoryTabRightSmall - - - - - -Group_Tab_Icons -412.000000 -60.000000 -3.999992,-5.999985,0.000000 - - - -Icon_1 -32.000000 -32.000000 -8.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -60.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -112.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -164.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -216.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -268.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -320.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_8 -32.000000 -32.000000 -372.000000,18.000000,0.000000 -false -CraftingCategoryIcon - - - - - -InventoryText -360.000000 -22.000000 -29.000000,55.000000,0.000000 -false -XuiLabelDarkCentredSmall - - - - -ScrollDown -32.000000 -22.000000 -368.000000,238.000000,0.000000 -XuiScrollEnd - - - - -ScrollUp -32.000000 -22.000000 -368.000000,56.000000,0.000000 -XuiScrollEndUp - - - - -XuiSlider -32.000000 -162.000000 -368.000000,76.000000,0.000000 -XuiSliderVerticalSmall -true - - - - -Pointer -26.000000 -26.000000 --161.000000,60.000015,0.000000 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -111.000000,80.000000,0.000000 - - - -0 -111.000000,80.000000,0.000000 - - - -2 -100 --100 -50 -111.000000,80.000000,0.000000 - - - -0 -31.000000,80.000000,0.000000 - - - -2 -100 --100 -50 -31.000000,80.000000,0.000000 - - - -0 -111.000000,80.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneCreativeInventory + 640.000000 + 480.000000 + CXuiSceneInventoryCreative + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 28 + + + + easein + 28 + + + + none + 0 + + + + + + Group + 418.000000 + 294.000000 + 111.000000,80.000000,0.000000 + 15 + XuiBlankScene + Pointer + + + + MainPanel + 418.000000 + 294.000000 + CreativeInventorySmall + + + + + UseRow + 292.000000 + 32.000000 + 47.000000,246.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + + Container + 322.000000 + 162.000000 + 32.000008,75.000015,0.000000 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + + Group_Tab_Images + 412.000000 + 60.000000 + 3.999992,-5.999985,0.000000 + + + + TabImage1 + 54.000000 + 56.000000 + -4.000000,4.000000,0.000000 + CreativeInventoryTabLeftSmall + + + + + TabImage2 + 54.000000 + 56.000000 + 48.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage3 + 54.000000 + 56.000000 + 100.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage4 + 54.000000 + 56.000000 + 152.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage5 + 54.000000 + 56.000000 + 204.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage6 + 54.000000 + 56.000000 + 256.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage7 + 54.000000 + 56.000000 + 308.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage8 + 54.000000 + 56.000000 + 360.000000,4.000000,0.000000 + CreativeInventoryTabRightSmall + + + + + + Group_Tab_Icons + 412.000000 + 60.000000 + 3.999992,-5.999985,0.000000 + + + + Icon_1 + 32.000000 + 32.000000 + 8.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 60.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 112.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 164.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 216.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 268.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 320.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_8 + 32.000000 + 32.000000 + 372.000000,18.000000,0.000000 + false + CraftingCategoryIcon + + + + + + InventoryText + 360.000000 + 22.000000 + 29.000000,55.000000,0.000000 + false + XuiLabelDarkCentredSmall + + + + + ScrollDown + 32.000000 + 22.000000 + 368.000000,238.000000,0.000000 + XuiScrollEnd + + + + + ScrollUp + 32.000000 + 22.000000 + 368.000000,56.000000,0.000000 + XuiScrollEndUp + + + + + XuiSlider + 32.000000 + 162.000000 + 368.000000,76.000000,0.000000 + XuiSliderVerticalSmall + true + + + + + Pointer + 26.000000 + 26.000000 + -161.000000,60.000015,0.000000 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory_creative_small.xui b/Minecraft.Client/Common/Media/xuiscene_inventory_creative_small.xui index 32858942..ac69c578 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory_creative_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory_creative_small.xui @@ -1,6166 +1,6159 @@ - -640.000000 -360.000000 - - - -XuiSceneCreativeInventory -640.000000 -360.000000 -CXuiSceneInventoryCreative -XuiBlankScene -Pointer - - - -Group -418.000000 -294.000000 -111.000000,0.000000,0.000000 -15 -XuiBlankScene -Pointer - - - -MainPanel -418.000000 -294.000000 -CreativeInventorySmall - - - - -UseRow -292.000000 -32.000000 -47.000000,247.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Container -322.000000 -162.000000 -32.000008,76.000000,0.000000 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -Group_Tab_Images -412.000000 -60.000000 -3.999992,-5.999998,0.000000 - - - -TabImage1 -54.000000 -56.000000 --4.000000,4.000000,0.000000 -CreativeInventoryTabLeftSmall - - - - -TabImage2 -54.000000 -56.000000 -48.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage3 -54.000000 -56.000000 -100.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage4 -54.000000 -56.000000 -152.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage5 -54.000000 -56.000000 -204.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage6 -54.000000 -56.000000 -256.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage7 -54.000000 -56.000000 -308.000000,4.000000,0.000000 -CreativeInventoryTabMiddleSmall - - - - -TabImage8 -54.000000 -56.000000 -360.000000,4.000000,0.000000 -CreativeInventoryTabRightSmall - - - - - -Group_Tab_Icons -412.000000 -60.000000 -3.999992,-5.999998,0.000000 - - - -Icon_1 -32.000000 -32.000000 -8.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_2 -32.000000 -32.000000 -60.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_3 -32.000000 -32.000000 -112.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_4 -32.000000 -32.000000 -164.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_5 -32.000000 -32.000000 -216.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_6 -32.000000 -32.000000 -268.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_7 -32.000000 -32.000000 -320.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - -Icon_8 -32.000000 -32.000000 -372.000000,20.000000,0.000000 -false -CraftingCategoryIcon - - - - - -InventoryText -360.000000 -22.000000 -29.000000,56.000000,0.000000 -false -XuiLabelDarkCentredSmall - - - - -ScrollDown -32.000000 -22.000000 -368.000000,238.000000,0.000000 -XuiScrollEnd - - - - -ScrollUp -32.000000 -22.000000 -368.000000,56.000000,0.000000 -XuiScrollEndUp - - - - -XuiSlider -32.000000 -162.000000 -368.000000,76.000000,0.000000 -XuiSliderVerticalSmall -true - - - - -Pointer -26.000000 -26.000000 --161.000000,6.000002,0.000000 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -111.000000,0.000000,0.000000 - - - -0 -111.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -111.000000,0.000000,0.000000 - - - -0 -31.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -31.000000,0.000000,0.000000 - - - -0 -111.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneCreativeInventory + 640.000000 + 360.000000 + CXuiSceneInventoryCreative + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 28 + + + + easein + 28 + + + + none + 0 + + + + + + Group + 418.000000 + 294.000000 + 111.000000,0.000000,0.000000 + 15 + XuiBlankScene + Pointer + + + + MainPanel + 418.000000 + 294.000000 + CreativeInventorySmall + + + + + UseRow + 292.000000 + 32.000000 + 47.000000,247.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Container + 322.000000 + 162.000000 + 32.000008,76.000000,0.000000 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + Group_Tab_Images + 412.000000 + 60.000000 + 3.999992,-5.999998,0.000000 + + + + TabImage1 + 54.000000 + 56.000000 + -4.000000,4.000000,0.000000 + CreativeInventoryTabLeftSmall + + + + + TabImage2 + 54.000000 + 56.000000 + 48.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage3 + 54.000000 + 56.000000 + 100.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage4 + 54.000000 + 56.000000 + 152.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage5 + 54.000000 + 56.000000 + 204.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage6 + 54.000000 + 56.000000 + 256.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage7 + 54.000000 + 56.000000 + 308.000000,4.000000,0.000000 + CreativeInventoryTabMiddleSmall + + + + + TabImage8 + 54.000000 + 56.000000 + 360.000000,4.000000,0.000000 + CreativeInventoryTabRightSmall + + + + + + Group_Tab_Icons + 412.000000 + 60.000000 + 3.999992,-5.999998,0.000000 + + + + Icon_1 + 32.000000 + 32.000000 + 8.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_2 + 32.000000 + 32.000000 + 60.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_3 + 32.000000 + 32.000000 + 112.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_4 + 32.000000 + 32.000000 + 164.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_5 + 32.000000 + 32.000000 + 216.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_6 + 32.000000 + 32.000000 + 268.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_7 + 32.000000 + 32.000000 + 320.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + Icon_8 + 32.000000 + 32.000000 + 372.000000,20.000000,0.000000 + false + CraftingCategoryIcon + + + + + + InventoryText + 360.000000 + 22.000000 + 29.000000,56.000000,0.000000 + false + XuiLabelDarkCentredSmall + + + + + ScrollDown + 32.000000 + 22.000000 + 368.000000,238.000000,0.000000 + XuiScrollEnd + + + + + ScrollUp + 32.000000 + 22.000000 + 368.000000,56.000000,0.000000 + XuiScrollEndUp + + + + + XuiSlider + 32.000000 + 162.000000 + 368.000000,76.000000,0.000000 + XuiSliderVerticalSmall + true + + + + + Pointer + 26.000000 + 26.000000 + -161.000000,6.000002,0.000000 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_inventory_small.xui b/Minecraft.Client/Common/Media/xuiscene_inventory_small.xui index 3d36995b..804598ef 100644 --- a/Minecraft.Client/Common/Media/xuiscene_inventory_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_inventory_small.xui @@ -1,1643 +1,1635 @@ - -640.000000 -360.000000 - - - -XuiSceneInventory -640.000000 -360.000000 -CXuiSceneInventory -XuiBlankScene -Pointer - - - -EffectsGroup -160.000000 -280.000000 -454.999878,0.000000,0.000000 - - - -Effect10 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect9 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect8 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect7 -160.000000 -36.000000 -0.000000,4.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect6 -160.000000 -36.000000 -0.000000,44.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect5 -160.000000 -36.000000 -0.000000,84.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect4 -160.000000 -36.000000 -0.000000,124.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect3 -160.000000 -36.000000 -0.000000,164.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect2 -160.000000 -36.000000 -0.000000,204.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - -Effect1 -160.000000 -36.000000 -0.000000,244.000000,0.000000 -CXuiCtrlMobEffect -MobEffect_Small - - - - - -Group -260.000000 -280.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -ArmourBackground -26.000000 -104.000000 -74.000000,17.000000,0.000000 -InventoryArmourBackgroundSmall - - - - -Armor -27.377594 -106.259193 -74.000000,17.000000,0.000000 -3 -CXuiCtrlSlotList -ItemGridArmour26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButtonArmour26 -..\Images\img1.png -22594 -4 - - - - - -Character -78.000000 -104.000000 -108.000000,17.000000,0.000000 -3 -CharacterPanel -..\Images\img1.png - - - - -Inventory -234.000000 -80.000000 -12.000000,151.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -235.000000 -12.000000,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -230.000000 -22.000000 -12.000000,130.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -104.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -104.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -EffectsGroup -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneInventory + 640.000000 + 360.000000 + CXuiSceneInventory + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 8 + + + + none + 8 + + + + easein + 8 + + + + none + 18 + + + + easein + 18 + + + + none + 8 + + + + EffectsGroup + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 0 + + + + none + 0 + + + + none + 0 + + + + none + 1065353216 + + + + + + EffectsGroup + 160.000000 + 280.000000 + 454.999878,0.000000,0.000000 + + + + Effect10 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect9 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect8 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect7 + 160.000000 + 36.000000 + 0.000000,4.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect6 + 160.000000 + 36.000000 + 0.000000,44.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect5 + 160.000000 + 36.000000 + 0.000000,84.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect4 + 160.000000 + 36.000000 + 0.000000,124.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect3 + 160.000000 + 36.000000 + 0.000000,164.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect2 + 160.000000 + 36.000000 + 0.000000,204.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + Effect1 + 160.000000 + 36.000000 + 0.000000,244.000000,0.000000 + CXuiCtrlMobEffect + MobEffect_Small + + + + + + Group + 260.000000 + 280.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + ArmourBackground + 26.000000 + 104.000000 + 74.000000,17.000000,0.000000 + InventoryArmourBackgroundSmall + + + + + Armor + 27.377594 + 106.259193 + 74.000000,17.000000,0.000000 + 3 + CXuiCtrlSlotList + ItemGridArmour26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButtonArmour26 + ..\Images\img1.png + 22594 + 4 + + + + + + Character + 78.000000 + 104.000000 + 108.000000,17.000000,0.000000 + 3 + CharacterPanel + ..\Images\img1.png + + + + + Inventory + 234.000000 + 80.000000 + 12.000000,151.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 235.000000 + 12.000000,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 230.000000 + 22.000000 + 12.000000,130.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_leaderboards.xui b/Minecraft.Client/Common/Media/xuiscene_leaderboards.xui index 7d75c5b9..68db023c 100644 --- a/Minecraft.Client/Common/Media/xuiscene_leaderboards.xui +++ b/Minecraft.Client/Common/Media/xuiscene_leaderboards.xui @@ -1,176 +1,176 @@ - -1280.000000 -720.000000 - - - -SceneLeaderboards -1280.000000 -720.000000 -CScene_Leaderboards -XuiMenuScene -XuiListGamers - - - -Background3 -320.000000 -36.000000 -846.000000,54.000000,0.000000 -LeaderboardHeaderPanel - - - - -Background2 -398.000000 -36.000000 -441.000000,54.000000,0.000000 -LeaderboardHeaderPanel - - - - -Background1 -320.000000 -36.000000 -114.000000,54.000000,0.000000 -LeaderboardHeaderPanel - - - - -XuiListGamers -1084.000000 -518.000000 -98.000000,90.000015,0.000000 -4 -CXuiCtrlPassThroughList -XuiListLeaderboard - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiLeaderboardEntry - - - - -control_ListItem -940.000000 -44.000000 -20.000032,71.000000,0.000000 -15 -false -XuiLeaderboardEntry -22594 - - - - -control_ListItem -940.000000 -44.000000 -20.000032,71.000000,0.000000 -15 -false -XuiLeaderboardEntry -22594 - - - - -control_ListItem -940.000000 -44.000000 -20.000032,71.000000,0.000000 -15 -false -XuiLeaderboardEntry -22594 - - - - -control_ListItem -940.000000 -44.000000 -20.000032,71.000000,0.000000 -15 -false -XuiLeaderboardEntry -22594 - - - - - -XuiTextFilter -300.000000 -20.000000 -124.000000,62.000000,0.000000 -LabelLeaderboardTitle - - - - -XuiTextLeaderboard -266.000000 -20.000000 -496.000000,62.000000,0.000000 -LabelLeaderboardTitle - - - - -XuiTextEntries -300.000000 -20.000000 -856.000000,62.000000,0.000000 -LabelLeaderboardTitle - - - - -XuiTextInfo -366.000000 -106.000000 -457.000000,304.000000,0.000000 -LabelLeaderboardWaitingText - - - - -LSIcon -50.000000 -32.000000 -446.000000,54.000000,0.000000 -IconLStickSides - - - - -RBIcon -32.000000 -32.000000 -800.000000,58.000000,0.000000 -IconRBumper - - - - -LBIcon -32.000000 -32.000000 -764.000000,58.000000,0.000000 -IconLBumper - - - + + 1280.000000 + 720.000000 + + + + SceneLeaderboards + 1280.000000 + 720.000000 + CScene_Leaderboards + XuiMenuScene + XuiListGamers + + + + Background3 + 320.000000 + 36.000000 + 846.000000,54.000000,0.000000 + LeaderboardHeaderPanel + + + + + Background2 + 398.000000 + 36.000000 + 441.000000,54.000000,0.000000 + LeaderboardHeaderPanel + + + + + Background1 + 320.000000 + 36.000000 + 114.000000,54.000000,0.000000 + LeaderboardHeaderPanel + + + + + XuiListGamers + 1084.000000 + 518.000000 + 98.000000,90.000015,0.000000 + 4 + CXuiCtrlPassThroughList + XuiListLeaderboard + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiLeaderboardEntry + + + + + control_ListItem + 940.000000 + 44.000000 + 20.000032,71.000000,0.000000 + 15 + false + XuiLeaderboardEntry + 22594 + + + + + control_ListItem + 940.000000 + 44.000000 + 20.000032,71.000000,0.000000 + 15 + false + XuiLeaderboardEntry + 22594 + + + + + control_ListItem + 940.000000 + 44.000000 + 20.000032,71.000000,0.000000 + 15 + false + XuiLeaderboardEntry + 22594 + + + + + control_ListItem + 940.000000 + 44.000000 + 20.000032,71.000000,0.000000 + 15 + false + XuiLeaderboardEntry + 22594 + + + + + + XuiTextFilter + 300.000000 + 20.000000 + 124.000000,62.000000,0.000000 + LabelLeaderboardTitle + + + + + XuiTextLeaderboard + 266.000000 + 20.000000 + 496.000000,62.000000,0.000000 + LabelLeaderboardTitle + + + + + XuiTextEntries + 300.000000 + 20.000000 + 856.000000,62.000000,0.000000 + LabelLeaderboardTitle + + + + + XuiTextInfo + 366.000000 + 106.000000 + 457.000000,304.000000,0.000000 + LabelLeaderboardWaitingText + + + + + LSIcon + 50.000000 + 32.000000 + 446.000000,54.000000,0.000000 + IconLStickSides + + + + + RBIcon + 32.000000 + 32.000000 + 800.000000,58.000000,0.000000 + IconRBumper + + + + + LBIcon + 32.000000 + 32.000000 + 764.000000,58.000000,0.000000 + IconLBumper + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_leaderboards_480.xui b/Minecraft.Client/Common/Media/xuiscene_leaderboards_480.xui index b78b496b..709eca18 100644 --- a/Minecraft.Client/Common/Media/xuiscene_leaderboards_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_leaderboards_480.xui @@ -1,180 +1,180 @@ - -640.000000 -480.000000 - - - -SceneLeaderboards -640.000000 -480.000000 -CScene_Leaderboards -XuiMenuScene -XuiListGamers - - - -Background3 -170.000000 -50.000000 -422.000000,36.000000,0.000000 -LeaderboardHeaderPanel - - - - -Background2 -200.000000 -50.000000 -222.000000,36.000000,0.000000 -LeaderboardHeaderPanel - - - - -Background1 -170.000000 -50.000000 -50.000000,36.000000,0.000000 -LeaderboardHeaderPanel - - - - -XuiListGamers -560.000000 -313.000000 -40.000000,90.000000,0.000000 -4 -CXuiCtrlPassThroughList -XuiListLeaderboardSmall - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiLeaderboardEntry - - - - -control_ListItem -540.000000 -22.000000 -10.000000,52.000000,0.000000 -15 -false -XuiLeaderboardEntrySmall -22594 -0.000000,2.000000,0.000000 - - - - -control_ListItem -540.000000 -22.000000 -10.000000,52.000000,0.000000 -15 -false -XuiLeaderboardEntrySmall -22594 -0.000000,2.000000,0.000000 - - - - -control_ListItem -540.000000 -22.000000 -10.000000,52.000000,0.000000 -15 -false -XuiLeaderboardEntrySmall -22594 -0.000000,2.000000,0.000000 - - - - -control_ListItem -540.000000 -22.000000 -10.000000,52.000000,0.000000 -15 -false -XuiLeaderboardEntrySmall -22594 -0.000000,2.000000,0.000000 - - - - - -XuiTextFilter -154.000000 -40.000000 -58.000000,40.000000,0.000000 -LabelLeaderboardTitleSmall - - - - -XuiTextLeaderboard -120.000000 -40.000000 -252.000000,40.000000,0.000000 -LabelLeaderboardTitleSmall - - - - -XuiTextEntries -154.000000 -40.000000 -432.000000,40.000000,0.000000 -LabelLeaderboardTitleSmall - - - - -XuiTextInfo -366.000000 -106.000000 -137.000000,187.000000,0.000000 -LabelLeaderboardWaitingTextSmall - - - - -LSIcon -28.000000 -20.000000 -224.000000,40.000000,0.000000 -IconLStickSides - - - - -RBIcon -24.000000 -20.000000 -395.000000,40.000000,0.000000 -IconRBumper - - - - -LBIcon -24.000000 -20.000000 -373.000000,40.000000,0.000000 -IconLBumper - - - + + 640.000000 + 480.000000 + + + + SceneLeaderboards + 640.000000 + 480.000000 + CScene_Leaderboards + XuiMenuScene + XuiListGamers + + + + Background3 + 170.000000 + 50.000000 + 422.000000,36.000000,0.000000 + LeaderboardHeaderPanel + + + + + Background2 + 200.000000 + 50.000000 + 222.000000,36.000000,0.000000 + LeaderboardHeaderPanel + + + + + Background1 + 170.000000 + 50.000000 + 50.000000,36.000000,0.000000 + LeaderboardHeaderPanel + + + + + XuiListGamers + 560.000000 + 313.000000 + 40.000000,90.000000,0.000000 + 4 + CXuiCtrlPassThroughList + XuiListLeaderboardSmall + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiLeaderboardEntry + + + + + control_ListItem + 540.000000 + 22.000000 + 10.000000,52.000000,0.000000 + 15 + false + XuiLeaderboardEntrySmall + 22594 + 0.000000,2.000000,0.000000 + + + + + control_ListItem + 540.000000 + 22.000000 + 10.000000,52.000000,0.000000 + 15 + false + XuiLeaderboardEntrySmall + 22594 + 0.000000,2.000000,0.000000 + + + + + control_ListItem + 540.000000 + 22.000000 + 10.000000,52.000000,0.000000 + 15 + false + XuiLeaderboardEntrySmall + 22594 + 0.000000,2.000000,0.000000 + + + + + control_ListItem + 540.000000 + 22.000000 + 10.000000,52.000000,0.000000 + 15 + false + XuiLeaderboardEntrySmall + 22594 + 0.000000,2.000000,0.000000 + + + + + + XuiTextFilter + 154.000000 + 40.000000 + 58.000000,40.000000,0.000000 + LabelLeaderboardTitleSmall + + + + + XuiTextLeaderboard + 120.000000 + 40.000000 + 252.000000,40.000000,0.000000 + LabelLeaderboardTitleSmall + + + + + XuiTextEntries + 154.000000 + 40.000000 + 432.000000,40.000000,0.000000 + LabelLeaderboardTitleSmall + + + + + XuiTextInfo + 366.000000 + 106.000000 + 137.000000,187.000000,0.000000 + LabelLeaderboardWaitingTextSmall + + + + + LSIcon + 28.000000 + 20.000000 + 224.000000,40.000000,0.000000 + IconLStickSides + + + + + RBIcon + 24.000000 + 20.000000 + 395.000000,40.000000,0.000000 + IconRBumper + + + + + LBIcon + 24.000000 + 20.000000 + 373.000000,40.000000,0.000000 + IconLBumper + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_load_settings.xui b/Minecraft.Client/Common/Media/xuiscene_load_settings.xui index eb901669..7e139ec9 100644 --- a/Minecraft.Client/Common/Media/xuiscene_load_settings.xui +++ b/Minecraft.Client/Common/Media/xuiscene_load_settings.xui @@ -1,510 +1,508 @@ - -1280.000000 -720.000000 - - - -LoadGameSettings -770.000000 -450.000000 -255.000092,140.000000,0.000000 -CScene_LoadGameSettings -XuiBlankScene -MainScene\XuiLoadSettings - - - -TexturePackDetails -334.000000 -462.000000 -260.000000,14.000000,0.000000 -LeaderboardHeaderPanel - - - -ComparisonPic -292.000000 -160.000000 -26.000000,291.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -Icon -64.000000 -64.000000 -26.000000,14.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -TexturePackName -222.000000 -64.000000 -96.000000,14.000000,0.000000 -XuiLabelLight_FRONT_END_Shd_Wrp - - - - -TexturePackDescription -292.000000 -180.000000 -26.000000,86.000000,0.000000 -XuiHtmlControl - - - - - -MainScene -490.000000 -484.000000 -140.000031,0.000000,0.000000 - - - -Background -490.000000 -484.000000 -15 -XuiScene - - - - -XuiLoadSettings -440.000000 -40.000000 -25.000015,420.000000,0.000000 -XuiMainMenuButton_L -XuiMoreOptions - - - - -XuiMoreOptions -440.000000 -40.000000 -25.000015,370.000000,0.000000 -XuiMainMenuButton_L -CheckboxOnline -XuiLoadSettings -22528 - - - - -CheckboxOnline -402.000000 -34.000000 -25.000015,330.000000,0.000000 -XuiCheckbox -TexturePacksList -XuiMoreOptions - - - - -TexturePacksList -428.000000 -98.000000 -32.000000,226.000000,0.000000 -CXuiCtrl4JList -XuiListTexturePack -XuiSliderDifficulty\XuiSlider -CheckboxOnline -true - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,28.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - - -XuiSliderDifficulty -446.000000 -38.000000 -22.000000,177.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiGameModeToggle -TexturePacksList -FocusSink - - - -XuiSlider -446.000000 -38.000000 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiGameModeToggle -440.000000 -40.000000 -25.000015,129.000000,0.000000 -XuiMainMenuButton_L -XuiSliderDifficulty\XuiSlider -22528 - - - - -XuiGameIcon -64.000000 -64.000000 -25.000000,18.000000,0.000000 -CXuiCtrl4JIcon -ItemIcon - - - - -XuiGameName -363.000000 -26.000000 -97.000000,18.000000,0.000000 -XuiLabelDark14_1Line - - - - -XuiGameSeed -440.000000 -26.000000 -25.000000,92.000000,0.000000 -XuiLabelDark14_1Line - - - - -XuiCreatedMode -363.000000 -26.000000 -97.000000,54.000000,0.000000 -XuiLabelDark14_1Line - - - - - - -Normal - -stop - - -SlideOut - - - -SlideOutEnd - -stop - - -SlideBack - - - -SlideBackEnd - -stop - - - -MainScene -Position - - -0 -140.000031,0.000000,0.000000 - - - -0 -140.000031,0.000000,0.000000 - - - -0 --44.000000,0.000000,0.000000 - - - -0 --44.000000,0.000000,0.000000 - - - -0 -140.000031,0.000000,0.000000 - - - -TexturePackDetails -Position - - -0 -260.000000,14.000000,0.000000 - - - -0 -260.000000,14.000000,0.000000 - - - -0 -434.000000,14.000000,0.000000 - - - -0 -434.000000,14.000000,0.000000 - - - -0 -260.000000,14.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + LoadGameSettings + 770.000000 + 450.000000 + 255.000092,140.000000,0.000000 + CScene_LoadGameSettings + XuiBlankScene + MainScene\XuiLoadSettings + + + + + Normal + + stop + + + SlideOut + + + + SlideOutEnd + + stop + + + SlideBack + + + + SlideBackEnd + + stop + + + + MainScene + + + none + 6 + + + + none + 6 + + + + none + 22 + + + + none + 22 + + + + none + 6 + + + + TexturePackDetails + + + none + 1 + + + + none + 1 + + + + none + 23 + + + + none + 23 + + + + none + 1 + + + + + + TexturePackDetails + 334.000000 + 462.000000 + 260.000000,14.000000,0.000000 + LeaderboardHeaderPanel + + + + ComparisonPic + 292.000000 + 160.000000 + 26.000000,291.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + Icon + 64.000000 + 64.000000 + 26.000000,14.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + TexturePackName + 222.000000 + 64.000000 + 96.000000,14.000000,0.000000 + XuiLabelLight_FRONT_END_Shd_Wrp + + + + + TexturePackDescription + 292.000000 + 180.000000 + 26.000000,86.000000,0.000000 + XuiHtmlControl + + + + + + MainScene + 490.000000 + 484.000000 + 140.000031,0.000000,0.000000 + + + + Background + 490.000000 + 484.000000 + 15 + XuiScene + + + + + XuiLoadSettings + 440.000000 + 40.000000 + 25.000015,420.000000,0.000000 + XuiMainMenuButton_L + XuiMoreOptions + + + + + XuiMoreOptions + 440.000000 + 40.000000 + 25.000015,370.000000,0.000000 + XuiMainMenuButton_L + CheckboxOnline + XuiLoadSettings + 22528 + + + + + CheckboxOnline + 402.000000 + 34.000000 + 25.000015,330.000000,0.000000 + XuiCheckbox + TexturePacksList + XuiMoreOptions + + + + + TexturePacksList + 428.000000 + 98.000000 + 32.000000,226.000000,0.000000 + CXuiCtrl4JList + XuiListTexturePack + XuiSliderDifficulty\XuiSlider + CheckboxOnline + true + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,28.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + + XuiSliderDifficulty + 446.000000 + 38.000000 + 22.000000,177.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiGameModeToggle + TexturePacksList + FocusSink + + + + XuiSlider + 446.000000 + 38.000000 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiGameModeToggle + 440.000000 + 40.000000 + 25.000015,129.000000,0.000000 + XuiMainMenuButton_L + XuiSliderDifficulty\XuiSlider + 22528 + + + + + XuiGameIcon + 64.000000 + 64.000000 + 25.000000,18.000000,0.000000 + CXuiCtrl4JIcon + ItemIcon + + + + + XuiGameName + 363.000000 + 26.000000 + 97.000000,18.000000,0.000000 + XuiLabelDark14_1Line + + + + + XuiGameSeed + 440.000000 + 26.000000 + 25.000000,92.000000,0.000000 + XuiLabelDark14_1Line + + + + + XuiCreatedMode + 363.000000 + 26.000000 + 97.000000,54.000000,0.000000 + XuiLabelDark14_1Line + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_load_settings_480.xui b/Minecraft.Client/Common/Media/xuiscene_load_settings_480.xui index 398a6136..bdbd8bcb 100644 --- a/Minecraft.Client/Common/Media/xuiscene_load_settings_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_load_settings_480.xui @@ -1,516 +1,514 @@ - -640.000000 -480.000000 - - - -LoadGameSettings -597.000000 -375.000000 -21.500046,30.000000,0.000000 -CScene_LoadGameSettings -XuiBlankScene -MainScene\XuiLoadSettings - - - -TexturePackDetails -230.000000 -378.000000 -184.000000,2.000000,0.000000 -LeaderboardHeaderPanel - - - -ComparisonPic -196.000000 -112.000000 -20.000000,254.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -TexturePackDescription -196.000000 -106.000000 -20.000010,132.000000,0.000000 -XuiHtmlControl_Small - - - - -TexturePackName -196.000000 -43.000000 -20.000000,82.000008,0.000000 -XuiLabelLight_FRONT_END_Shd_Wrp_Small - - - - -Icon -64.000000 -64.000000 -90.000000,10.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - - -MainScene -380.000000 -401.000000 -108.500015,-12.999970,0.000000 - - - -Background -380.000000 -401.000000 -15 -XuiScene - - - - -XuiLoadSettings -344.000000 -36.000000 -18.000000,342.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiMoreOptions -22528 - - - - -XuiMoreOptions -344.000000 -36.000000 -18.000000,297.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxOnline -XuiLoadSettings -22528 - - - - -CheckboxOnline -304.000000 -26.000000 -20.000000,272.000000,0.000000 -XuiCheckboxSmall -TexturePacksList -XuiMoreOptions - - - - -TexturePacksList -344.000000 -74.000000 -18.000000,194.000000,0.000000 -CXuiCtrl4JList -XuiListTexturePackSmall -XuiSliderDifficulty\XuiSlider -CheckboxOnline -true - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -40.000000 -40.000000 -10.000000,10.000000,0.000000 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -10.000000,10.000000,0.000000 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,22.000000,0.000000 -5 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - - -XuiSliderDifficulty -350.000000 -38.000000 -15.000000,142.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiGameModeToggle -TexturePacksList -FocusSink - - - -XuiSlider -350.000000 -38.000000 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiGameModeToggle -344.000000 -36.000000 -18.000000,99.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiSliderDifficulty\XuiSlider -22528 - - - - -XuiGameSeed -350.000000 -26.000000 -18.000000,64.000000,0.000000 -XuiLabelDark14_1Line - - - - -XuiGameIcon -42.000000 -42.000000 -18.000000,18.000000,0.000000 -CXuiCtrl4JIcon -ItemIcon - - - - -XuiGameName -300.000000 -23.000000 -66.000000,15.000000,0.000000 -XuiLabelDark14_1Line - - - - -XuiCreatedMode -300.000000 -19.000000 -66.000000,39.000000,0.000000 -XuiLabelDark14_1Line - - - - - - -Normal - -stop - - -SlideOut - - - -SlideOutEnd - -stop - - -SlideBack - - - -SlideBackEnd - - - - -MainScene -Position - - -0 -108.500015,-12.999970,0.000000 - - - -0 -108.500008,-12.999985,0.000000 - - - -0 -0.000000,-12.999985,0.000000 - - - -0 -0.000000,-12.999985,0.000000 - - - -0 -108.500015,-12.999985,0.000000 - - - -TexturePackDetails -Position - - -0 -184.000000,2.000000,0.000000 - - - -0 -184.000000,2.000000,0.000000 - - - -0 -366.000000,2.000000,0.000000 - - - -0 -366.000000,2.000000,0.000000 - - - -0 -183.500015,2.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + LoadGameSettings + 597.000000 + 375.000000 + 21.500046,30.000000,0.000000 + CScene_LoadGameSettings + XuiBlankScene + MainScene\XuiLoadSettings + + + + + Normal + + stop + + + SlideOut + + + + SlideOutEnd + + stop + + + SlideBack + + + + SlideBackEnd + + + + + MainScene + + + none + 6 + + + + none + 22 + + + + none + 23 + + + + none + 23 + + + + none + 24 + + + + TexturePackDetails + + + none + 1 + + + + none + 1 + + + + none + 25 + + + + none + 25 + + + + none + 26 + + + + + + TexturePackDetails + 230.000000 + 378.000000 + 184.000000,2.000000,0.000000 + LeaderboardHeaderPanel + + + + ComparisonPic + 196.000000 + 112.000000 + 20.000000,254.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + TexturePackDescription + 196.000000 + 106.000000 + 20.000010,132.000000,0.000000 + XuiHtmlControl_Small + + + + + TexturePackName + 196.000000 + 43.000000 + 20.000000,82.000008,0.000000 + XuiLabelLight_FRONT_END_Shd_Wrp_Small + + + + + Icon + 64.000000 + 64.000000 + 90.000000,10.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + + MainScene + 380.000000 + 401.000000 + 108.500015,-12.999970,0.000000 + + + + Background + 380.000000 + 401.000000 + 15 + XuiScene + + + + + XuiLoadSettings + 344.000000 + 36.000000 + 18.000000,342.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiMoreOptions + 22528 + + + + + XuiMoreOptions + 344.000000 + 36.000000 + 18.000000,297.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxOnline + XuiLoadSettings + 22528 + + + + + CheckboxOnline + 304.000000 + 26.000000 + 20.000000,272.000000,0.000000 + XuiCheckboxSmall + TexturePacksList + XuiMoreOptions + + + + + TexturePacksList + 344.000000 + 74.000000 + 18.000000,194.000000,0.000000 + CXuiCtrl4JList + XuiListTexturePackSmall + XuiSliderDifficulty\XuiSlider + CheckboxOnline + true + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 10.000000,10.000000,0.000000 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 10.000000,10.000000,0.000000 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,22.000000,0.000000 + 5 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + + XuiSliderDifficulty + 350.000000 + 38.000000 + 15.000000,142.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiGameModeToggle + TexturePacksList + FocusSink + + + + XuiSlider + 350.000000 + 38.000000 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiGameModeToggle + 344.000000 + 36.000000 + 18.000000,99.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiSliderDifficulty\XuiSlider + 22528 + + + + + XuiGameSeed + 350.000000 + 26.000000 + 18.000000,64.000000,0.000000 + XuiLabelDark14_1Line + + + + + XuiGameIcon + 42.000000 + 42.000000 + 18.000000,18.000000,0.000000 + CXuiCtrl4JIcon + ItemIcon + + + + + XuiGameName + 300.000000 + 23.000000 + 66.000000,15.000000,0.000000 + XuiLabelDark14_1Line + + + + + XuiCreatedMode + 300.000000 + 19.000000 + 66.000000,39.000000,0.000000 + XuiLabelDark14_1Line + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_main.xui b/Minecraft.Client/Common/Media/xuiscene_main.xui index 971bd483..ce10e9a0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_main.xui +++ b/Minecraft.Client/Common/Media/xuiscene_main.xui @@ -1,956 +1,124 @@ - -1280.000000 -720.000000 - - - -SceneMain -1280.000000 -720.000000 -CScene_Main -XuiMenuScene -XuiButton1 - - - -XuiButton1 -450.000000 -40.000000 -415.000000,250.000000,0.000000 -XuiMainMenuButton_L -XuiButton6 -XuiButton2 - - - - -XuiButton2 -450.000000 -40.000000 -415.000000,299.999969,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 - - - - -XuiButton3 -450.000000 -40.000000 -415.000000,349.999939,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 - - - - -XuiButton4 -450.000000 -40.000000 -415.000000,399.999939,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 - - - - -XuiButton5 -450.000000 -40.000000 -415.000000,449.999939,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 - - - - -XuiButton6 -450.000000 -40.000000 -415.000000,500.000000,0.000000 -XuiMainMenuButton_L -XuiButton5 -XuiButton1 - - - - -XuiSplash -500.000000 -50.000000 -605.000061,210.000000,0.000000 -0.000000,0.000000,-0.173648,0.984808 -TitleString - - - - -XuiSplashMCFont -500.000000 -50.000000 -612.000061,126.000000,0.000000 -CXuiCtrlSplashPulser -XuiLabel - - - - -Timer -182.000000 -168.000000 -549.000000,312.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 1280.000000 + 720.000000 + + + + SceneMain + 1280.000000 + 720.000000 + CScene_Main + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 450.000000 + 40.000000 + 415.000000,250.000000,0.000000 + XuiMainMenuButton_L + XuiButton6 + XuiButton2 + + + + + XuiButton2 + 450.000000 + 40.000000 + 415.000000,299.999969,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 450.000000 + 40.000000 + 415.000000,349.999939,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 450.000000 + 40.000000 + 415.000000,399.999939,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 450.000000 + 40.000000 + 415.000000,449.999939,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 450.000000 + 40.000000 + 415.000000,500.000000,0.000000 + XuiMainMenuButton_L + XuiButton5 + XuiButton1 + + + + + XuiSplash + 500.000000 + 50.000000 + 605.000061,210.000000,0.000000 + 0.000000,0.000000,-0.173648,0.984808 + TitleString + + + + + XuiSplashMCFont + 500.000000 + 50.000000 + 612.000061,126.000000,0.000000 + CXuiCtrlSplashPulser + XuiLabel + + + + + Timer + 182.000000 + 168.000000 + 549.000000,312.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_main_480.xui b/Minecraft.Client/Common/Media/xuiscene_main_480.xui index ca811d02..8be9b0bf 100644 --- a/Minecraft.Client/Common/Media/xuiscene_main_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_main_480.xui @@ -1,956 +1,124 @@ - -640.000000 -480.000000 - - - -SceneMain -640.000000 -480.000000 -CScene_Main -XuiMenuScene -XuiButton1 - - - -XuiButton1 -300.000000 -36.000000 -170.000031,140.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton6 -XuiButton2 - - - - -XuiButton2 -300.000000 -36.000000 -170.000031,179.999969,0.000000 -XuiMainMenuButton_L_Thin -XuiButton1 -XuiButton3 - - - - -XuiButton3 -300.000000 -36.000000 -170.000031,219.999939,0.000000 -XuiMainMenuButton_L_Thin -XuiButton2 -XuiButton4 - - - - -XuiButton4 -300.000000 -36.000000 -170.000031,259.999939,0.000000 -XuiMainMenuButton_L_Thin -XuiButton3 -XuiButton5 - - - - -XuiButton5 -300.000000 -36.000000 -170.000031,299.999939,0.000000 -XuiMainMenuButton_L_Thin -XuiButton4 -XuiButton6 - - - - -XuiButton6 -300.000000 -36.000000 -170.000031,340.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton5 -XuiButton1 - - - - -XuiSplash -250.000000 -25.000000 -331.000061,110.000000,0.000000 -0.000000,0.000000,-0.113203,0.993572 -TitleStringSmall - - - - -XuiSplashMCFont -250.000000 -25.000000 -331.000061,74.000000,0.000000 -CXuiCtrlSplashPulser - - - - -Timer -184.000000 -170.000000 -274.000000,216.000000,0.000000 -0.500000,0.500000,1.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 480.000000 + + + + SceneMain + 640.000000 + 480.000000 + CScene_Main + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 300.000000 + 36.000000 + 170.000031,140.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton6 + XuiButton2 + + + + + XuiButton2 + 300.000000 + 36.000000 + 170.000031,179.999969,0.000000 + XuiMainMenuButton_L_Thin + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 300.000000 + 36.000000 + 170.000031,219.999939,0.000000 + XuiMainMenuButton_L_Thin + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 300.000000 + 36.000000 + 170.000031,259.999939,0.000000 + XuiMainMenuButton_L_Thin + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 300.000000 + 36.000000 + 170.000031,299.999939,0.000000 + XuiMainMenuButton_L_Thin + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 300.000000 + 36.000000 + 170.000031,340.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton5 + XuiButton1 + + + + + XuiSplash + 250.000000 + 25.000000 + 331.000061,110.000000,0.000000 + 0.000000,0.000000,-0.113203,0.993572 + TitleStringSmall + + + + + XuiSplashMCFont + 250.000000 + 25.000000 + 331.000061,74.000000,0.000000 + CXuiCtrlSplashPulser + + + + + Timer + 184.000000 + 170.000000 + 274.000000,216.000000,0.000000 + 0.500000,0.500000,1.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_create.xui b/Minecraft.Client/Common/Media/xuiscene_multi_create.xui index d067ade8..45a6acd3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_create.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_create.xui @@ -1,474 +1,472 @@ - -1280.000000 -720.000000 - - - -MultiGameCreate -810.000000 -532.000000 -235.000092,110.000000,0.000000 -CScene_MultiGameCreate -XuiBlankScene -MainScene\XuiEditWorldName - - - -TexturePackDetails -334.000000 -410.000000 -238.000046,64.000000,0.000000 -LeaderboardHeaderPanel - - - -ComparisonPic -292.000000 -160.000000 -26.000000,236.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -Icon -64.000000 -64.000000 -26.000000,14.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -TexturePackName -222.000000 -64.000000 -96.000000,14.000000,0.000000 -XuiLabelLight_FRONT_END_Shd_Wrp - - - - -TexturePackDescription -292.000000 -126.000000 -26.000000,86.000000,0.000000 -XuiHtmlControl - - - - - -MainScene -490.000000 -433.000000 -159.000000,49.000000,0.000000 - - - -Background -490.000000 -433.000000 -0.833344,0.000000,0.000000 -15 -XuiScene - - - - -XuiNewWorld -440.000000 -40.000000 -25.000015,369.000000,0.000000 -XuiMainMenuButton_L -XuiMoreOptions -22528 - - - - -XuiMoreOptions -440.000000 -40.000000 -25.000015,319.000000,0.000000 -XuiMainMenuButton_L -CheckboxOnline -XuiNewWorld -22528 - - - - -CheckboxOnline -402.000000 -34.000000 -25.000015,285.000000,0.000000 -XuiCheckbox -TexturePacksList -XuiMoreOptions - - - - -XuiSliderDifficulty -446.000000 -38.000000 -22.000017,144.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiGameModeToggle -TexturePacksList -FocusSink - - - -XuiSlider -446.000000 -38.000000 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -TexturePacksList -428.000000 -96.000000 -32.000000,189.000000,0.000000 -CXuiCtrl4JList -XuiListTexturePack -XuiSliderDifficulty\XuiSlider -CheckboxOnline -true - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,28.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,28.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -34.000000,30.000000,0.000000 -37 -false -XuiListTexturePackButton -1 - - - - - -XuiGameModeToggle -440.000000 -40.000000 -25.000015,96.999992,0.000000 -XuiMainMenuButton_L -XuiEditWorldName -XuiSliderDifficulty\XuiSlider -22528 - - - - -XuiEditWorldName -434.000000 -32.000000 -28.000000,52.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiGameModeToggle - - - - -XuiLabelWorldName -440.000000 -26.000008 -25.000000,24.000000,0.000000 -XuiLabelDark - - - - - - -Normal - -stop - - -SlideOut - - - -SlideOutEnd - -stop - - -SlideBack - - - -SlideBackEnd - -stop - - - -MainScene -Position - - -0 -159.000000,49.000000,0.000000 - - - -0 -159.000000,49.000000,0.000000 - - - -0 -0.000000,49.000000,0.000000 - - - -0 -0.000000,49.000000,0.000000 - - - -0 -159.000000,49.000000,0.000000 - - - -TexturePackDetails -Position - - -0 -238.000046,64.000000,0.000000 - - - -0 -287.000000,65.000000,0.000000 - - - -0 -477.000000,65.000000,0.000000 - - - -0 -477.000000,65.000000,0.000000 - - - -0 -287.000000,65.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + MultiGameCreate + 810.000000 + 532.000000 + 235.000092,110.000000,0.000000 + CScene_MultiGameCreate + XuiBlankScene + MainScene\XuiEditWorldName + + + + + Normal + + stop + + + SlideOut + + + + SlideOutEnd + + stop + + + SlideBack + + + + SlideBackEnd + + stop + + + + MainScene + + + none + 6 + + + + none + 6 + + + + none + 21 + + + + none + 21 + + + + none + 6 + + + + TexturePackDetails + + + none + 1 + + + + none + 22 + + + + none + 23 + + + + none + 23 + + + + none + 22 + + + + + + TexturePackDetails + 334.000000 + 410.000000 + 238.000046,64.000000,0.000000 + LeaderboardHeaderPanel + + + + ComparisonPic + 292.000000 + 160.000000 + 26.000000,236.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + Icon + 64.000000 + 64.000000 + 26.000000,14.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + TexturePackName + 222.000000 + 64.000000 + 96.000000,14.000000,0.000000 + XuiLabelLight_FRONT_END_Shd_Wrp + + + + + TexturePackDescription + 292.000000 + 126.000000 + 26.000000,86.000000,0.000000 + XuiHtmlControl + + + + + + MainScene + 490.000000 + 433.000000 + 159.000000,49.000000,0.000000 + + + + Background + 490.000000 + 433.000000 + 0.833344,0.000000,0.000000 + 15 + XuiScene + + + + + XuiNewWorld + 440.000000 + 40.000000 + 25.000015,369.000000,0.000000 + XuiMainMenuButton_L + XuiMoreOptions + 22528 + + + + + XuiMoreOptions + 440.000000 + 40.000000 + 25.000015,319.000000,0.000000 + XuiMainMenuButton_L + CheckboxOnline + XuiNewWorld + 22528 + + + + + CheckboxOnline + 402.000000 + 34.000000 + 25.000015,285.000000,0.000000 + XuiCheckbox + TexturePacksList + XuiMoreOptions + + + + + XuiSliderDifficulty + 446.000000 + 38.000000 + 22.000017,144.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiGameModeToggle + TexturePacksList + FocusSink + + + + XuiSlider + 446.000000 + 38.000000 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + TexturePacksList + 428.000000 + 96.000000 + 32.000000,189.000000,0.000000 + CXuiCtrl4JList + XuiListTexturePack + XuiSliderDifficulty\XuiSlider + CheckboxOnline + true + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,28.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,28.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 34.000000,30.000000,0.000000 + 37 + false + XuiListTexturePackButton + 1 + + + + + + XuiGameModeToggle + 440.000000 + 40.000000 + 25.000015,96.999992,0.000000 + XuiMainMenuButton_L + XuiEditWorldName + XuiSliderDifficulty\XuiSlider + 22528 + + + + + XuiEditWorldName + 434.000000 + 32.000000 + 28.000000,52.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiGameModeToggle + + + + + XuiLabelWorldName + 440.000000 + 26.000008 + 25.000000,24.000000,0.000000 + XuiLabelDark + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_create_480.xui b/Minecraft.Client/Common/Media/xuiscene_multi_create_480.xui index f8153db5..41930129 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_create_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_create_480.xui @@ -1,514 +1,512 @@ - -640.000000 -480.000000 - - - -MultiGameCreate -557.000000 -410.000000 -41.500046,20.000023,0.000000 -CScene_MultiGameCreate -XuiBlankScene -MainScene\XuiEditWorldName - - - -TexturePackDetails -230.000000 -334.000000 -163.500046,40.000000,0.000000 -LeaderboardHeaderPanel - - - -ComparisonPic -196.000000 -112.000000 -20.000000,212.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - -TexturePackDescription -196.000000 -80.000000 -20.000000,122.000000,0.000000 -XuiHtmlControl - - - - -TexturePackName -196.000000 -43.000000 -20.000000,74.000008,0.000000 -XuiLabelLight_FRONT_END_Shd_Wrp_Small - - - - -Icon -64.000000 -64.000000 -88.000000,6.000000,0.000000 -CXuiCtrl4JIcon -XuiVisualImagePresenter - - - - - -MainScene -340.000000 -355.000000 -108.500015,27.500019,0.000000 - - - -Background -340.000000 -353.000000 -15 -XuiScene - - - - -XuiNewWorld -304.000000 -36.000000 -18.000000,292.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiMoreOptions -22528 - - - - -XuiMoreOptions -304.000000 -36.000000 -18.000000,250.000000,0.000000 -XuiMainMenuButton_L_Thin -CheckboxOnline -XuiNewWorld -22528 - - - - -CheckboxOnline -304.000000 -26.000000 -18.000000,228.000000,0.000000 -XuiCheckboxSmall -TexturePacksList -XuiMoreOptions - - - - -XuiSliderDifficulty -310.000000 -38.000000 -15.000000,112.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiGameModeToggle -TexturePacksList -FocusSink - - - -XuiSlider -310.000000 -38.000000 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -TexturePacksList -304.000000 -74.000000 -18.000000,150.000000,0.000000 -CXuiCtrl4JList -XuiListTexturePackSmall -XuiSliderDifficulty\XuiSlider -CheckboxOnline -true - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -60.000000 -10.000000,10.000000,0.000000 -5 -false -XuiListTexturePackButton -1 - - - - -control_ListItem -40.000000 -40.000000 -10.000000,10.000000,0.000000 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -10.000000,10.000000,0.000000 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,22.000000,0.000000 -5 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - -control_ListItem -40.000000 -40.000000 -35.000000,24.000000,0.000000 -37 -false -XuiListTexturePackButtonSmall -1 - - - - - -XuiGameModeToggle -304.000000 -36.000000 -18.000000,70.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiEditWorldName -XuiSliderDifficulty\XuiSlider -22528 - - - - -XuiEditWorldName -298.000000 -21.000000,32.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiGameModeToggle - - - - -XuiLabelWorldName -303.444427 -28.000000 -18.000000,14.000000,0.000000 -XuiLabelDarkLeftWrapSmall10 - - - - - - -Normal - -stop - - -SlideOut - - - -SlideOutEnd - -stop - - -SlideBack - - - -SlideBackEnd - -stop - - - -MainScene -Position - - -0 -108.500015,27.500019,0.000000 - - - -0 -108.500015,27.500019,0.000000 - - - -0 -0.000000,27.500019,0.000000 - - - -0 -0.000000,27.500019,0.000000 - - - -0 -108.500015,27.500019,0.000000 - - - -TexturePackDetails -Position - - -0 -163.500046,40.000000,0.000000 - - - -0 -163.500046,40.000000,0.000000 - - - -0 -327.000000,40.000000,0.000000 - - - -0 -327.000000,40.000000,0.000000 - - - -0 -163.500046,40.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + MultiGameCreate + 557.000000 + 410.000000 + 41.500046,20.000023,0.000000 + CScene_MultiGameCreate + XuiBlankScene + MainScene\XuiEditWorldName + + + + + Normal + + stop + + + SlideOut + + + + SlideOutEnd + + stop + + + SlideBack + + + + SlideBackEnd + + stop + + + + MainScene + + + none + 6 + + + + none + 6 + + + + none + 20 + + + + none + 20 + + + + none + 6 + + + + TexturePackDetails + + + none + 1 + + + + none + 1 + + + + none + 21 + + + + none + 21 + + + + none + 1 + + + + + + TexturePackDetails + 230.000000 + 334.000000 + 163.500046,40.000000,0.000000 + LeaderboardHeaderPanel + + + + ComparisonPic + 196.000000 + 112.000000 + 20.000000,212.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + TexturePackDescription + 196.000000 + 80.000000 + 20.000000,122.000000,0.000000 + XuiHtmlControl + + + + + TexturePackName + 196.000000 + 43.000000 + 20.000000,74.000008,0.000000 + XuiLabelLight_FRONT_END_Shd_Wrp_Small + + + + + Icon + 64.000000 + 64.000000 + 88.000000,6.000000,0.000000 + CXuiCtrl4JIcon + XuiVisualImagePresenter + + + + + + MainScene + 340.000000 + 355.000000 + 108.500015,27.500019,0.000000 + + + + Background + 340.000000 + 353.000000 + 15 + XuiScene + + + + + XuiNewWorld + 304.000000 + 36.000000 + 18.000000,292.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiMoreOptions + 22528 + + + + + XuiMoreOptions + 304.000000 + 36.000000 + 18.000000,250.000000,0.000000 + XuiMainMenuButton_L_Thin + CheckboxOnline + XuiNewWorld + 22528 + + + + + CheckboxOnline + 304.000000 + 26.000000 + 18.000000,228.000000,0.000000 + XuiCheckboxSmall + TexturePacksList + XuiMoreOptions + + + + + XuiSliderDifficulty + 310.000000 + 38.000000 + 15.000000,112.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiGameModeToggle + TexturePacksList + FocusSink + + + + XuiSlider + 310.000000 + 38.000000 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + TexturePacksList + 304.000000 + 74.000000 + 18.000000,150.000000,0.000000 + CXuiCtrl4JList + XuiListTexturePackSmall + XuiSliderDifficulty\XuiSlider + CheckboxOnline + true + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 60.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiListTexturePackButton + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 10.000000,10.000000,0.000000 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 10.000000,10.000000,0.000000 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,22.000000,0.000000 + 5 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + control_ListItem + 40.000000 + 40.000000 + 35.000000,24.000000,0.000000 + 37 + false + XuiListTexturePackButtonSmall + 1 + + + + + + XuiGameModeToggle + 304.000000 + 36.000000 + 18.000000,70.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiEditWorldName + XuiSliderDifficulty\XuiSlider + 22528 + + + + + XuiEditWorldName + 298.000000 + 21.000000,32.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiGameModeToggle + + + + + XuiLabelWorldName + 303.444427 + 28.000000 + 18.000000,14.000000,0.000000 + XuiLabelDarkLeftWrapSmall10 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo.xui b/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo.xui index 12d11829..8b71db5b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo.xui @@ -1,285 +1,285 @@ - -1280.000000 -720.000000 - - - -MultiGameInfo -1280.000000 -720.000000 -CScene_MultiGameInfo -XuiBlankScene -JoinGame - - - -GamePlayers -450.000000 -342.000000 -228.000046,250.000000,0.000000 -XuiPlayerList_NoIcon -JoinGame - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - - -JoinGame -450.000000 -40.000000 -414.000000,200.000000,0.000000 -XuiMainMenuButton_L -GamePlayers -22528 - - - - -GameSettings -364.000000 -342.000000 -688.000061,250.000000,0.000000 -GraphicPanel - - - -LabelDifficulty -326.000000 -32.000000 -20.000000,12.000000,0.000000 -XuiLabelDark - - - - -Difficulty -326.000000 -32.000000 -20.000000,12.000000,0.000000 -XuiLabelDarkRight - - - - -LabelGameType -326.000000 -32.000000 -20.000000,44.000000,0.000000 -XuiLabelDark - - - - -GameType -326.000000 -32.000000 -20.000000,44.000000,0.000000 -XuiLabelDarkRight - - - - -LabelGamertagsOn -326.000000 -32.000000 -20.000000,76.000000,0.000000 -XuiLabelDark - - - - -GamertagsOn -326.000000 -32.000000 -20.000000,76.000000,0.000000 -XuiLabelDarkRight - - - - -LabelStructuresOn -326.000000 -32.000000 -20.000000,108.000000,0.000000 -XuiLabelDark - - - - -StructuresOn -326.000000 -32.000000 -20.000000,108.000000,0.000000 -XuiLabelDarkRight - - - - -LabelLevelType -326.000000 -32.000000 -20.000000,140.000000,0.000000 -XuiLabelDark - - - - -LevelType -326.000000 -32.000000 -20.000000,140.000000,0.000000 -XuiLabelDarkRight - - - - -LabelPvP -326.000000 -32.000000 -20.000000,172.000000,0.000000 -XuiLabelDarkLeftWrap16 - - - - -PvP -326.000000 -32.000000 -20.000000,172.000000,0.000000 -XuiLabelDarkRight - - - - -LabelTrust -326.000000 -32.000000 -20.000000,204.000000,0.000000 -XuiLabelDarkLeftWrap16 - - - - -Trust -326.000000 -32.000000 -20.000000,204.000000,0.000000 -XuiLabelDarkRight - - - - -LabelTNTOn -326.000000 -32.000000 -20.000000,236.000000,0.000000 -XuiLabelDarkLeftWrap16 - - - - -TNTOn -326.000000 -32.000000 -20.000000,236.000000,0.000000 -XuiLabelDarkRight - - - - -LabelFireOn -326.000000 -32.000000 -20.000000,268.000000,0.000000 -XuiLabelDarkLeftWrap16 - - - - -FireOn -326.000000 -32.000000 -20.000000,268.000000,0.000000 -XuiLabelDarkRight - - - - + + 1280.000000 + 720.000000 + + + + MultiGameInfo + 1280.000000 + 720.000000 + CScene_MultiGameInfo + XuiBlankScene + JoinGame + + + + GamePlayers + 450.000000 + 342.000000 + 228.000046,250.000000,0.000000 + XuiPlayerList_NoIcon + JoinGame + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + + JoinGame + 450.000000 + 40.000000 + 414.000000,200.000000,0.000000 + XuiMainMenuButton_L + GamePlayers + 22528 + + + + + GameSettings + 364.000000 + 342.000000 + 688.000061,250.000000,0.000000 + GraphicPanel + + + + LabelDifficulty + 326.000000 + 32.000000 + 20.000000,12.000000,0.000000 + XuiLabelDark + + + + + Difficulty + 326.000000 + 32.000000 + 20.000000,12.000000,0.000000 + XuiLabelDarkRight + + + + + LabelGameType + 326.000000 + 32.000000 + 20.000000,44.000000,0.000000 + XuiLabelDark + + + + + GameType + 326.000000 + 32.000000 + 20.000000,44.000000,0.000000 + XuiLabelDarkRight + + + + + LabelGamertagsOn + 326.000000 + 32.000000 + 20.000000,76.000000,0.000000 + XuiLabelDark + + + + + GamertagsOn + 326.000000 + 32.000000 + 20.000000,76.000000,0.000000 + XuiLabelDarkRight + + + + + LabelStructuresOn + 326.000000 + 32.000000 + 20.000000,108.000000,0.000000 + XuiLabelDark + + + + + StructuresOn + 326.000000 + 32.000000 + 20.000000,108.000000,0.000000 + XuiLabelDarkRight + + + + + LabelLevelType + 326.000000 + 32.000000 + 20.000000,140.000000,0.000000 + XuiLabelDark + + + + + LevelType + 326.000000 + 32.000000 + 20.000000,140.000000,0.000000 + XuiLabelDarkRight + + + + + LabelPvP + 326.000000 + 32.000000 + 20.000000,172.000000,0.000000 + XuiLabelDarkLeftWrap16 + + + + + PvP + 326.000000 + 32.000000 + 20.000000,172.000000,0.000000 + XuiLabelDarkRight + + + + + LabelTrust + 326.000000 + 32.000000 + 20.000000,204.000000,0.000000 + XuiLabelDarkLeftWrap16 + + + + + Trust + 326.000000 + 32.000000 + 20.000000,204.000000,0.000000 + XuiLabelDarkRight + + + + + LabelTNTOn + 326.000000 + 32.000000 + 20.000000,236.000000,0.000000 + XuiLabelDarkLeftWrap16 + + + + + TNTOn + 326.000000 + 32.000000 + 20.000000,236.000000,0.000000 + XuiLabelDarkRight + + + + + LabelFireOn + 326.000000 + 32.000000 + 20.000000,268.000000,0.000000 + XuiLabelDarkLeftWrap16 + + + + + FireOn + 326.000000 + 32.000000 + 20.000000,268.000000,0.000000 + XuiLabelDarkRight + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo_480.xui b/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo_480.xui index 550fa806..301b9947 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_gameinfo_480.xui @@ -1,292 +1,292 @@ - -640.000000 -480.000000 - - - -MultiGameInfo -640.000000 -480.000000 -CScene_MultiGameInfo -XuiBlankScene -JoinGame - - - -GamePlayers -300.000000 -240.000000 -44.000004,180.000046,0.000000 -XuiPlayerListSmall_NoIcon -JoinGame - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - - -JoinGame -300.000000 -36.000000 -170.000015,140.000046,0.000000 -XuiMainMenuButton_L_Thin -GamePlayers -22528 - - - - -GameSettings -245.000000 -240.000000 -351.000061,180.000000,0.000000 -GraphicPanel - - - -LabelDifficulty -207.000000 -22.000000 -20.000000,12.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -Difficulty -207.000000 -22.000000 -20.000000,12.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelGameType -207.000000 -22.000000 -20.000000,34.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -GameType -207.000000 -22.000000 -20.000000,34.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelGamertagsOn -207.000000 -22.000000 -20.000000,56.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -GamertagsOn -207.000000 -22.000000 -20.000000,56.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelStructuresOn -207.000000 -22.000000 -20.000000,78.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -StructuresOn -207.000000 -22.000000 -20.000000,78.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelLevelType -207.000000 -22.000000 -20.000000,100.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -LevelType -207.000000 -22.000000 -20.000000,100.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelPvP -207.000000 -22.000000 -20.000000,122.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -PvP -207.000000 -22.000000 -20.000000,122.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelTrust -207.000000 -22.000000 -20.000000,144.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -Trust -207.000000 -22.000000 -20.000000,144.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelTNTOn -207.000000 -22.000000 -20.000000,166.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -TNTOn -207.000000 -22.000000 -20.000000,166.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - -LabelFireOn -207.000000 -22.000000 -20.000000,188.000000,0.000000 -5 -XuiLabelDarkLeftWrapSmall - - - - -FireOn -207.000000 -22.000000 -20.000000,188.000000,0.000000 -5 -XuiLabelDarkSmallRight - - - - + + 640.000000 + 480.000000 + + + + MultiGameInfo + 640.000000 + 480.000000 + CScene_MultiGameInfo + XuiBlankScene + JoinGame + + + + GamePlayers + 300.000000 + 240.000000 + 44.000004,180.000046,0.000000 + XuiPlayerListSmall_NoIcon + JoinGame + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + + JoinGame + 300.000000 + 36.000000 + 170.000015,140.000046,0.000000 + XuiMainMenuButton_L_Thin + GamePlayers + 22528 + + + + + GameSettings + 245.000000 + 240.000000 + 351.000061,180.000000,0.000000 + GraphicPanel + + + + LabelDifficulty + 207.000000 + 22.000000 + 20.000000,12.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + Difficulty + 207.000000 + 22.000000 + 20.000000,12.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelGameType + 207.000000 + 22.000000 + 20.000000,34.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + GameType + 207.000000 + 22.000000 + 20.000000,34.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelGamertagsOn + 207.000000 + 22.000000 + 20.000000,56.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + GamertagsOn + 207.000000 + 22.000000 + 20.000000,56.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelStructuresOn + 207.000000 + 22.000000 + 20.000000,78.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + StructuresOn + 207.000000 + 22.000000 + 20.000000,78.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelLevelType + 207.000000 + 22.000000 + 20.000000,100.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + LevelType + 207.000000 + 22.000000 + 20.000000,100.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelPvP + 207.000000 + 22.000000 + 20.000000,122.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + PvP + 207.000000 + 22.000000 + 20.000000,122.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelTrust + 207.000000 + 22.000000 + 20.000000,144.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + Trust + 207.000000 + 22.000000 + 20.000000,144.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelTNTOn + 207.000000 + 22.000000 + 20.000000,166.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + TNTOn + 207.000000 + 22.000000 + 20.000000,166.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + + LabelFireOn + 207.000000 + 22.000000 + 20.000000,188.000000,0.000000 + 5 + XuiLabelDarkLeftWrapSmall + + + + + FireOn + 207.000000 + 22.000000 + 20.000000,188.000000,0.000000 + 5 + XuiLabelDarkSmallRight + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_joinload.xui b/Minecraft.Client/Common/Media/xuiscene_multi_joinload.xui index 57175046..e2ffce78 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_joinload.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_joinload.xui @@ -1,1851 +1,97 @@ - -1280.000000 -720.000000 - - - -MultiGameJoinLoad -1040.000000 -426.000000 -120.000000,206.000000,0.000000 -CScene_MultiGameJoinLoad -XuiScene -SavesList - - - -GamesList -500.000000 -386.000000 -524.000000,22.000008,0.000000 -CXuiCtrl4JList -XuiListRecessed -SavesList -SavesList - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L_NoIcon - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -Timer -184.000000 -170.000000 -682.000000,170.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -LabelNoGames -342.000000 -56.000000 -580.000000,210.000000,0.000000 -false -XuiLabelDarkCentred - - - - -SavesList -500.000000 -386.000000 -18.000000,22.000008,0.000000 -CXuiCtrl4JList -XuiListRecessed -GamesList -GamesList - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,42.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -SavesTimer -184.000000 -170.000000 -178.000000,170.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 1280.000000 + 720.000000 + + + + MultiGameJoinLoad + 1040.000000 + 426.000000 + 120.000000,206.000000,0.000000 + CScene_MultiGameJoinLoad + XuiScene + SavesList + + + + GamesList + 500.000000 + 386.000000 + 524.000000,22.000008,0.000000 + CXuiCtrl4JList + XuiListRecessed + SavesList + SavesList + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiListButton_L_NoIcon + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + + Timer + 184.000000 + 170.000000 + 682.000000,170.000000,0.000000 + XuiBlankScene + + + + Timer_Square_1 + 42.000000 + 42.000000 + 14.000000,3.000000,0.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_joinload_480.xui b/Minecraft.Client/Common/Media/xuiscene_multi_joinload_480.xui index 3d6472d0..44632329 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_joinload_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_joinload_480.xui @@ -1,1917 +1,126 @@ - -640.000000 -480.000000 - - - -MultiGameJoinLoad -596.000000 -290.000000 -24.000000,124.000000,0.000000 -CScene_MultiGameJoinLoad -XuiScene -SavesList - - - -GamesList -320.000000 -266.000000 -262.000000,14.000000,0.000000 -CXuiCtrl4JList -XuiListRecessedThin -SavesList -SavesList - - - -control_ListItem -469.000000 -86.000000 -16.000000,32.000000,0.000000 -5 -false -XuiButton - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin_NoIcon - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -Timer -72.000000 -72.000000 -388.000000,112.000000,0.000000 -15 -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - -LabelNoGames -200.000000 -78.000000 -322.000000,136.000000,0.000000 -false -XuiLabelDarkCentredWrapSmall - - - - -SavesList -250.000000 -265.000000 -12.000000,14.000000,0.000000 -CXuiCtrl4JList -XuiListRecessedThin -GamesList -GamesList - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -410.000000 -15.000000,30.000000,0.000000 -5 -false -XuiListButton_LThin - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - - -SavesTimer -72.000000 -72.000000 -102.000000,112.000000,0.000000 -15 -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -true -MenuTitleLogo - - + + 640.000000 + 480.000000 + + + + MultiGameJoinLoad + 596.000000 + 290.000000 + 24.000000,124.000000,0.000000 + CScene_MultiGameJoinLoad + XuiScene + SavesList + + + + GamesList + 320.000000 + 266.000000 + 262.000000,14.000000,0.000000 + CXuiCtrl4JList + XuiListRecessedThin + SavesList + SavesList + + + + control_ListItem + 469.000000 + 86.000000 + 16.000000,32.000000,0.000000 + 5 + false + XuiButton + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 410.000000 + 15.000000,30.000000,0.000000 + 5 + false + XuiListButton_LThin_NoIcon + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + + Timer + 72.000000 + 72.000000 + 388.000000,112.000000,0.000000 + 15 + XuiBlankScene + + + + Timer_Square_1 + 21.000000 + 21.000000 + false + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.h b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.h index c808d117..c5c028ff 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.h +++ b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.h @@ -32,3 +32,5 @@ #define IDC_LabelGameOptions L"LabelGameOptions" #define IDC_LabelWorldOptions L"LabelWorldOptions" #define IDC_MultiGameLaunchMoreOptions L"MultiGameLaunchMoreOptions" +#define IDC_GenerationOptions L"GenerationOptions" +#define IDC_HostOptions L"HostOptions" diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.xui b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.xui index ba1edc5e..7ff10f1b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options.xui @@ -1,486 +1,424 @@ - -1280.000000 -720.000000 - - - -MultiGameLaunchMoreOptions -1280.000000 -720.000000 -CScene_MultiGameLaunchMoreOptions -XuiBlankScene -WorldOptionsGroup\WorldOptions\XuiEditSeed - - - -OptionsTab_off -244.000000 -58.000000 -534.000000,108.000008,0.000000 -1 -Graphics\PanelsAndTabs\MoreOptionsTabOff.png -48 - - - - -GameOptionsGroup -700.000000 -430.000000 -290.000061,146.000015,0.000000 -false -true - - - -GameOptionsDescription -260.000000 -418.000000 -486.000000,14.000000,0.000000 -10 -TipPanel - - - - -GameOptions -488.000000 -440.000000 -0.000013,0.000000,0.000000 -10 -XuiScene - - - -CheckboxNaturalRegeneration -402.000000 -34.000000 -24.000015,393.000000,0.000000 -2 -XuiCheckbox -CheckboxTileDrops - - - - -CheckboxTileDrops -402.000000 -34.000000 -24.000015,359.000000,0.000000 -2 -XuiCheckbox -CheckboxMobLoot -CheckboxNaturalRegeneration - - - - -CheckboxMobLoot -402.000000 -34.000000 -24.000015,325.000000,0.000000 -2 -XuiCheckbox -CheckboxMobGriefing -CheckboxTileDrops - - - - -CheckboxMobGriefing -402.000000 -34.000000 -24.000015,291.000000,0.000000 -2 -XuiCheckbox -CheckboxMobSpawning -CheckboxMobLoot - - - - -CheckboxMobSpawning -402.000000 -34.000000 -24.000015,257.000000,0.000000 -2 -XuiCheckbox -CheckboxKeepInventory -CheckboxMobGriefing - - - - -CheckboxKeepInventory -402.000000 -34.000000 -24.000015,223.000015,0.000000 -2 -XuiCheckbox -CheckboxDayLightCycle -CheckboxMobSpawning - - - - -CheckboxDayLightCycle -402.000000 -34.000000 -24.000015,189.000015,0.000000 -2 -XuiCheckbox -CheckboxHostPrivileges -CheckboxKeepInventory - - - - -CheckboxHostPrivileges -402.000000 -34.000000 -24.000015,154.166672,0.000000 -2 -XuiCheckbox -CheckboxPVP -CheckboxDayLightCycle - - - - -CheckboxPVP -402.000000 -34.000000 -24.000015,121.000008,0.000000 -2 -XuiCheckbox -CheckboxAllowFoF -CheckboxHostPrivileges - - - - -CheckboxAllowFoF -402.000000 -34.000000 -24.000015,87.000015,0.000000 -XuiCheckbox -CheckboxInviteOnly -CheckboxPVP - - - - -CheckboxInviteOnly -402.000000 -34.000000 -24.000015,53.000015,0.000000 -XuiCheckbox -CheckboxOnline -CheckboxAllowFoF - - - - -CheckboxOnline -402.000000 -34.000000 -24.000015,19.000015,0.000000 -XuiCheckbox -CheckboxInviteOnly - - - - - - -WorldOptionsGroup -700.000000 -369.000000 -290.000031,146.000000,0.000000 -true - - - -WorldOptionsDescription -260.000000 -352.000000 -486.000031,14.000000,0.000000 -10 -TipPanel - - - - -WorldOptions -488.000000 -370.000000 -0.000029,0.000008,0.000000 -10 -XuiScene - - - -CheckboxFireSpreads -402.000000 -34.000000 -24.000015,318.000000,0.000000 -XuiCheckbox -CheckboxTNT - - - - -CheckboxTNT -402.000000 -34.000000 -24.000015,284.000000,0.000000 -XuiCheckbox -CheckboxTrustSystem -CheckboxFireSpreads - - - - -CheckboxTrustSystem -402.000000 -34.000000 -24.000015,250.000000,0.000000 -XuiCheckbox -CheckboxResetNether -CheckboxTNT - - - - -CheckboxResetNether -402.000000 -34.000000 -24.000015,216.000000,0.000000 -XuiCheckbox -CheckboxBonusChest -CheckboxTrustSystem - - - - -CheckboxBonusChest -402.000000 -34.000000 -24.000015,182.000000,0.000000 -XuiCheckbox -CheckboxFlatWorld -CheckboxResetNether - - - - -CheckboxFlatWorld -402.000000 -34.000000 -24.000015,148.000000,0.000000 -XuiCheckbox -CheckboxStructures -CheckboxBonusChest - - - - -CheckboxStructures -402.000000 -34.000000 -24.000015,114.000000,0.000000 -XuiCheckbox -XuiEditSeed -CheckboxFlatWorld - - - - -XuiLabelRandomSeed -402.000000 -31.000000 -24.000000,82.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiEditSeed -402.000000 -32.000000 -24.000000,44.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -CheckboxStructures - - - - -XuiLabelSeed -402.000000 -26.000000 -24.000000,16.000000,0.000000 -XuiLabelDark - - - - - - -WorldOptionsTab -244.000000 -58.000000 -290.000000,103.000008,0.000000 -1 -Graphics\PanelsAndTabs\WorldOptionsTabOn.png -48 - - - - -GameOptionsTab -244.000000 -58.000000 -534.000000,103.000008,0.000000 -false -1 -Graphics\PanelsAndTabs\GameOptionsTabOn.png -48 - - - - -LabelGameOptions -224.000000 -24.000000 -544.000000,122.000000,0.000000 -XuiLabelDarkCentred -Game Options - - - - -LabelWorldOptions -224.000000 -24.000000 -300.000000,116.000000,0.000000 -XuiLabelDarkCentred -World Options + + 1280.000000 + 720.000000 + + + + MultiGameLaunchMoreOptions + 1280.000000 + 720.000000 + CScene_MultiGameLaunchMoreOptions + XuiBlankScene + WorldOptionsGroup\WorldOptions\XuiEditSeed + + + + + WorldOptions + + stop + + + GameOptions + + stop + + + + GameOptionsGroup + + + none + 0 + + + + none + 1 + + + + + + + + + OptionsTab_off + 244.000000 + 58.000000 + 534.000000,108.000008,0.000000 + 1 + Graphics\PanelsAndTabs\MoreOptionsTabOff.png + 48 + + + + + GameOptionsGroup + 700.000000 + 430.000000 + 290.000061,146.000015,0.000000 + false + true + + + + GameOptionsDescriptionGroup + 260.000000 + 418.000000 + 486.000000,14.000000,0.000000 + 10 + LeaderboardHeaderPanel + + + + GameOptionsDescription + 237.000000 + 309.000000 + 10.000000,14.000000,0.000000 + 10 + XuiHtmlControl + + + + + + GameOptions + 488.000000 + 440.000000 + 0.000013,0.000000,0.000000 + 10 + XuiScene + + + + CheckboxNaturalRegeneration + 402.000000 + 34.000000 + 24.000015,393.000000,0.000000 + 2 + XuiCheckbox + CheckboxTileDrops + + + + + CheckboxTileDrops + 402.000000 + 34.000000 + 24.000015,359.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobLoot + CheckboxNaturalRegeneration + + + + + CheckboxMobLoot + 402.000000 + 34.000000 + 24.000015,325.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobGriefing + CheckboxTileDrops + + + + + CheckboxMobGriefing + 402.000000 + 34.000000 + 24.000015,291.000000,0.000000 + 2 + XuiCheckbox + CheckboxMobSpawning + CheckboxMobLoot + + + + + CheckboxMobSpawning + 402.000000 + 34.000000 + 24.000015,257.000000,0.000000 + 2 + XuiCheckbox + CheckboxKeepInventory + CheckboxMobGriefing + + + + + CheckboxKeepInventory + 402.000000 + 34.000000 + 24.000015,223.000015,0.000000 + 2 + XuiCheckbox + CheckboxDayLightCycle + CheckboxMobSpawning + + + + + CheckboxDayLightCycle + 402.000000 + 34.000000 + 24.000015,189.000015,0.000000 + 2 + XuiCheckbox + CheckboxHostPrivileges + CheckboxKeepInventory + + + + + CheckboxHostPrivileges + 402.000000 + 34.000000 + 24.000015,154.166672,0.000000 + 2 + XuiCheckbox + CheckboxPVP + CheckboxDayLightCycle + + + + + CheckboxPVP + 402.000000 + 34.000000 + 24.000015,121.000008,0.000000 + 2 + XuiCheckbox + CheckboxAllowFoF + CheckboxHostPrivileges + + + + + CheckboxAllowFoF + 402.000000 + 34.000000 + 24.000015,87.000015,0.000000 + XuiCheckbox + CheckboxInviteOnly + CheckboxPVP + + + + + CheckboxInviteOnly + 402.000000 + 34.000000 + 24.000015,53.000015,0.000000 + XuiCheckbox + CheckboxOnline + CheckboxAllowFoF + + + + + CheckboxOnline + 402.000000 + 34.000000 + 24.000015,19.000015,0.000000 + XuiCheckbox + CheckboxInviteOnly + + + + + + + WorldOptionsGroup + 700.000000 + 369.000000 + 290.000031,146.000000,0.000000 + true + + + + WorldOptionsDescriptionGroup + 260.000000 + 352.000000 + 486.000000,14.000000,0.000000 + 10 + LeaderboardHeaderPanel + + + + WorldOptionsDescription + 237.000000 + 309.000000 + 10.000000,14.000000,0.000000 + 10 + XuiHtmlControl + + + + + + WorldOptions + 488.000000 + 370.000000 + 0.000029,0.000008,0.000000 + 10 + XuiScene + + + + CheckboxFireSpreads + 402.000000 + 34.000000 + 24.000015,318.000000,0.000000 + XuiCheckbox + CheckboxTNT + + + + + CheckboxTNT + 402.000000 + 34.000000 + 24.000015,284.000000,0.000000 + XuiCheckbox + CheckboxTrustSystem + CheckboxFireSpreads + + + + + CheckboxTrustSystem + 402.000000 + 34.000000 + 24.000015,250.000000,0.000000 + XuiCheckbox + CheckboxResetNether + CheckboxTNT + + + + + CheckboxResetNether + 402.000000 + 34.000000 + 24.000015,216.000000,0.000000 + XuiCheckbox + CheckboxBonusChest + CheckboxTrustSystem + + + + + CheckboxBonusChest + 402.000000 + 34.000000 + 24.000015,182.000000,0.000000 + XuiCheckbox + CheckboxFlatWorld + CheckboxResetNether + + + + + CheckboxFlatWorld + 402.000000 + 34.000000 + 24.000015,148.000000,0.000000 + XuiCheckbox + CheckboxStructures + CheckboxBonusChest + + + + + CheckboxStructures + 402.000000 + 34.000000 + 24.000015,114.000000,0.000000 + XuiCheckbox + XuiEditSeed + CheckboxFlatWorld + + + + + XuiLabelRandomSeed + 402.000000 + 31.000000 + 24.000000,82.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiEditSeed + 402.000000 + 32.000000 + 24.000000,44.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + CheckboxStructures + + + + + XuiLabelSeed + 402.000000 + 26.000000 + 24.000000,16.000000,0.000000 + XuiLabelDark + + + + + + + WorldOptionsTab + 244.000000 + 58.000000 + 290.000000,103.000008,0.000000 + 1 + Graphics\PanelsAndTabs\WorldOptionsTabOn.png + 48 + + + + + GameOptionsTab + 244.000000 + 58.000000 + 534.000000,103.000008,0.000000 + false + 1 + Graphics\PanelsAndTabs\GameOptionsTabOn.png + 48 + + + + + LabelGameOptions + 224.000000 + 24.000000 + 544.000000,122.000000,0.000000 + XuiLabelDarkCentred + Game Options + + + + + LabelWorldOptions + 224.000000 + 24.000000 + 300.000000,116.000000,0.000000 + XuiLabelDarkCentred + World Options - - - - - -WorldOptions - -stop - - -GameOptions - -stop - - - -GameOptionsGroup -Show - - -0 -false - - - -0 -true - - - -WorldOptionsGroup -Show - - -0 -true - - - -0 -false - - - -OptionsTab_off -Position - - -0 -534.000000,108.000008,0.000000 - - - -0 -290.000000,108.000008,0.000000 - - - -WorldOptionsTab -Show - - -0 -true - - - -0 -false - - - -GameOptionsTab -Show - - -0 -false - - - -0 -true - - - -LabelGameOptions -Position - - -0 -544.000000,122.000000,0.000000 - - - -0 -544.000000,116.000000,0.000000 - - - -LabelWorldOptions -Position - - -0 -300.000000,116.000000,0.000000 - - - -0 -300.000000,122.000000,0.000000 - - - - + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options_480.xui b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options_480.xui index f964b51a..e40ab629 100644 --- a/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_multi_launch_more_options_480.xui @@ -1,481 +1,415 @@ - -640.000000 -480.000000 - - - -MultiGameLaunchMoreOptions -640.000000 -480.000000 -CScene_MultiGameLaunchMoreOptions -XuiBlankScene -WorldOptionsGroup\WorldOptions\XuiEditSeed - - - -OptionsTab_off -175.000000 -40.000000 -235.000000,44.000000,0.000000 -1 -Graphics\PanelsAndTabs\MoreOptionsTabOff_Small.png -48 - - - - -GameOptionsGroup -510.000000 -328.000000 -60.000000,76.000015,0.000000 -false -true - - - -GameOptionsDescription -182.000000 -312.000000 -347.000000,10.000000,0.000000 -10 -TipPanel - - - - -GameOptions -350.000000 -328.000000 -0.000015,0.000002,0.000000 -GraphicPanel - - - -CheckboxNaturalRegeneration -304.000000 -26.000000 -16.000000,299.000000,0.000000 -XuiCheckboxSmall -CheckboxTileDrops - - - - -CheckboxTileDrops -304.000000 -26.000000 -16.000000,273.000000,0.000000 -XuiCheckboxSmall -CheckboxMobLoot -CheckboxNaturalRegeneration - - - - -CheckboxMobLoot -304.000000 -26.000000 -16.000000,247.000000,0.000000 -XuiCheckboxSmall -CheckboxMobGriefing -CheckboxTileDrops - - - - -CheckboxMobGriefing -304.000000 -26.000000 -16.000000,221.000000,0.000000 -XuiCheckboxSmall -CheckboxMobSpawning -CheckboxMobLoot - - - - -CheckboxMobSpawning -304.000000 -26.000000 -16.000000,195.000000,0.000000 -XuiCheckboxSmall -CheckboxKeepInventory -CheckboxMobGriefing - - - - -CheckboxKeepInventory -304.000000 -26.000000 -16.000000,169.000000,0.000000 -XuiCheckboxSmall -CheckboxDayLightCycle -CheckboxMobSpawning - - - - -CheckboxDayLightCycle -304.000000 -26.000000 -16.000000,143.000000,0.000000 -XuiCheckboxSmall -CheckboxHostPrivileges -CheckboxKeepInventory - - - - -CheckboxHostPrivileges -304.000000 -26.000000 -16.000000,116.999992,0.000000 -XuiCheckboxSmall -CheckboxPVP -CheckboxDayLightCycle - - - - -CheckboxPVP -304.000000 -26.000000 -16.000000,90.999992,0.000000 -XuiCheckboxSmall -CheckboxAllowFoF -CheckboxHostPrivileges - - - - -CheckboxAllowFoF -304.000000 -25.000000 -16.000000,66.000000,0.000000 -XuiCheckboxSmall -CheckboxInviteOnly -CheckboxPVP - - - - -CheckboxInviteOnly -304.000000 -26.000000 -16.000000,39.999992,0.000000 -XuiCheckboxSmall -CheckboxOnline -CheckboxAllowFoF - - - - -CheckboxOnline -304.000000 -26.000000 -16.000000,13.999992,0.000000 -XuiCheckboxSmall -CheckboxInviteOnly - - - - - - -WorldOptionsGroup -510.000000 -305.000000 -60.000000,76.000000,0.000000 -true - - - -WorldOptionsDescription -182.000000 -298.000000 -347.000000,10.000000,0.000000 -10 -TipPanel - - - - -WorldOptions -350.000000 -315.000000 -0.000015,0.000000,0.000000 -10 -GraphicPanel - - - -CheckboxFireSpreads -304.000000 -26.000000 -19.000000,253.000000,0.000000 -XuiCheckboxSmall -CheckboxTNT - - - - -CheckboxTNT -304.000000 -26.000000 -19.000000,227.000000,0.000000 -XuiCheckboxSmall -CheckboxTrustSystem -CheckboxFireSpreads - - - - -CheckboxTrustSystem -304.000000 -26.000000 -19.000000,201.000000,0.000000 -XuiCheckboxSmall -CheckboxResetNether -CheckboxTNT - - - - -CheckboxResetNether -304.000000 -26.000000 -19.000000,175.000000,0.000000 -XuiCheckboxSmall -CheckboxBonusChest -CheckboxTrustSystem - - - - -CheckboxBonusChest -304.000000 -26.000000 -19.000000,149.000000,0.000000 -XuiCheckboxSmall -CheckboxFlatWorld -CheckboxResetNether - - - - -CheckboxFlatWorld -304.000000 -26.000000 -19.000000,123.000000,0.000000 -XuiCheckboxSmall -CheckboxStructures -CheckboxBonusChest - - - - -CheckboxStructures -304.000000 -26.000000 -19.000000,97.000000,0.000000 -XuiCheckboxSmall -XuiEditSeed -CheckboxFlatWorld - - - - -XuiLabelRandomSeed -304.000000 -21.924896 -18.000000,70.000000,0.000000 -XuiLabelDarkLeftWrapSmall8 - - - - -XuiEditSeed -310.000000 -20.000000,36.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -CheckboxStructures - - - - -XuiLabelSeed -303.444427 -28.000000 -18.000000,18.000000,0.000000 -XuiLabelDarkLeftWrapSmall10 - - - - - - -WorldOptionsTab -175.000000 -40.000000 -60.000000,44.000000,0.000000 -1 -Graphics\PanelsAndTabs\WorldOptionsTabOn_Small.png -48 - - - - -GameOptionsTab -175.000000 -40.000000 -235.000000,44.000000,0.000000 -false -1 -Graphics\PanelsAndTabs\GameOptionsTabOn_Small.png -48 - - - - -LabelGameOptions -160.000000 -24.000000 -242.000000,52.000000,0.000000 -XuiLabelDarkCentredSmall -Game Options - - - - -LabelWorldOptions -160.000000 -24.000000 -68.000000,48.000000,0.000000 -XuiLabelDarkCentredSmall -World Options + + 640.000000 + 480.000000 + + + + MultiGameLaunchMoreOptions + 640.000000 + 480.000000 + CScene_MultiGameLaunchMoreOptions + XuiBlankScene + WorldOptionsGroup\WorldOptions\XuiEditSeed + + + + + WorldOptions + + stop + + + GameOptions + + stop + + + + GameOptionsGroup + + + none + 0 + 16777216 + + + + none + 2097184 + 2 + + + + + + + + + OptionsTab_off + 175.000000 + 40.000000 + 235.000000,44.000000,0.000000 + 1 + Graphics\PanelsAndTabs\MoreOptionsTabOff_Small.png + 48 + + + + + GameOptionsGroup + 510.000000 + 328.000000 + 60.000000,76.000015,0.000000 + false + true + + + + GameOptionsDescriptionGroup + 182.000000 + 312.000000 + 347.000000,10.000000,0.000000 + 10 + LeaderboardHeaderPanel + + + + GameOptionsDescription + 160.000000 + 265.000000 + 10.000000,14.000000,0.000000 + 10 + XuiHtmlControl + + + + + + GameOptions + 350.000000 + 328.000000 + 0.000015,0.000002,0.000000 + GraphicPanel + + + + CheckboxNaturalRegeneration + 304.000000 + 26.000000 + 16.000000,299.000000,0.000000 + XuiCheckboxSmall + CheckboxTileDrops + + + + + CheckboxTileDrops + 304.000000 + 26.000000 + 16.000000,273.000000,0.000000 + XuiCheckboxSmall + CheckboxMobLoot + CheckboxNaturalRegeneration + + + + + CheckboxMobLoot + 304.000000 + 26.000000 + 16.000000,247.000000,0.000000 + XuiCheckboxSmall + CheckboxMobGriefing + CheckboxTileDrops + + + + + CheckboxMobGriefing + 304.000000 + 26.000000 + 16.000000,221.000000,0.000000 + XuiCheckboxSmall + CheckboxMobSpawning + CheckboxMobLoot + + + + + CheckboxMobSpawning + 304.000000 + 26.000000 + 16.000000,195.000000,0.000000 + XuiCheckboxSmall + CheckboxKeepInventory + CheckboxMobGriefing + + + + + CheckboxKeepInventory + 304.000000 + 26.000000 + 16.000000,169.000000,0.000000 + XuiCheckboxSmall + CheckboxDayLightCycle + CheckboxMobSpawning + + + + + CheckboxDayLightCycle + 304.000000 + 26.000000 + 16.000000,143.000000,0.000000 + XuiCheckboxSmall + CheckboxHostPrivileges + CheckboxKeepInventory + + + + + CheckboxHostPrivileges + 304.000000 + 26.000000 + 16.000000,116.999992,0.000000 + XuiCheckboxSmall + CheckboxPVP + CheckboxDayLightCycle + + + + + CheckboxPVP + 304.000000 + 26.000000 + 16.000000,90.999992,0.000000 + XuiCheckboxSmall + CheckboxAllowFoF + CheckboxHostPrivileges + + + + + CheckboxAllowFoF + 304.000000 + 25.000000 + 16.000000,66.000000,0.000000 + XuiCheckboxSmall + CheckboxInviteOnly + CheckboxPVP + + + + + CheckboxInviteOnly + 304.000000 + 26.000000 + 16.000000,39.999992,0.000000 + XuiCheckboxSmall + CheckboxOnline + CheckboxAllowFoF + + + + + CheckboxOnline + 304.000000 + 26.000000 + 16.000000,13.999992,0.000000 + XuiCheckboxSmall + CheckboxInviteOnly + + + + + + + WorldOptionsGroup + 510.000000 + 305.000000 + 60.000000,76.000000,0.000000 + true + + + + WorldOptionsDescriptionGroup + 182.000000 + 298.000000 + 347.000000,10.000000,0.000000 + 10 + LeaderboardHeaderPanel + + + + WorldOptionsDescription + 161.000000 + 263.000000 + 10.000000,14.000000,0.000000 + 10 + XuiHtmlControl_Small + + + + + + WorldOptions + 350.000000 + 315.000000 + 0.000015,0.000000,0.000000 + 10 + GraphicPanel + + + + CheckboxFireSpreads + 304.000000 + 26.000000 + 19.000000,253.000000,0.000000 + XuiCheckboxSmall + CheckboxTNT + + + + + CheckboxTNT + 304.000000 + 26.000000 + 19.000000,227.000000,0.000000 + XuiCheckboxSmall + CheckboxTrustSystem + CheckboxFireSpreads + + + + + CheckboxTrustSystem + 304.000000 + 26.000000 + 19.000000,201.000000,0.000000 + XuiCheckboxSmall + CheckboxResetNether + CheckboxTNT + + + + + CheckboxResetNether + 304.000000 + 26.000000 + 19.000000,175.000000,0.000000 + XuiCheckboxSmall + CheckboxBonusChest + CheckboxTrustSystem + + + + + CheckboxBonusChest + 304.000000 + 26.000000 + 19.000000,149.000000,0.000000 + XuiCheckboxSmall + CheckboxFlatWorld + CheckboxResetNether + + + + + CheckboxFlatWorld + 304.000000 + 26.000000 + 19.000000,123.000000,0.000000 + XuiCheckboxSmall + CheckboxStructures + CheckboxBonusChest + + + + + CheckboxStructures + 304.000000 + 26.000000 + 19.000000,97.000000,0.000000 + XuiCheckboxSmall + XuiEditSeed + CheckboxFlatWorld + + + + + XuiLabelRandomSeed + 304.000000 + 21.924896 + 18.000000,70.000000,0.000000 + XuiLabelDarkLeftWrapSmall8 + + + + + XuiEditSeed + 310.000000 + 20.000000,36.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + CheckboxStructures + + + + + XuiLabelSeed + 303.444427 + 28.000000 + 18.000000,18.000000,0.000000 + XuiLabelDarkLeftWrapSmall10 + + + + + + + WorldOptionsTab + 175.000000 + 40.000000 + 60.000000,44.000000,0.000000 + 1 + Graphics\PanelsAndTabs\WorldOptionsTabOn_Small.png + 48 + + + + + GameOptionsTab + 175.000000 + 40.000000 + 235.000000,44.000000,0.000000 + false + 1 + Graphics\PanelsAndTabs\GameOptionsTabOn_Small.png + 48 + + + + + LabelGameOptions + 160.000000 + 24.000000 + 242.000000,52.000000,0.000000 + XuiLabelDarkCentredSmall + Game Options + + + + + LabelWorldOptions + 160.000000 + 24.000000 + 68.000000,48.000000,0.000000 + XuiLabelDarkCentredSmall + World Options - - - - - -WorldOptions - -stop - - -GameOptions - -stop - - - -GameOptionsGroup -Show -Position - - -0 -false -60.000000,76.000015,0.000000 - - - -0 -true -60.000000,76.000023,0.000000 - - - -WorldOptionsGroup -Show -Height - - -0 -true -305.000000 - - - -0 -false -282.000000 - - - -LabelWorldOptions -Position - - -0 -68.000000,48.000000,0.000000 - - - -0 -68.000000,52.000000,0.000000 - - - -LabelGameOptions -Position - - -0 -242.000000,52.000000,0.000000 - - - -0 -242.000000,48.000000,0.000000 - - - -GameOptionsTab -Show - - -0 -false - - - -0 -true - - - -OptionsTab_off -Position - - -0 -235.000000,44.000000,0.000000 - - - -0 -60.000000,44.000000,0.000000 - - - -WorldOptionsTab -Show - - -0 -true - - - -0 -false - - - - + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_partnernetpassword.xui b/Minecraft.Client/Common/Media/xuiscene_partnernetpassword.xui index f90f6347..5e92ce71 100644 --- a/Minecraft.Client/Common/Media/xuiscene_partnernetpassword.xui +++ b/Minecraft.Client/Common/Media/xuiscene_partnernetpassword.xui @@ -1,50 +1,50 @@ - -1280.000000 -720.000000 - - - -PartnernetPassword -450.000000 -206.000000 -415.000031,210.000031,0.000000 -CScene_PartnernetPassword -XuiScene -XuiEditPartnernetPassword - - - -XuiEditPartnernetPassword -400.000000 -42.000000 -25.000019,54.250000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiOK - - - - -XuiLabel1 -341.000000 -32.000008 -24.500015,19.250000,0.000000 -XuiLabelDark -Enter Partnernet Password - - - - -XuiOK -400.000000 -40.000000 -25.000046,140.750031,0.000000 -XuiMainMenuButton_L -XuiEditPartnernetPassword -OK -22528 - - - + + 1280.000000 + 720.000000 + + + + PartnernetPassword + 450.000000 + 206.000000 + 415.000031,210.000031,0.000000 + CScene_PartnernetPassword + XuiScene + XuiEditPartnernetPassword + + + + XuiEditPartnernetPassword + 400.000000 + 42.000000 + 25.000019,54.250000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiOK + + + + + XuiLabel1 + 341.000000 + 32.000008 + 24.500015,19.250000,0.000000 + XuiLabelDark + Enter Partnernet Password + + + + + XuiOK + 400.000000 + 40.000000 + 25.000046,140.750031,0.000000 + XuiMainMenuButton_L + XuiEditPartnernetPassword + OK + 22528 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_partnernetpassword_480.xui b/Minecraft.Client/Common/Media/xuiscene_partnernetpassword_480.xui index d386cf68..f0625ab4 100644 --- a/Minecraft.Client/Common/Media/xuiscene_partnernetpassword_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_partnernetpassword_480.xui @@ -1,49 +1,49 @@ - -1280.000000 -720.000000 - - - -PartnernetPassword -340.000000 -160.000000 -470.000061,240.000000,0.000000 -CScene_PartnernetPassword -XuiScene -XuiEditPartnernetPassword - - - -XuiEditPartnernetPassword -300.000000 -32.000000 -20.000019,44.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiOK - - - - -XuiLabel1 -300.000000 -25.000000 -20.000019,14.000000,0.000000 -XuiLabelDarkLeftWrapSmall -Enter Partnernet Password - - - - -XuiOK -300.000000 -20.000015,110.000000,0.000000 -XuiMainMenuButton_L -XuiEditPartnernetPassword -OK -22528 - - - + + 1280.000000 + 720.000000 + + + + PartnernetPassword + 340.000000 + 160.000000 + 470.000061,240.000000,0.000000 + CScene_PartnernetPassword + XuiScene + XuiEditPartnernetPassword + + + + XuiEditPartnernetPassword + 300.000000 + 32.000000 + 20.000019,44.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiOK + + + + + XuiLabel1 + 300.000000 + 25.000000 + 20.000019,14.000000,0.000000 + XuiLabelDarkLeftWrapSmall + Enter Partnernet Password + + + + + XuiOK + 300.000000 + 20.000015,110.000000,0.000000 + XuiMainMenuButton_L + XuiEditPartnernetPassword + OK + 22528 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_pause.xui b/Minecraft.Client/Common/Media/xuiscene_pause.xui index 0936d38f..f3307603 100644 --- a/Minecraft.Client/Common/Media/xuiscene_pause.xui +++ b/Minecraft.Client/Common/Media/xuiscene_pause.xui @@ -1,88 +1,88 @@ - -1280.000000 -720.000000 - - - -ScenePause -1280.000000 -720.000000 -CScene_Pause -XuiMenuScene -XuiButton1 - - - -XuiButton1 -400.000000 -40.000000 -440.000031,250.000000,0.000000 -XuiMainMenuButton_L -XuiButton6 -XuiButton2 -22528 - - - - -XuiButton2 -400.000000 -40.000000 -440.000092,300.000000,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 -22528 - - - - -XuiButton3 -400.000000 -40.000000 -440.000092,350.000000,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 -22528 - - - - -XuiButton4 -400.000000 -40.000000 -440.000092,400.000000,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 -22528 - - - - -XuiButton5 -400.000000 -40.000000 -440.000092,450.000000,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 -22528 - - - - -XuiButton6 -400.000000 -40.000000 -440.000031,500.000000,0.000000 -XuiMainMenuButton_L -XuiButton5 -XuiButton1 -22528 - - - + + 1280.000000 + 720.000000 + + + + ScenePause + 1280.000000 + 720.000000 + CScene_Pause + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 400.000000 + 40.000000 + 440.000031,250.000000,0.000000 + XuiMainMenuButton_L + XuiButton6 + XuiButton2 + 22528 + + + + + XuiButton2 + 400.000000 + 40.000000 + 440.000092,300.000000,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + 22528 + + + + + XuiButton3 + 400.000000 + 40.000000 + 440.000092,350.000000,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + 22528 + + + + + XuiButton4 + 400.000000 + 40.000000 + 440.000092,400.000000,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + 22528 + + + + + XuiButton5 + 400.000000 + 40.000000 + 440.000092,450.000000,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + 22528 + + + + + XuiButton6 + 400.000000 + 40.000000 + 440.000031,500.000000,0.000000 + XuiMainMenuButton_L + XuiButton5 + XuiButton1 + 22528 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_pause_480.xui b/Minecraft.Client/Common/Media/xuiscene_pause_480.xui index 21d40518..0c851b74 100644 --- a/Minecraft.Client/Common/Media/xuiscene_pause_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_pause_480.xui @@ -1,88 +1,88 @@ - -640.000000 -480.000000 - - - -ScenePause -640.000000 -480.000000 -CScene_Pause -XuiMenuScene -XuiButton1 - - - -XuiButton1 -300.000000 -36.000000 -170.000000,140.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton6 -XuiButton2 -22528 - - - - -XuiButton2 -300.000000 -36.000000 -170.000061,180.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton1 -XuiButton3 -22528 - - - - -XuiButton3 -300.000000 -36.000000 -170.000061,220.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton2 -XuiButton4 -22528 - - - - -XuiButton4 -300.000000 -36.000000 -170.000061,260.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton3 -XuiButton5 -22528 - - - - -XuiButton5 -300.000000 -36.000000 -170.000061,300.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton4 -XuiButton6 -22528 - - - - -XuiButton6 -300.000000 -36.000000 -170.000000,340.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton5 -XuiButton1 -22528 - - - + + 640.000000 + 480.000000 + + + + ScenePause + 640.000000 + 480.000000 + CScene_Pause + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 300.000000 + 36.000000 + 170.000000,140.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton6 + XuiButton2 + 22528 + + + + + XuiButton2 + 300.000000 + 36.000000 + 170.000061,180.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton1 + XuiButton3 + 22528 + + + + + XuiButton3 + 300.000000 + 36.000000 + 170.000061,220.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton2 + XuiButton4 + 22528 + + + + + XuiButton4 + 300.000000 + 36.000000 + 170.000061,260.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton3 + XuiButton5 + 22528 + + + + + XuiButton5 + 300.000000 + 36.000000 + 170.000061,300.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton4 + XuiButton6 + 22528 + + + + + XuiButton6 + 300.000000 + 36.000000 + 170.000000,340.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton5 + XuiButton1 + 22528 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_pause_small.xui b/Minecraft.Client/Common/Media/xuiscene_pause_small.xui index e77283c6..0d921a1d 100644 --- a/Minecraft.Client/Common/Media/xuiscene_pause_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_pause_small.xui @@ -1,88 +1,88 @@ - -640.000000 -360.000000 - - - -ScenePause -640.000000 -360.000000 -CScene_Pause -XuiMenuScene -XuiButton1 - - - -XuiButton1 -400.000000 -40.000000 -120.000031,48.000000,0.000000 -XuiMainMenuButton_L -XuiButton6 -XuiButton2 -22528 - - - - -XuiButton2 -400.000000 -40.000000 -120.000092,93.000000,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 -22528 - - - - -XuiButton3 -400.000000 -40.000000 -120.000092,138.000000,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 -22528 - - - - -XuiButton4 -400.000000 -40.000000 -120.000092,183.000000,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 -22528 - - - - -XuiButton5 -400.000000 -40.000000 -120.000092,228.000000,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 -22528 - - - - -XuiButton6 -400.000000 -40.000000 -120.000031,273.000000,0.000000 -XuiMainMenuButton_L -XuiButton5 -XuiButton1 -22528 - - - + + 640.000000 + 360.000000 + + + + ScenePause + 640.000000 + 360.000000 + CScene_Pause + XuiMenuScene + XuiButton1 + + + + XuiButton1 + 400.000000 + 40.000000 + 120.000031,48.000000,0.000000 + XuiMainMenuButton_L + XuiButton6 + XuiButton2 + 22528 + + + + + XuiButton2 + 400.000000 + 40.000000 + 120.000092,93.000000,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + 22528 + + + + + XuiButton3 + 400.000000 + 40.000000 + 120.000092,138.000000,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + 22528 + + + + + XuiButton4 + 400.000000 + 40.000000 + 120.000092,183.000000,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + 22528 + + + + + XuiButton5 + 400.000000 + 40.000000 + 120.000092,228.000000,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + 22528 + + + + + XuiButton6 + 400.000000 + 40.000000 + 120.000031,273.000000,0.000000 + XuiMainMenuButton_L + XuiButton5 + XuiButton1 + 22528 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_reinstall.xui b/Minecraft.Client/Common/Media/xuiscene_reinstall.xui index 1a97089d..6fe81a96 100644 --- a/Minecraft.Client/Common/Media/xuiscene_reinstall.xui +++ b/Minecraft.Client/Common/Media/xuiscene_reinstall.xui @@ -1,89 +1,89 @@ - -1280.000000 -720.000000 - - - -SceneReinstall -1280.000000 -720.000000 -CScene_Reinstall -XuiMenuScene -FocusSink - - - -XuiButton1 -450.000000 -40.000000 -415.000000,250.000000,0.000000 -XuiMainMenuButton_L -XuiButton6 -XuiButton2 - - - - -XuiButton2 -450.000000 -40.000000 -415.000000,299.999969,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 - - - - -XuiButton3 -450.000000 -40.000000 -415.000000,349.999939,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 - - - - -XuiButton4 -450.000000 -40.000000 -415.000000,399.999939,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 - - - - -XuiButton5 -450.000000 -40.000000 -415.000000,449.999939,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 - - - - -XuiButton6 -450.000000 -40.000000 -415.000000,500.000000,0.000000 -XuiMainMenuButton_L -XuiButton5 -XuiButton1 - - - - -FocusSink -145.000000 -31.000000 - - - + + 1280.000000 + 720.000000 + + + + SceneReinstall + 1280.000000 + 720.000000 + CScene_Reinstall + XuiMenuScene + FocusSink + + + + XuiButton1 + 450.000000 + 40.000000 + 415.000000,250.000000,0.000000 + XuiMainMenuButton_L + XuiButton6 + XuiButton2 + + + + + XuiButton2 + 450.000000 + 40.000000 + 415.000000,299.999969,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + + + + + XuiButton3 + 450.000000 + 40.000000 + 415.000000,349.999939,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + + + + + XuiButton4 + 450.000000 + 40.000000 + 415.000000,399.999939,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + + + + + XuiButton5 + 450.000000 + 40.000000 + 415.000000,449.999939,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + + + + + XuiButton6 + 450.000000 + 40.000000 + 415.000000,500.000000,0.000000 + XuiMainMenuButton_L + XuiButton5 + XuiButton1 + + + + + FocusSink + 145.000000 + 31.000000 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_reinstall_480.xui b/Minecraft.Client/Common/Media/xuiscene_reinstall_480.xui index 762641be..4313bc6c 100644 --- a/Minecraft.Client/Common/Media/xuiscene_reinstall_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_reinstall_480.xui @@ -1,95 +1,95 @@ - -640.000000 -480.000000 - - - -SceneReinstall -640.000000 -480.000000 -CScene_Reinstall -XuiMenuScene -FocusSink - - - -XuiButton1 -300.000000 -36.000000 -170.000000,140.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton6 -XuiButton2 -22528 - - - - -XuiButton2 -300.000000 -36.000000 -170.000061,180.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton1 -XuiButton3 -22528 - - - - -XuiButton3 -300.000000 -36.000000 -170.000061,220.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton2 -XuiButton4 -22528 - - - - -XuiButton4 -300.000000 -36.000000 -170.000061,260.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton3 -XuiButton5 -22528 - - - - -XuiButton5 -300.000000 -36.000000 -170.000061,300.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton4 -XuiButton6 -22528 - - - - -XuiButton6 -300.000000 -36.000000 -170.000000,340.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButton5 -XuiButton1 -22528 - - - - -FocusSink -145.000000 -31.000000 - - - + + 640.000000 + 480.000000 + + + + SceneReinstall + 640.000000 + 480.000000 + CScene_Reinstall + XuiMenuScene + FocusSink + + + + XuiButton1 + 300.000000 + 36.000000 + 170.000000,140.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton6 + XuiButton2 + 22528 + + + + + XuiButton2 + 300.000000 + 36.000000 + 170.000061,180.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton1 + XuiButton3 + 22528 + + + + + XuiButton3 + 300.000000 + 36.000000 + 170.000061,220.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton2 + XuiButton4 + 22528 + + + + + XuiButton4 + 300.000000 + 36.000000 + 170.000061,260.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton3 + XuiButton5 + 22528 + + + + + XuiButton5 + 300.000000 + 36.000000 + 170.000061,300.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton4 + XuiButton6 + 22528 + + + + + XuiButton6 + 300.000000 + 36.000000 + 170.000000,340.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButton5 + XuiButton1 + 22528 + + + + + FocusSink + 145.000000 + 31.000000 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_reinstall_small.xui b/Minecraft.Client/Common/Media/xuiscene_reinstall_small.xui index c2819303..aad8fe87 100644 --- a/Minecraft.Client/Common/Media/xuiscene_reinstall_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_reinstall_small.xui @@ -1,95 +1,95 @@ - -640.000000 -360.000000 - - - -SceneReinstall -640.000000 -360.000000 -CScene_Reinstall -XuiMenuScene -FocusSink - - - -XuiButton1 -400.000000 -40.000000 -120.000031,48.000000,0.000000 -XuiMainMenuButton_L -XuiButton6 -XuiButton2 -22528 - - - - -XuiButton2 -400.000000 -40.000000 -120.000092,93.000000,0.000000 -XuiMainMenuButton_L -XuiButton1 -XuiButton3 -22528 - - - - -XuiButton3 -400.000000 -40.000000 -120.000092,138.000000,0.000000 -XuiMainMenuButton_L -XuiButton2 -XuiButton4 -22528 - - - - -XuiButton4 -400.000000 -40.000000 -120.000092,183.000000,0.000000 -XuiMainMenuButton_L -XuiButton3 -XuiButton5 -22528 - - - - -XuiButton5 -400.000000 -40.000000 -120.000092,228.000000,0.000000 -XuiMainMenuButton_L -XuiButton4 -XuiButton6 -22528 - - - - -XuiButton6 -400.000000 -40.000000 -120.000031,273.000000,0.000000 -XuiMainMenuButton_L -XuiButton5 -XuiButton1 -22528 - - - - -FocusSink -145.000000 -31.000000 - - - + + 640.000000 + 360.000000 + + + + SceneReinstall + 640.000000 + 360.000000 + CScene_Reinstall + XuiMenuScene + FocusSink + + + + XuiButton1 + 400.000000 + 40.000000 + 120.000031,48.000000,0.000000 + XuiMainMenuButton_L + XuiButton6 + XuiButton2 + 22528 + + + + + XuiButton2 + 400.000000 + 40.000000 + 120.000092,93.000000,0.000000 + XuiMainMenuButton_L + XuiButton1 + XuiButton3 + 22528 + + + + + XuiButton3 + 400.000000 + 40.000000 + 120.000092,138.000000,0.000000 + XuiMainMenuButton_L + XuiButton2 + XuiButton4 + 22528 + + + + + XuiButton4 + 400.000000 + 40.000000 + 120.000092,183.000000,0.000000 + XuiMainMenuButton_L + XuiButton3 + XuiButton5 + 22528 + + + + + XuiButton5 + 400.000000 + 40.000000 + 120.000092,228.000000,0.000000 + XuiMainMenuButton_L + XuiButton4 + XuiButton6 + 22528 + + + + + XuiButton6 + 400.000000 + 40.000000 + 120.000031,273.000000,0.000000 + XuiMainMenuButton_L + XuiButton5 + XuiButton1 + 22528 + + + + + FocusSink + 145.000000 + 31.000000 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_savemessage.xui b/Minecraft.Client/Common/Media/xuiscene_savemessage.xui index 9c382c40..da736d82 100644 --- a/Minecraft.Client/Common/Media/xuiscene_savemessage.xui +++ b/Minecraft.Client/Common/Media/xuiscene_savemessage.xui @@ -1,44 +1,44 @@ - -1280.000000 -720.000000 - - - -SceneSaveMessage -520.000000 -420.000000 -380.000000,200.000000,0.000000 -CScene_SaveMessage -XuiScene -ConfirmButton - - - -ConfirmButton -410.000000 -40.000000 -55.000000,340.000000,0.000000 -XuiMainMenuButton_L - - - - -Description -450.000000 -190.000000 -35.000000,130.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiSavingIcon -48.000000 -73.000000 -236.000000,37.999996,0.000000 -SaveIcon - - - + + 1280.000000 + 720.000000 + + + + SceneSaveMessage + 520.000000 + 420.000000 + 380.000000,200.000000,0.000000 + CScene_SaveMessage + XuiScene + ConfirmButton + + + + ConfirmButton + 410.000000 + 40.000000 + 55.000000,340.000000,0.000000 + XuiMainMenuButton_L + + + + + Description + 450.000000 + 190.000000 + 35.000000,130.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiSavingIcon + 48.000000 + 73.000000 + 236.000000,37.999996,0.000000 + SaveIcon + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_savemessage_480.xui b/Minecraft.Client/Common/Media/xuiscene_savemessage_480.xui index 13a58eca..983d4d5a 100644 --- a/Minecraft.Client/Common/Media/xuiscene_savemessage_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_savemessage_480.xui @@ -1,44 +1,44 @@ - -640.000000 -480.000000 - - - -SceneSaveMessage -400.000000 -280.000000 -119.000000,130.000000,0.000000 -CScene_SaveMessage -XuiScene -ConfirmButton - - - -ConfirmButton -300.000000 -36.000000 -50.000019,218.000000,0.000000 -XuiMainMenuButton_L_Thin - - - - -Description -352.000000 -116.000000 -25.000015,100.000000,0.000000 -XuiLabelDarkLeftWrapSmall - - - - -XuiSavingIcon -48.000000 -73.000000 -176.000092,18.000000,0.000000 -SaveIcon - - - + + 640.000000 + 480.000000 + + + + SceneSaveMessage + 400.000000 + 280.000000 + 119.000000,130.000000,0.000000 + CScene_SaveMessage + XuiScene + ConfirmButton + + + + ConfirmButton + 300.000000 + 36.000000 + 50.000019,218.000000,0.000000 + XuiMainMenuButton_L_Thin + + + + + Description + 352.000000 + 116.000000 + 25.000015,100.000000,0.000000 + XuiLabelDarkLeftWrapSmall + + + + + XuiSavingIcon + 48.000000 + 73.000000 + 176.000092,18.000000,0.000000 + SaveIcon + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_All.xui b/Minecraft.Client/Common/Media/xuiscene_settings_All.xui index 70fe482d..971fa272 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_All.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_All.xui @@ -1,91 +1,81 @@ - -1280.000000 -720.000000 - - - -SceneSettings -1280.000000 -720.000000 -16 -CScene_SettingsAll -XuiBlankScene -XuiButtonOptions - - - -XuiButtonResetToDefaults -450.000000 -40.000000 -415.000031,500.000000,0.000000 -XuiMainMenuButton_L -XuiButtonUI - - - - -XuiButtonUI -450.000000 -40.000000 -415.000031,450.000000,0.000000 -XuiMainMenuButton_L -XuiButtonGraphics -XuiButtonResetToDefaults - - - - -XuiButtonGraphics -450.000000 -40.000000 -415.000031,400.000000,0.000000 -XuiMainMenuButton_L -XuiButtonControl -XuiButtonUI - - - - -XuiButtonControl -450.000000 -40.000000 -415.000031,350.000000,0.000000 -XuiMainMenuButton_L -XuiButtonAudio -XuiButtonGraphics - - - - -XuiButtonAudio -450.000000 -40.000000 -415.000031,300.000000,0.000000 -XuiMainMenuButton_L -XuiButtonOptions -XuiButtonControl - - - - -XuiButtonOptions -450.000000 -40.000000 -415.000031,250.000015,0.000000 -XuiMainMenuButton_L -XuiButtonAudio - - - - - -Logo -1280.000000 -138.000000 -0.000000,56.000000,0.000000 -true -MenuTitleLogo - - + + 1280.000000 + 720.000000 + + + + SceneSettings + 1280.000000 + 720.000000 + 16 + CScene_SettingsAll + XuiBlankScene + XuiButtonOptions + + + + XuiButtonResetToDefaults + 450.000000 + 40.000000 + 415.000031,500.000000,0.000000 + XuiMainMenuButton_L + XuiButtonUI + + + + + XuiButtonUI + 450.000000 + 40.000000 + 415.000031,450.000000,0.000000 + XuiMainMenuButton_L + XuiButtonGraphics + XuiButtonResetToDefaults + + + + + XuiButtonGraphics + 450.000000 + 40.000000 + 415.000031,400.000000,0.000000 + XuiMainMenuButton_L + XuiButtonControl + XuiButtonUI + + + + + XuiButtonControl + 450.000000 + 40.000000 + 415.000031,350.000000,0.000000 + XuiMainMenuButton_L + XuiButtonAudio + XuiButtonGraphics + + + + + XuiButtonAudio + 450.000000 + 40.000000 + 415.000031,300.000000,0.000000 + XuiMainMenuButton_L + XuiButtonOptions + XuiButtonControl + + + + + XuiButtonOptions + 450.000000 + 40.000000 + 415.000031,250.000015,0.000000 + XuiMainMenuButton_L + XuiButtonAudio + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_All_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_All_480.xui index f23e5091..88bd48a7 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_All_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_All_480.xui @@ -1,90 +1,80 @@ - -640.000000 -480.000000 - - - -SceneSettings -640.000000 -480.000000 -CScene_SettingsAll -XuiBlankScene -XuiButtonOptions - - - -XuiButtonResetToDefaults -300.000000 -36.000000 -170.000015,340.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonUI - - - - -XuiButtonUI -300.000000 -36.000000 -170.000015,300.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonGraphics -XuiButtonResetToDefaults - - - - -XuiButtonGraphics -300.000000 -36.000000 -170.000015,260.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonControl -XuiButtonUI - - - - -XuiButtonControl -300.000000 -36.000000 -170.000015,220.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonAudio -XuiButtonGraphics - - - - -XuiButtonAudio -300.000000 -36.000000 -170.000015,180.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonOptions -XuiButtonControl - - - - -XuiButtonOptions -300.000000 -36.000000 -170.000015,140.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiButtonAudio - - - - - -Logo -640.000000 -70.000000 -0.000000,48.000000,0.000000 -true -MenuTitleLogo - - + + 640.000000 + 480.000000 + + + + SceneSettings + 640.000000 + 480.000000 + CScene_SettingsAll + XuiBlankScene + XuiButtonOptions + + + + XuiButtonResetToDefaults + 300.000000 + 36.000000 + 170.000015,340.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonUI + + + + + XuiButtonUI + 300.000000 + 36.000000 + 170.000015,300.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonGraphics + XuiButtonResetToDefaults + + + + + XuiButtonGraphics + 300.000000 + 36.000000 + 170.000015,260.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonControl + XuiButtonUI + + + + + XuiButtonControl + 300.000000 + 36.000000 + 170.000015,220.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonAudio + XuiButtonGraphics + + + + + XuiButtonAudio + 300.000000 + 36.000000 + 170.000015,180.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonOptions + XuiButtonControl + + + + + XuiButtonOptions + 300.000000 + 36.000000 + 170.000015,140.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiButtonAudio + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_All_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_All_small.xui index 67100109..46da977b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_All_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_All_small.xui @@ -1,82 +1,82 @@ - -640.000000 -360.000000 - - - -SceneSettings -320.000000 -263.000000 -160.000000,10.000000,0.000000 -16 -CScene_SettingsAll -XuiBlankScene -XuiButtonOptions - - - -XuiButtonResetToDefaults -297.000000 -40.000000 -11.000000,236.000000,0.000000 -XuiMainMenuButton_L -XuiButtonUI - - - - -XuiButtonUI -297.000000 -40.000000 -11.000000,190.000000,0.000000 -XuiMainMenuButton_L -XuiButtonGraphics -XuiButtonResetToDefaults - - - - -XuiButtonGraphics -297.000000 -40.000000 -11.000000,144.000000,0.000000 -XuiMainMenuButton_L -XuiButtonControl -XuiButtonUI - - - - -XuiButtonControl -297.000000 -40.000000 -11.000000,98.000000,0.000000 -XuiMainMenuButton_L -XuiButtonAudio -XuiButtonGraphics - - - - -XuiButtonAudio -297.000000 -40.000000 -11.000000,52.000000,0.000000 -XuiMainMenuButton_L -XuiButtonOptions -XuiButtonControl - - - - -XuiButtonOptions -297.000000 -40.000000 -11.000000,6.000000,0.000000 -XuiMainMenuButton_L -XuiButtonAudio - - - + + 640.000000 + 360.000000 + + + + SceneSettings + 320.000000 + 263.000000 + 160.000000,10.000000,0.000000 + 16 + CScene_SettingsAll + XuiBlankScene + XuiButtonOptions + + + + XuiButtonResetToDefaults + 297.000000 + 40.000000 + 11.000000,236.000000,0.000000 + XuiMainMenuButton_L + XuiButtonUI + + + + + XuiButtonUI + 297.000000 + 40.000000 + 11.000000,190.000000,0.000000 + XuiMainMenuButton_L + XuiButtonGraphics + XuiButtonResetToDefaults + + + + + XuiButtonGraphics + 297.000000 + 40.000000 + 11.000000,144.000000,0.000000 + XuiMainMenuButton_L + XuiButtonControl + XuiButtonUI + + + + + XuiButtonControl + 297.000000 + 40.000000 + 11.000000,98.000000,0.000000 + XuiMainMenuButton_L + XuiButtonAudio + XuiButtonGraphics + + + + + XuiButtonAudio + 297.000000 + 40.000000 + 11.000000,52.000000,0.000000 + XuiMainMenuButton_L + XuiButtonOptions + XuiButtonControl + + + + + XuiButtonOptions + 297.000000 + 40.000000 + 11.000000,6.000000,0.000000 + XuiMainMenuButton_L + XuiButtonAudio + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Audio.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Audio.xui index 5924e6ab..285216de 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Audio.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Audio.xui @@ -1,81 +1,81 @@ - -1280.000000 -720.000000 - - - -SceneSettingsAudio -330.000000 -106.000000 -474.000000,250.000000,0.000000 -16 -CScene_SettingsAudio -GraphicPanel -XuiSliderMusic\XuiSlider - - - -XuiSliderSound -306.000000 -38.000000 -12.000031,56.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderMusic\XuiSlider -XuiSliderGamma\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -SchemeList -XuiSliderMusic -XuiSliderGamma - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderMusic -306.000000 -38.000000 -12.000031,12.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiButtonOptions -XuiSliderSound\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider - - - - -FocusSink -520.000000 -70.000000 - - - - + + 1280.000000 + 720.000000 + + + + SceneSettingsAudio + 330.000000 + 106.000000 + 474.000000,250.000000,0.000000 + 16 + CScene_SettingsAudio + GraphicPanel + XuiSliderMusic\XuiSlider + + + + XuiSliderSound + 306.000000 + 38.000000 + 12.000031,56.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderMusic\XuiSlider + XuiSliderGamma\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + SchemeList + XuiSliderMusic + XuiSliderGamma + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderMusic + 306.000000 + 38.000000 + 12.000031,12.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiButtonOptions + XuiSliderSound\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + + + + + FocusSink + 520.000000 + 70.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Audio_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Audio_480.xui index 5f0e138b..70cde661 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Audio_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Audio_480.xui @@ -1,76 +1,76 @@ - -640.000000 -480.000000 - - - -SceneSettingsAudio -320.000000 -108.000000 -160.000031,180.000000,0.000000 -CScene_SettingsAudio -GraphicPanel -XuiSliderMusic\XuiSlider - - - -XuiSliderSound -306.000000 -38.000000 -6.000031,57.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderMusic\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -SchemeList -XuiSliderMusic -XuiSliderGamma - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderMusic -306.000000 -38.000000 -6.000031,12.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSound\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider - - - - -FocusSink -320.000000 -70.000000 - - - - + + 640.000000 + 480.000000 + + + + SceneSettingsAudio + 320.000000 + 108.000000 + 160.000031,180.000000,0.000000 + CScene_SettingsAudio + GraphicPanel + XuiSliderMusic\XuiSlider + + + + XuiSliderSound + 306.000000 + 38.000000 + 6.000031,57.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderMusic\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + SchemeList + XuiSliderMusic + XuiSliderGamma + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderMusic + 306.000000 + 38.000000 + 6.000031,12.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSound\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + + + + + FocusSink + 320.000000 + 70.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Audio_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Audio_small.xui index 8ee57aa0..e021374e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Audio_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Audio_small.xui @@ -1,79 +1,79 @@ - -640.000000 -360.000000 - - - -SceneSettingsAudio -320.000000 -120.000000 -160.000000,74.000000,0.000000 -16 -CScene_SettingsAudio -GraphicPanel -XuiSliderMusic\XuiSlider - - - -XuiSliderSound -306.000000 -38.000000 -6.000031,61.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderMusic\XuiSlider -XuiSliderGamma\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -SchemeList -XuiSliderMusic -XuiSliderGamma - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderMusic -306.000000 -38.000000 -6.000031,16.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiButtonOptions -XuiSliderSound\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider - - - - -FocusSink -320.000000 -70.000000 - - - - + + 640.000000 + 360.000000 + + + + SceneSettingsAudio + 320.000000 + 120.000000 + 160.000000,74.000000,0.000000 + 16 + CScene_SettingsAudio + GraphicPanel + XuiSliderMusic\XuiSlider + + + + XuiSliderSound + 306.000000 + 38.000000 + 6.000031,61.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderMusic\XuiSlider + XuiSliderGamma\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + SchemeList + XuiSliderMusic + XuiSliderGamma + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderMusic + 306.000000 + 38.000000 + 6.000031,16.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiButtonOptions + XuiSliderSound\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + + + + + FocusSink + 320.000000 + 70.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Control.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Control.xui index 0db2e91f..467198fc 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Control.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Control.xui @@ -1,78 +1,78 @@ - -1280.000000 -720.000000 - - - -SceneSettingsControl -330.000000 -106.000000 -474.000000,307.000000,0.000000 -16 -CScene_SettingsControl -GraphicPanel -XuiSliderSensitivityInGame\XuiSlider - - - -XuiSliderSensitivityInMenu -306.000000 -38.000000 -12.000031,56.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInGame\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderSensitivityInGame -306.000000 -38.000000 -12.000031,12.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInMenu\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - + + 1280.000000 + 720.000000 + + + + SceneSettingsControl + 330.000000 + 106.000000 + 474.000000,307.000000,0.000000 + 16 + CScene_SettingsControl + GraphicPanel + XuiSliderSensitivityInGame\XuiSlider + + + + XuiSliderSensitivityInMenu + 306.000000 + 38.000000 + 12.000031,56.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInGame\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderSensitivityInGame + 306.000000 + 38.000000 + 12.000031,12.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInMenu\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Control_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Control_480.xui index 2a4ae743..cadfd707 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Control_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Control_480.xui @@ -1,75 +1,75 @@ - -640.000000 -480.000000 - - - -SceneSettingsControl -320.000000 -106.000000 -160.000031,187.000015,0.000000 -CScene_SettingsControl -GraphicPanel -XuiSliderSensitivityInGame\XuiSlider - - - -XuiSliderSensitivityInMenu -306.000000 -38.000000 -6.000031,55.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInGame\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderSensitivityInGame -306.000000 -38.000000 -6.000031,10.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInMenu\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - + + 640.000000 + 480.000000 + + + + SceneSettingsControl + 320.000000 + 106.000000 + 160.000031,187.000015,0.000000 + CScene_SettingsControl + GraphicPanel + XuiSliderSensitivityInGame\XuiSlider + + + + XuiSliderSensitivityInMenu + 306.000000 + 38.000000 + 6.000031,55.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInGame\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderSensitivityInGame + 306.000000 + 38.000000 + 6.000031,10.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInMenu\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Control_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Control_small.xui index 7cf1faaa..0e337a33 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Control_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Control_small.xui @@ -1,76 +1,76 @@ - -640.000000 -360.000000 - - - -SceneSettingsControl -320.000000 -120.000000 -160.000015,120.000015,0.000000 -16 -CScene_SettingsControl -GraphicPanel -XuiSliderSensitivityInGame\XuiSlider - - - -XuiSliderSensitivityInMenu -306.000000 -38.000000 -6.000031,55.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInGame\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderSensitivityInGame -306.000000 -38.000000 -6.000031,10.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderSensitivityInMenu\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -200 - - - - -FocusSink -306.000000 -38.000000 - - - - + + 640.000000 + 360.000000 + + + + SceneSettingsControl + 320.000000 + 120.000000 + 160.000015,120.000015,0.000000 + 16 + CScene_SettingsControl + GraphicPanel + XuiSliderSensitivityInGame\XuiSlider + + + + XuiSliderSensitivityInMenu + 306.000000 + 38.000000 + 6.000031,55.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInGame\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderSensitivityInGame + 306.000000 + 38.000000 + 6.000031,10.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderSensitivityInMenu\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + 200 + + + + + FocusSink + 306.000000 + 38.000000 + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics.xui index 53ad127b..6c24181e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics.xui @@ -1,112 +1,112 @@ - -1280.000000 -720.000000 - - - -SceneSettingsGraphics -330.000000 -222.000000 -474.000000,249.000015,0.000000 -16 -CScene_SettingsGraphics -GraphicPanel -XuiClouds - - - -XuiSliderInterfaceOpacity -306.000000 -38.000000 -12.000000,168.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderGamma\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderGamma -306.000000 -38.000000 -12.000000,124.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiCustomSkinAnim -XuiSliderInterfaceOpacity\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiCustomSkinAnim -300.000000 -32.000000 -14.000000,84.000000,0.000000 -5 -XuiBedrockFog -XuiSliderGamma\XuiSlider - - - - -XuiBedrockFog -300.000000 -32.000000 -14.000000,48.000000,0.000000 -5 -XuiClouds -XuiCustomSkinAnim - - - - -XuiClouds -300.000000 -32.000000 -14.000000,12.000000,0.000000 -5 -XuiBedrockFog - - - + + 1280.000000 + 720.000000 + + + + SceneSettingsGraphics + 330.000000 + 222.000000 + 474.000000,249.000015,0.000000 + 16 + CScene_SettingsGraphics + GraphicPanel + XuiClouds + + + + XuiSliderInterfaceOpacity + 306.000000 + 38.000000 + 12.000000,168.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderGamma\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderGamma + 306.000000 + 38.000000 + 12.000000,124.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiCustomSkinAnim + XuiSliderInterfaceOpacity\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiCustomSkinAnim + 300.000000 + 32.000000 + 14.000000,84.000000,0.000000 + 5 + XuiBedrockFog + XuiSliderGamma\XuiSlider + + + + + XuiBedrockFog + 300.000000 + 32.000000 + 14.000000,48.000000,0.000000 + 5 + XuiClouds + XuiCustomSkinAnim + + + + + XuiClouds + 300.000000 + 32.000000 + 14.000000,12.000000,0.000000 + 5 + XuiBedrockFog + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_480.xui index ebe8f700..8405de79 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_480.xui @@ -1,111 +1,111 @@ - -640.000000 -480.000000 - - - -SceneSettingsGraphics -320.000000 -192.000000 -160.000000,144.000015,0.000000 -CScene_SettingsGraphics -GraphicPanel -XuiClouds - - - -XuiSliderInterfaceOpacity -306.000000 -38.000000 -6.000000,138.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderGamma\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderGamma -306.000000 -38.000000 -6.000000,94.000000,0.000000 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiCustomSkinAnim -XuiSliderInterfaceOpacity\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiCustomSkinAnim -300.000000 -20.000000 -9.000000,62.000000,0.000000 -5 -XuiCheckboxSmall -XuiBedrockFog -XuiSliderGamma\XuiSlider - - - - -XuiBedrockFog -300.000000 -20.000000 -9.000000,38.000000,0.000000 -5 -XuiCheckboxSmall -XuiClouds -XuiCustomSkinAnim - - - - -XuiClouds -300.000000 -20.000000 -9.000000,14.000000,0.000000 -5 -XuiCheckboxSmall -XuiBedrockFog - - - + + 640.000000 + 480.000000 + + + + SceneSettingsGraphics + 320.000000 + 192.000000 + 160.000000,144.000015,0.000000 + CScene_SettingsGraphics + GraphicPanel + XuiClouds + + + + XuiSliderInterfaceOpacity + 306.000000 + 38.000000 + 6.000000,138.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderGamma\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderGamma + 306.000000 + 38.000000 + 6.000000,94.000000,0.000000 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiCustomSkinAnim + XuiSliderInterfaceOpacity\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiCustomSkinAnim + 300.000000 + 20.000000 + 9.000000,62.000000,0.000000 + 5 + XuiCheckboxSmall + XuiBedrockFog + XuiSliderGamma\XuiSlider + + + + + XuiBedrockFog + 300.000000 + 20.000000 + 9.000000,38.000000,0.000000 + 5 + XuiCheckboxSmall + XuiClouds + XuiCustomSkinAnim + + + + + XuiClouds + 300.000000 + 20.000000 + 9.000000,14.000000,0.000000 + 5 + XuiCheckboxSmall + XuiBedrockFog + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_small.xui index 9f30e5be..857f1e1b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_Graphics_small.xui @@ -1,112 +1,112 @@ - -640.000000 -360.000000 - - - -SceneSettingsGraphics -320.000000 -224.000000 -160.000000,68.000015,0.000000 -16 -CScene_SettingsGraphics -GraphicPanel -XuiClouds - - - -XuiSliderInterfaceOpacity -306.000000 -38.000000 -6.000000,158.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderGamma\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderGamma -306.000000 -38.000000 -6.000000,112.000000,0.000000 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiCustomSkinAnim -XuiSliderInterfaceOpacity\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiCustomSkinAnim -300.000000 -20.000000 -9.000000,68.000000,0.000000 -5 -XuiCheckboxSmall -XuiBedrockFog -XuiSliderGamma\XuiSlider - - - - -XuiBedrockFog -300.000000 -20.000000 -9.000000,38.000000,0.000000 -5 -XuiCheckboxSmall -XuiClouds -XuiCustomSkinAnim - - - - -XuiClouds -300.000000 -20.000000 -9.000000,8.000000,0.000000 -5 -XuiCheckboxSmall -XuiBedrockFog - - - + + 640.000000 + 360.000000 + + + + SceneSettingsGraphics + 320.000000 + 224.000000 + 160.000000,68.000015,0.000000 + 16 + CScene_SettingsGraphics + GraphicPanel + XuiClouds + + + + XuiSliderInterfaceOpacity + 306.000000 + 38.000000 + 6.000000,158.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderGamma\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderGamma + 306.000000 + 38.000000 + 6.000000,112.000000,0.000000 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiCustomSkinAnim + XuiSliderInterfaceOpacity\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiCustomSkinAnim + 300.000000 + 20.000000 + 9.000000,68.000000,0.000000 + 5 + XuiCheckboxSmall + XuiBedrockFog + XuiSliderGamma\XuiSlider + + + + + XuiBedrockFog + 300.000000 + 20.000000 + 9.000000,38.000000,0.000000 + 5 + XuiCheckboxSmall + XuiClouds + XuiCustomSkinAnim + + + + + XuiClouds + 300.000000 + 20.000000 + 9.000000,8.000000,0.000000 + 5 + XuiCheckboxSmall + XuiBedrockFog + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_UI.xui b/Minecraft.Client/Common/Media/xuiscene_settings_UI.xui index d6e4a71e..e9504021 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_UI.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_UI.xui @@ -1,152 +1,152 @@ - -1280.000000 -720.000000 - - - -SceneSettingsUI -330.000000 -328.000000 -474.000000,214.000000,0.000000 -16 -CScene_SettingsUI -GraphicPanel -XuiDisplayHUD - - - -XuiSliderUISizeSplitscreen -306.000000 -38.000000 -12.000000,274.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderUISize\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -1 -3 -1 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderUISize -306.000000 -38.000000 -12.000000,230.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiShowSplitscreenGamertags -XuiSliderUISizeSplitscreen\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity -1 -3 -1 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiShowSplitscreenGamertags -300.000000 -32.000000 -14.000000,188.000000,0.000000 -5 -XuiSplitScreen -XuiSliderUISize\XuiSlider - - - - -XuiSplitScreen -300.000000 -32.000000 -14.000000,156.000000,0.000000 -5 -XuiShowAnimatedCharacter -XuiShowSplitscreenGamertags - - - - -XuiShowAnimatedCharacter -300.000000 -32.000000 -14.000000,120.000000,0.000000 -5 -XuiDisplayDeathMessages -XuiSplitScreen - - - - -XuiDisplayDeathMessages -300.000000 -32.000000 -14.000000,84.000000,0.000000 -5 -XuiDisplayHand -XuiShowAnimatedCharacter - - - - -XuiDisplayHand -300.000000 -32.000000 -14.000000,48.000000,0.000000 -5 -XuiDisplayHUD -XuiDisplayDeathMessages - - - - -XuiDisplayHUD -300.000000 -32.000000 -14.000000,12.000000,0.000000 -5 -XuiDisplayHand -XuiDisplayHand - - - + + 1280.000000 + 720.000000 + + + + SceneSettingsUI + 330.000000 + 328.000000 + 474.000000,214.000000,0.000000 + 16 + CScene_SettingsUI + GraphicPanel + XuiDisplayHUD + + + + XuiSliderUISizeSplitscreen + 306.000000 + 38.000000 + 12.000000,274.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderUISize\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 1 + 3 + 1 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderUISize + 306.000000 + 38.000000 + 12.000000,230.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiShowSplitscreenGamertags + XuiSliderUISizeSplitscreen\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + 1 + 3 + 1 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiShowSplitscreenGamertags + 300.000000 + 32.000000 + 14.000000,188.000000,0.000000 + 5 + XuiSplitScreen + XuiSliderUISize\XuiSlider + + + + + XuiSplitScreen + 300.000000 + 32.000000 + 14.000000,156.000000,0.000000 + 5 + XuiShowAnimatedCharacter + XuiShowSplitscreenGamertags + + + + + XuiShowAnimatedCharacter + 300.000000 + 32.000000 + 14.000000,120.000000,0.000000 + 5 + XuiDisplayDeathMessages + XuiSplitScreen + + + + + XuiDisplayDeathMessages + 300.000000 + 32.000000 + 14.000000,84.000000,0.000000 + 5 + XuiDisplayHand + XuiShowAnimatedCharacter + + + + + XuiDisplayHand + 300.000000 + 32.000000 + 14.000000,48.000000,0.000000 + 5 + XuiDisplayHUD + XuiDisplayDeathMessages + + + + + XuiDisplayHUD + 300.000000 + 32.000000 + 14.000000,12.000000,0.000000 + 5 + XuiDisplayHand + XuiDisplayHand + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_UI_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_UI_480.xui index 9c7a1625..1911fd6f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_UI_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_UI_480.xui @@ -1,157 +1,157 @@ - -640.000000 -480.000000 - - - -SceneSettingsUI -320.000000 -250.000000 -160.000000,134.000000,0.000000 -16 -CScene_SettingsUI -GraphicPanel -XuiDisplayHUD - - - -XuiSliderUISizeSplitscreen -306.000000 -38.000000 -6.000000,204.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderUISize\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -1 -3 -1 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderUISize -306.000000 -38.000000 -6.000000,162.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiShowSplitscreenGamertags -XuiSliderUISizeSplitscreen\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity -1 -3 -1 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiShowSplitscreenGamertags -300.000000 -20.000000 -9.000000,136.000000,0.000000 -5 -XuiCheckboxSmall -XuiSplitScreen -XuiSliderUISize\XuiSlider - - - - -XuiSplitScreen -300.000000 -20.000000 -9.000000,112.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowAnimatedCharacter -XuiShowSplitscreenGamertags - - - - -XuiShowAnimatedCharacter -300.000000 -20.000000 -9.000000,88.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayDeathMessages -XuiSplitScreen - - - - -XuiDisplayDeathMessages -300.000000 -20.000000 -9.000000,64.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHand -XuiShowAnimatedCharacter - - - - -XuiDisplayHand -300.000000 -20.000000 -9.000000,40.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHUD -XuiDisplayDeathMessages - - - - -XuiDisplayHUD -300.000000 -20.000000 -9.000000,16.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHand - - - + + 640.000000 + 480.000000 + + + + SceneSettingsUI + 320.000000 + 250.000000 + 160.000000,134.000000,0.000000 + 16 + CScene_SettingsUI + GraphicPanel + XuiDisplayHUD + + + + XuiSliderUISizeSplitscreen + 306.000000 + 38.000000 + 6.000000,204.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderUISize\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 1 + 3 + 1 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderUISize + 306.000000 + 38.000000 + 6.000000,162.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiShowSplitscreenGamertags + XuiSliderUISizeSplitscreen\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + 1 + 3 + 1 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiShowSplitscreenGamertags + 300.000000 + 20.000000 + 9.000000,136.000000,0.000000 + 5 + XuiCheckboxSmall + XuiSplitScreen + XuiSliderUISize\XuiSlider + + + + + XuiSplitScreen + 300.000000 + 20.000000 + 9.000000,112.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowAnimatedCharacter + XuiShowSplitscreenGamertags + + + + + XuiShowAnimatedCharacter + 300.000000 + 20.000000 + 9.000000,88.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayDeathMessages + XuiSplitScreen + + + + + XuiDisplayDeathMessages + 300.000000 + 20.000000 + 9.000000,64.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHand + XuiShowAnimatedCharacter + + + + + XuiDisplayHand + 300.000000 + 20.000000 + 9.000000,40.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHUD + XuiDisplayDeathMessages + + + + + XuiDisplayHUD + 300.000000 + 20.000000 + 9.000000,16.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHand + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_UI_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_UI_small.xui index 6fc2a017..d8a0f603 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_UI_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_UI_small.xui @@ -1,157 +1,157 @@ - -640.000000 -360.000000 - - - -SceneSettingsUI -320.000000 -294.000000 -160.000000,10.000000,0.000000 -16 -CScene_SettingsUI -GraphicPanel -XuiDisplayHUD - - - -XuiSliderUISizeSplitscreen -306.000000 -38.000000 -6.000000,242.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderUISize\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -1 -3 -1 - - - - -FocusSink -306.000000 -38.000000 - - - - - -XuiSliderUISize -306.000000 -38.000000 -6.000000,196.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiShowSplitscreenGamertags -XuiSliderUISizeSplitscreen\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -SchemeList -XuiSliderSound -XuiSliderSensitivity -1 -3 -1 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiShowSplitscreenGamertags -300.000000 -20.000000 -9.000000,164.000000,0.000000 -5 -XuiCheckboxSmall -XuiSplitScreen -XuiSliderUISize\XuiSlider - - - - -XuiSplitScreen -300.000000 -20.000000 -9.000000,134.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowAnimatedCharacter -XuiShowSplitscreenGamertags - - - - -XuiShowAnimatedCharacter -300.000000 -20.000000 -9.000000,104.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayDeathMessages -XuiSplitScreen - - - - -XuiDisplayDeathMessages -300.000000 -20.000000 -9.000000,74.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHand -XuiShowAnimatedCharacter - - - - -XuiDisplayHand -300.000000 -20.000000 -9.000000,44.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHUD -XuiDisplayDeathMessages - - - - -XuiDisplayHUD -300.000000 -20.000000 -9.000000,14.000000,0.000000 -5 -XuiCheckboxSmall -XuiDisplayHand - - - + + 640.000000 + 360.000000 + + + + SceneSettingsUI + 320.000000 + 294.000000 + 160.000000,10.000000,0.000000 + 16 + CScene_SettingsUI + GraphicPanel + XuiDisplayHUD + + + + XuiSliderUISizeSplitscreen + 306.000000 + 38.000000 + 6.000000,242.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderUISize\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 1 + 3 + 1 + + + + + FocusSink + 306.000000 + 38.000000 + + + + + + XuiSliderUISize + 306.000000 + 38.000000 + 6.000000,196.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiShowSplitscreenGamertags + XuiSliderUISizeSplitscreen\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + SchemeList + XuiSliderSound + XuiSliderSensitivity + 1 + 3 + 1 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiShowSplitscreenGamertags + 300.000000 + 20.000000 + 9.000000,164.000000,0.000000 + 5 + XuiCheckboxSmall + XuiSplitScreen + XuiSliderUISize\XuiSlider + + + + + XuiSplitScreen + 300.000000 + 20.000000 + 9.000000,134.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowAnimatedCharacter + XuiShowSplitscreenGamertags + + + + + XuiShowAnimatedCharacter + 300.000000 + 20.000000 + 9.000000,104.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayDeathMessages + XuiSplitScreen + + + + + XuiDisplayDeathMessages + 300.000000 + 20.000000 + 9.000000,74.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHand + XuiShowAnimatedCharacter + + + + + XuiDisplayHand + 300.000000 + 20.000000 + 9.000000,44.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHUD + XuiDisplayDeathMessages + + + + + XuiDisplayHUD + 300.000000 + 20.000000 + 9.000000,14.000000,0.000000 + 5 + XuiCheckboxSmall + XuiDisplayHand + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_options.xui b/Minecraft.Client/Common/Media/xuiscene_settings_options.xui index 70a9ea2f..93e875e7 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_options.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_options.xui @@ -1,144 +1,144 @@ - -1280.000000 -720.000000 - - - -SceneSettingsOptions -330.000000 -266.000000 -474.000000,250.000000,0.000000 -16 -CScene_SettingsOptions -GraphicPanel -XuiViewBob - - - -XuiDifficultyText -900.000000 -100.000000 --285.000000,275.000000,0.000000 -16 -TipPanel - - - - -XuiSliderDifficulty -306.000000 -38.000000 -12.000000,214.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderAutosave\XuiSlider -XuiSliderMusic\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderAutosave -306.000000 -38.000000 -12.000000,170.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiMashUpWorlds -XuiSliderDifficulty\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -8 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiMashUpWorlds -300.000000 -32.000000 -14.000000,132.000000,0.000000 -5 -XuiInGameGamertags -XuiSliderAutosave\XuiSlider - - - - -XuiInGameGamertags -300.000000 -32.000000 -14.000000,102.000000,0.000000 -5 -XuiShowTooltips -XuiMashUpWorlds - - - - -XuiShowTooltips -300.000000 -32.000000 -14.000000,72.000000,0.000000 -5 -XuiShowHints -XuiInGameGamertags - - - - -XuiShowHints -300.000000 -32.000000 -14.000000,42.000000,0.000000 -5 -XuiViewBob -XuiShowTooltips - - - - -XuiViewBob -300.000000 -32.000000 -14.000000,12.000000,0.000000 -5 -XuiShowHints - - - + + 1280.000000 + 720.000000 + + + + SceneSettingsOptions + 330.000000 + 266.000000 + 474.000000,250.000000,0.000000 + 16 + CScene_SettingsOptions + GraphicPanel + XuiViewBob + + + + XuiDifficultyText + 900.000000 + 100.000000 + -285.000000,275.000000,0.000000 + 16 + TipPanel + + + + + XuiSliderDifficulty + 306.000000 + 38.000000 + 12.000000,214.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderAutosave\XuiSlider + XuiSliderMusic\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderAutosave + 306.000000 + 38.000000 + 12.000000,170.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiMashUpWorlds + XuiSliderDifficulty\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 8 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiMashUpWorlds + 300.000000 + 32.000000 + 14.000000,132.000000,0.000000 + 5 + XuiInGameGamertags + XuiSliderAutosave\XuiSlider + + + + + XuiInGameGamertags + 300.000000 + 32.000000 + 14.000000,102.000000,0.000000 + 5 + XuiShowTooltips + XuiMashUpWorlds + + + + + XuiShowTooltips + 300.000000 + 32.000000 + 14.000000,72.000000,0.000000 + 5 + XuiShowHints + XuiInGameGamertags + + + + + XuiShowHints + 300.000000 + 32.000000 + 14.000000,42.000000,0.000000 + 5 + XuiViewBob + XuiShowTooltips + + + + + XuiViewBob + 300.000000 + 32.000000 + 14.000000,12.000000,0.000000 + 5 + XuiShowHints + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_options_480.xui b/Minecraft.Client/Common/Media/xuiscene_settings_options_480.xui index 0f9f1eef..dca95e36 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_options_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_options_480.xui @@ -1,146 +1,146 @@ - -640.000000 -480.000000 - - - -SceneSettingsOptions -320.000000 -230.000000 -160.000000,120.000000,0.000000 -CScene_SettingsOptions -GraphicPanel -XuiViewBob - - - -XuiDifficultyText -512.000000 -62.000000 --104.000000,234.000000,0.000000 -TipPanel - - - - -XuiSliderDifficulty -306.000000 -38.000000 -8.000000,180.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderAutosave\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderAutosave -306.000000 -38.000000 -8.000000,138.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiMashUpWorlds -XuiSliderDifficulty\XuiSlider -FocusSink - - - -XuiSlider -306.000000 -38.000000 -5 -XuiSlider -8 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiMashUpWorlds -300.000000 -20.000000 -9.000000,110.000000,0.000000 -5 -XuiCheckboxSmall -XuiInGameGamertags -XuiSliderAutosave\XuiSlider - - - - -XuiInGameGamertags -300.000000 -20.000000 -9.000000,86.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowTooltips -XuiMashUpWorlds - - - - -XuiShowTooltips -300.000000 -20.000000 -9.000000,62.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowHints -XuiInGameGamertags - - - - -XuiShowHints -300.000000 -20.000000 -9.000000,38.000000,0.000000 -5 -XuiCheckboxSmall -XuiViewBob -XuiShowTooltips - - - - -XuiViewBob -300.000000 -20.000000 -9.000000,14.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowHints - - - + + 640.000000 + 480.000000 + + + + SceneSettingsOptions + 320.000000 + 230.000000 + 160.000000,120.000000,0.000000 + CScene_SettingsOptions + GraphicPanel + XuiViewBob + + + + XuiDifficultyText + 512.000000 + 62.000000 + -104.000000,234.000000,0.000000 + TipPanel + + + + + XuiSliderDifficulty + 306.000000 + 38.000000 + 8.000000,180.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderAutosave\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderAutosave + 306.000000 + 38.000000 + 8.000000,138.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiMashUpWorlds + XuiSliderDifficulty\XuiSlider + FocusSink + + + + XuiSlider + 306.000000 + 38.000000 + 5 + XuiSlider + 8 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiMashUpWorlds + 300.000000 + 20.000000 + 9.000000,110.000000,0.000000 + 5 + XuiCheckboxSmall + XuiInGameGamertags + XuiSliderAutosave\XuiSlider + + + + + XuiInGameGamertags + 300.000000 + 20.000000 + 9.000000,86.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowTooltips + XuiMashUpWorlds + + + + + XuiShowTooltips + 300.000000 + 20.000000 + 9.000000,62.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowHints + XuiInGameGamertags + + + + + XuiShowHints + 300.000000 + 20.000000 + 9.000000,38.000000,0.000000 + 5 + XuiCheckboxSmall + XuiViewBob + XuiShowTooltips + + + + + XuiViewBob + 300.000000 + 20.000000 + 9.000000,14.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowHints + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_settings_options_small.xui b/Minecraft.Client/Common/Media/xuiscene_settings_options_small.xui index a6146028..a4ec7d1b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_settings_options_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_settings_options_small.xui @@ -1,148 +1,148 @@ - -640.000000 -360.000000 - - - -SceneSettingsOptions -320.000000 -250.000000 -160.000000,69.000015,0.000000 -16 -CScene_SettingsOptions -GraphicPanel -XuiViewBob - - - -XuiDifficultyText -540.000000 -110.000000 --109.999969,254.000000,0.000000 -false -TipPanel - - - - -XuiSliderDifficulty -300.000000 -38.000000 -9.000000,192.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiSliderAutosave\XuiSlider -FocusSink - - - -XuiSlider -300.000000 -38.000000 -5 -XuiSlider -3 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiSliderAutosave -300.000000 -38.000000 -9.000000,150.000000,0.000000 -5 -CXuiCtrlSliderWrapper -XuiSliderWrapper -XuiMashUpWorlds -XuiSliderDifficulty\XuiSlider -FocusSink - - - -XuiSlider -300.000000 -38.000000 -5 -XuiSlider -8 - - - - -FocusSink -1.000000 -1.000000 - - - - - -XuiMashUpWorlds -300.000000 -20.000000 -9.000000,120.000000,0.000000 -5 -XuiCheckboxSmall -XuiInGameGamertags -XuiSliderAutosave\XuiSlider - - - - -XuiInGameGamertags -300.000000 -20.000000 -9.000000,92.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowTooltips -XuiMashUpWorlds - - - - -XuiShowTooltips -300.000000 -20.000000 -9.000000,64.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowHints -XuiInGameGamertags - - - - -XuiShowHints -300.000000 -20.000000 -9.000000,36.000000,0.000000 -5 -XuiCheckboxSmall -XuiViewBob -XuiShowTooltips - - - - -XuiViewBob -300.000000 -20.000000 -9.000000,8.000000,0.000000 -5 -XuiCheckboxSmall -XuiShowHints - - - + + 640.000000 + 360.000000 + + + + SceneSettingsOptions + 320.000000 + 250.000000 + 160.000000,69.000015,0.000000 + 16 + CScene_SettingsOptions + GraphicPanel + XuiViewBob + + + + XuiDifficultyText + 540.000000 + 110.000000 + -109.999969,254.000000,0.000000 + false + TipPanel + + + + + XuiSliderDifficulty + 300.000000 + 38.000000 + 9.000000,192.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiSliderAutosave\XuiSlider + FocusSink + + + + XuiSlider + 300.000000 + 38.000000 + 5 + XuiSlider + 3 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiSliderAutosave + 300.000000 + 38.000000 + 9.000000,150.000000,0.000000 + 5 + CXuiCtrlSliderWrapper + XuiSliderWrapper + XuiMashUpWorlds + XuiSliderDifficulty\XuiSlider + FocusSink + + + + XuiSlider + 300.000000 + 38.000000 + 5 + XuiSlider + 8 + + + + + FocusSink + 1.000000 + 1.000000 + + + + + + XuiMashUpWorlds + 300.000000 + 20.000000 + 9.000000,120.000000,0.000000 + 5 + XuiCheckboxSmall + XuiInGameGamertags + XuiSliderAutosave\XuiSlider + + + + + XuiInGameGamertags + 300.000000 + 20.000000 + 9.000000,92.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowTooltips + XuiMashUpWorlds + + + + + XuiShowTooltips + 300.000000 + 20.000000 + 9.000000,64.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowHints + XuiInGameGamertags + + + + + XuiShowHints + 300.000000 + 20.000000 + 9.000000,36.000000,0.000000 + 5 + XuiCheckboxSmall + XuiViewBob + XuiShowTooltips + + + + + XuiViewBob + 300.000000 + 20.000000 + 9.000000,8.000000,0.000000 + 5 + XuiCheckboxSmall + XuiShowHints + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_signentry.xui b/Minecraft.Client/Common/Media/xuiscene_signentry.xui index 5a3ff3db..5bc89025 100644 --- a/Minecraft.Client/Common/Media/xuiscene_signentry.xui +++ b/Minecraft.Client/Common/Media/xuiscene_signentry.xui @@ -1,110 +1,110 @@ - -1280.000000 -720.000000 - - - -SceneSignEntry -1280.000000 -720.000000 -CScene_SignEntry -XuiMenuScene -EditLineOne - - - -BackgroundImage -288.000000 -312.000000 -496.000000,200.000000,0.000000 -SignEntrySceneBackground - - - - -EditLineOne -268.000000 -42.000000 -506.000000,206.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineTwo -ButtonDone -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineTwo -268.000000 -42.000000 -506.000000,236.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineOne -EditLineThree -EditLineThree -EditLineOne -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineThree -268.000000 -42.000000 -506.000000,266.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineFour -EditLineFour -EditLineTwo -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineFour -268.000000 -42.000000 -506.000000,296.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineThree -ButtonDone -ButtonDone -EditLineThree -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -ButtonDone -400.000000 -40.000000 -440.000000,520.000000,0.000000 -XuiMainMenuButton_L -EditLineFour -EditLineOne -EditLineFour -22528 - - - - -EditSignMessage -372.000000 -47.000000 -454.000031,150.000000,0.000000 -XuiLabelLight_ShadowCentred - - - + + 1280.000000 + 720.000000 + + + + SceneSignEntry + 1280.000000 + 720.000000 + CScene_SignEntry + XuiMenuScene + EditLineOne + + + + BackgroundImage + 288.000000 + 312.000000 + 496.000000,200.000000,0.000000 + SignEntrySceneBackground + + + + + EditLineOne + 268.000000 + 42.000000 + 506.000000,206.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineTwo + ButtonDone + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineTwo + 268.000000 + 42.000000 + 506.000000,236.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineOne + EditLineThree + EditLineThree + EditLineOne + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineThree + 268.000000 + 42.000000 + 506.000000,266.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineFour + EditLineFour + EditLineTwo + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineFour + 268.000000 + 42.000000 + 506.000000,296.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineThree + ButtonDone + ButtonDone + EditLineThree + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + ButtonDone + 400.000000 + 40.000000 + 440.000000,520.000000,0.000000 + XuiMainMenuButton_L + EditLineFour + EditLineOne + EditLineFour + 22528 + + + + + EditSignMessage + 372.000000 + 47.000000 + 454.000031,150.000000,0.000000 + XuiLabelLight_ShadowCentred + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_signentry_480.xui b/Minecraft.Client/Common/Media/xuiscene_signentry_480.xui index 58cdc6f4..2009f102 100644 --- a/Minecraft.Client/Common/Media/xuiscene_signentry_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_signentry_480.xui @@ -1,110 +1,110 @@ - -640.000000 -480.000000 - - - -SceneSignEntry -640.000000 -480.000000 -CScene_SignEntry -XuiMenuScene -EditLineOne - - - -BackgroundImage -288.000000 -187.000000 -176.000000,140.000000,0.000000 -SignEntrySceneBackground - - - - -EditLineOne -266.000000 -42.000000 -187.000015,146.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineTwo -ButtonDone -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineTwo -266.000000 -42.000000 -187.000015,176.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineOne -EditLineThree -EditLineThree -EditLineOne -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineThree -266.000000 -42.000000 -187.000015,206.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineFour -EditLineFour -EditLineTwo -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineFour -266.000000 -42.000000 -187.000031,236.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineThree -ButtonDone -ButtonDone -EditLineThree -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -ButtonDone -300.000000 -36.000000 -170.000031,340.000000,0.000000 -XuiMainMenuButton_L_Thin -EditLineFour -EditLineOne -EditLineFour -22528 - - - - -EditSignMessage -372.000000 -47.000000 -134.000015,96.000000,0.000000 -XuiLabelLight_ShadowCentred - - - + + 640.000000 + 480.000000 + + + + SceneSignEntry + 640.000000 + 480.000000 + CScene_SignEntry + XuiMenuScene + EditLineOne + + + + BackgroundImage + 288.000000 + 187.000000 + 176.000000,140.000000,0.000000 + SignEntrySceneBackground + + + + + EditLineOne + 266.000000 + 42.000000 + 187.000015,146.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineTwo + ButtonDone + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineTwo + 266.000000 + 42.000000 + 187.000015,176.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineOne + EditLineThree + EditLineThree + EditLineOne + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineThree + 266.000000 + 42.000000 + 187.000015,206.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineFour + EditLineFour + EditLineTwo + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineFour + 266.000000 + 42.000000 + 187.000031,236.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineThree + ButtonDone + ButtonDone + EditLineThree + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + ButtonDone + 300.000000 + 36.000000 + 170.000031,340.000000,0.000000 + XuiMainMenuButton_L_Thin + EditLineFour + EditLineOne + EditLineFour + 22528 + + + + + EditSignMessage + 372.000000 + 47.000000 + 134.000015,96.000000,0.000000 + XuiLabelLight_ShadowCentred + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_signentry_small.xui b/Minecraft.Client/Common/Media/xuiscene_signentry_small.xui index 459fcf26..1f49cfb4 100644 --- a/Minecraft.Client/Common/Media/xuiscene_signentry_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_signentry_small.xui @@ -1,109 +1,109 @@ - -640.000000 -360.000000 - - - -SceneSignEntry -640.000000 -360.000000 -CScene_SignEntry -XuiMenuScene -EditLineOne - - - -BackgroundImage -288.000000 -187.000000 -176.000000,45.000000,0.000000 -SignEntrySceneBackground - - - - -EditLineOne -266.200012 -28.000000 -186.900055,50.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineTwo -ButtonDone -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineTwo -266.200012 -28.000000 -186.900055,84.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineOne -EditLineThree -EditLineThree -EditLineOne -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineThree -266.200012 -28.000000 -186.900055,118.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineTwo -EditLineFour -EditLineFour -EditLineTwo -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -EditLineFour -266.200012 -28.000000 -186.900055,152.000000,0.000000 -CXuiCtrl4JEdit -XuiEditSign -EditLineThree -ButtonDone -ButtonDone -EditLineThree -15 - !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»ã - - - - -ButtonDone -300.000000 -40.000000 -170.000031,240.000000,0.000000 -XuiMainMenuButton_L -EditLineFour -EditLineOne -EditLineFour -22528 - - - - -EditSignMessage -447.000000 -96.000015,14.000000,0.000000 -XuiLabelLight_ShadowCentred - - - + + 640.000000 + 360.000000 + + + + SceneSignEntry + 640.000000 + 360.000000 + CScene_SignEntry + XuiMenuScene + EditLineOne + + + + BackgroundImage + 288.000000 + 187.000000 + 176.000000,45.000000,0.000000 + SignEntrySceneBackground + + + + + EditLineOne + 266.200012 + 28.000000 + 186.900055,50.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineTwo + ButtonDone + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineTwo + 266.200012 + 28.000000 + 186.900055,84.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineOne + EditLineThree + EditLineThree + EditLineOne + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineThree + 266.200012 + 28.000000 + 186.900055,118.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineTwo + EditLineFour + EditLineFour + EditLineTwo + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + EditLineFour + 266.200012 + 28.000000 + 186.900055,152.000000,0.000000 + CXuiCtrl4JEdit + XuiEditSign + EditLineThree + ButtonDone + ButtonDone + EditLineThree + 15 + !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}~ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×’áíóúñѪº¿®¬½¼¡«»ã + + + + + ButtonDone + 300.000000 + 40.000000 + 170.000031,240.000000,0.000000 + XuiMainMenuButton_L + EditLineFour + EditLineOne + EditLineFour + 22528 + + + + + EditSignMessage + 447.000000 + 96.000015,14.000000,0.000000 + XuiLabelLight_ShadowCentred + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_skinselect.xui b/Minecraft.Client/Common/Media/xuiscene_skinselect.xui index 95da34c6..e4c37a18 100644 --- a/Minecraft.Client/Common/Media/xuiscene_skinselect.xui +++ b/Minecraft.Client/Common/Media/xuiscene_skinselect.xui @@ -1,1575 +1,751 @@ - -1280.000000 -720.000000 - - - -SceneSkinSelect -1280.000000 -720.000000 -CScene_SkinSelect -XuiBlankScene -SkinDetails - - - -BackgroundTint -1280.000000 -464.000000 -0.000000,142.000000,0.000000 - - -0xff0f0f80 - - - - -0x800f0f0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,1221.000000,0.000000,0,1221.000000,0.000000,1221.000000,0.000000,1221.000000,352.000000,0,1221.000000,352.000000,1221.000000,352.000000,0.000000,352.000000,0,0.000000,352.000000,0.000000,352.000000,0.000000,0.000000,0, - - - - -Characters -1280.000000 -350.000000 -0.000000,198.000000,0.000000 -XuiBlankScene - - - -CharacterPrevious4 -97.000000 -120.000000 --83.999886,90.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious3 -122.000000 -150.000000 -23.000114,75.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious2 -153.000000 -188.000000 -155.000092,56.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious1 -192.000000 -235.000000 -318.000092,33.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext4 -97.000000 -120.000000 -1267.000000,90.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext3 -122.000000 -150.000000 -1135.000000,75.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext2 -153.000000 -188.000000 -971.999878,56.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext1 -192.000000 -235.000000 -769.999939,33.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -Character -240.000000 -294.000000 -520.000000,3.000046,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - - -Normal - -stop - - -CycleLeft - - - -EndCycleLeft - -stop - - -CycleRight - - - -EndCycleRight - -stop - - - -Character -Position -Width -Height - - -0 -520.000000,3.000046,0.000000 -240.000000 -294.000000 - - - -0 -520.000000,3.000046,0.000000 -240.000000 -294.000000 - - - -0 -318.000000,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -520.000000,3.000046,0.000000 -240.000000 -294.000000 - - - -0 -770.000000,33.000046,0.000000 -192.000000 -235.000000 - - - -CharacterNext1 -Position -Width -Height - - -0 -769.999939,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -769.999939,32.991196,0.000000 -192.000000 -235.000000 - - - -0 -520.000000,3.000046,0.000000 -240.000000 -294.000000 - - - -0 -769.999939,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -972.000000,56.000046,0.000000 -153.000000 -188.000000 - - - -CharacterNext2 -Position -Width -Height - - -0 -971.999878,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -971.999878,55.991196,0.000000 -153.000000 -188.000000 - - - -0 -770.000000,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -971.999878,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -1135.000000,75.000046,0.000000 -122.000000 -150.000000 - - - -CharacterNext3 -Position -Width -Height - - -0 -1135.000000,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -1135.000000,74.991196,0.000000 -122.000000 -150.000000 - - - -0 -972.000000,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -1135.000000,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -1267.000000,90.000046,0.000000 -97.000000 -120.000000 - - - -CharacterNext4 -Position -Width -Height - - -0 -1267.000000,90.000046,0.000000 -97.000000 -120.000000 - - - -0 -1267.000000,89.991196,0.000000 -97.000000 -120.000000 - - - -0 -1135.000000,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -1267.000000,90.000046,0.000000 -97.000000 -120.000000 - - - -0 -1555.000000,90.000046,0.000000 -97.000000 -120.000000 - - - -CharacterPrevious1 -Position -Width -Height - - -0 -318.000092,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -318.000092,32.991196,0.000000 -192.000000 -235.000000 - - - -0 -155.000000,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -318.000092,33.000046,0.000000 -192.000000 -235.000000 - - - -0 -520.000000,3.000046,0.000000 -240.000000 -294.000000 - - - -CharacterPrevious2 -Position -Width -Height - - -0 -155.000092,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -155.000092,55.991196,0.000000 -153.000000 -188.000000 - - - -0 -23.000000,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -155.000092,56.000046,0.000000 -153.000000 -188.000000 - - - -0 -318.000000,33.000046,0.000000 -192.000000 -235.000000 - - - -CharacterPrevious3 -Position -Width -Height - - -0 -23.000114,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -23.000114,74.991196,0.000000 -122.000000 -150.000000 - - - -0 --84.000000,90.000046,0.000000 -97.000000 -120.000000 - - - -0 -23.000114,75.000046,0.000000 -122.000000 -150.000000 - - - -0 -155.000000,56.000046,0.000000 -153.000000 -188.000000 - - - -CharacterPrevious4 -Position -Width -Height - - -0 --83.999886,90.000046,0.000000 -97.000000 -120.000000 - - - -0 --83.999886,89.991196,0.000000 -97.000000 -120.000000 - - - -0 --310.999878,90.000046,0.000000 -97.000000 -120.000000 - - - -0 --83.999886,90.000046,0.000000 -97.000000 -120.000000 - - - -0 -23.000000,75.000046,0.000000 -122.000000 -150.000000 - - - - - - -TabBar -1280.000000 -532.000000 -0.000000,90.000000,0.000000 -true - - - -Baseline -1680.000000 -62.000000 --200.000000,460.000000,0.000000 -SkinSelectTabBarNormal - - - - -Normal -1280.000000 -62.000000 -SkinSelectTabBarNormal - - - - -Selected -1680.000000 -528.000000 --200.000000,-0.000008,0.000000 - - - -BaselineSelected -1680.000000 -62.000000 --0.000000,460.000000,0.000000 -SkinSelectTabBarSelected - - - - -NormalSelected -1280.000000 -62.000000 -200.000000,0.000000,0.000000 -SkinSelectTabBarSelected - - - - - - -PackGroup -1280.000000 -40.000000 -0.000000,90.000000,0.000000 -XuiBlankScene - - - -Left -348.000000 -42.000000 -104.000000,0.000003,0.000000 -XuiSkinPackButton -false - - - - -Right -348.000000 -42.000000 -828.000000,0.000003,0.000000 -XuiSkinPackButton -false - - - - -Center -348.000000 -42.000000 -466.000061,0.000003,0.000000 -XuiSkinPackButtonCenter - - - - - -SkinDetails -380.000000 -50.000000 -450.000000,524.000000,0.000000 -XuiSkinSelectSectionBackground - - - -SkinName -340.000000 -25.000000 -20.000000,2.000000,0.000000 -5 -XuiLabelLight_ShadowCentred - - - - -OriginName -340.000000 -25.000000 -20.000000,22.000000,0.000000 -5 -XuiLabelLight_ShadowCentred - - - - - -Selected - -stop - - -Unselected - -stop - - - -OriginName -Visual - - -0 -XuiLabelLight_ShadowCentred - - - -0 -XuiLabelLightFaded_ShadowCentred - - - -SkinName -Visual - - -0 -XuiLabelLight_ShadowCentred - - - -0 -XuiLabelLightFaded_ShadowCentred - - - - - - -Locked -32.000000 -32.000000 -794.000000,532.000000,0.000000 -SkinSelectPadlock - - - - -SelectedGroup -224.000000 -32.000000 -528.000000,479.999969,0.000000 -SkinSelectSelectedBackground - - - -SelectedText -150.000000 -24.000000 -37.000011,4.000000,0.000000 -5 -XuiLabelLightCentred - - - - - -Timer -184.000000 -170.000000 -548.000061,290.000000,0.000000 -XuiBlankScene - - - -Timer_Square_1 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -42.000000 -42.000000 -14.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -42.000000 -42.000000 -68.499985,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -42.000000 -42.000000 -123.000000,3.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -42.000000 -42.000000 -123.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -42.000000 -42.000000 -123.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -42.000000 -42.000000 -68.499985,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -42.000000 -42.000000 -14.000000,113.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -42.000000 -42.000000 -14.000000,58.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 1280.000000 + 720.000000 + + + + SceneSkinSelect + 1280.000000 + 720.000000 + CScene_SkinSelect + XuiBlankScene + SkinDetails + + + + BackgroundTint + 1280.000000 + 464.000000 + 0.000000,142.000000,0.000000 + false + + + + + + + + + + + CharacterPrevious4 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + SceneSkinSelect + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + CharacterPrevious1 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + SkinDetails + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + CharacterNext2 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + Characters + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + + + XuiCanvas + + + + + CharacterPrevious1 + + + + + CharacterNext4 + + + + + Selected + + + + + stop + Character + + + + + gotoplay + + + + + + + + + stop + + + XuiControl + + stop + + + + + SelectedGroup + + + + + Timer_Square_13 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_13 + + CharacterNext4 + + + + + + + + + + + Selected + + + + + + stop + + + CharacterNext1 + + stop + + + + + + + + + SelectedGroup + + + + + Timer_Square_13 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_13 + + CharacterPrevious1 + + + + + + + + + + + CharacterNext4 + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + SelectedGroup + + stop + + + Timer_Square_13 + + XuiCanvas + + + + + + + + + + + CharacterPrevious1 + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + + + + + + + XuiCanvas + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + stop + + + + + stop + + + + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + CharacterNext2 + + + + + + + + + stop + + + + + XuiBlankScene + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + XuiBlankScene + + + + + + + + + stop + + + XuiControl + + stop + + + + + gotoplay + + + + + gotostop + + + XuiBlankScene + + + + + + stop + + + + + + + + + stop + + + + + + + + + CycleLeft + + + + + + + + + stop + + + CScene_SkinSelect + + stop + + + + + SelectedGroup + + + + + Timer_Square_13 + + + + + SceneSkinSelect + + + + + stop + + + + + + + + + gotoplay + + + + + + + + + EndCycleLeft + + + + + + + + + stop + + + CycleRight + + stop + + + + + SelectedGroup + + + + + Timer_Square_13 + + + + + stop + + + SelectedGroup + + stop + + + + + + + + + + + gotoplay + + + + + + + + + stop + + + XuiScene + + stop + + + + + SelectedGroup + + + + + Timer_Square_12 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_12 + + CharacterNext4 + + + + + + + + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_skinselect_480.xui b/Minecraft.Client/Common/Media/xuiscene_skinselect_480.xui index dfdcbe37..61495192 100644 --- a/Minecraft.Client/Common/Media/xuiscene_skinselect_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_skinselect_480.xui @@ -1,1574 +1,751 @@ - -640.000000 -480.000000 - - - -SceneSkinSelect480 -640.000000 -480.000000 -CScene_SkinSelect -XuiBlankScene -SkinDetails - - - -BackgroundTint -640.000000 -284.000000 -0.000000,102.000000,0.000000 - - -0xff0f0f80 - - - - -0x800f0f0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,1221.000000,0.000000,0,1221.000000,0.000000,1221.000000,0.000000,1221.000000,352.000000,0,1221.000000,352.000000,1221.000000,352.000000,0.000000,352.000000,0,0.000000,352.000000,0.000000,352.000000,0.000000,0.000000,0, - - - - -Characters -640.000000 -210.000000 -0.000000,135.000000,0.000000 -XuiBlankScene - - - -CharacterPrevious4 -49.000000 -60.000000 --63.000000,46.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious3 -61.000000 -75.000000 --4.000000,39.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious2 -77.000000 -94.000000 -67.000000,29.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious1 -96.000000 -118.000000 -154.000000,17.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext4 -49.000000 -60.000000 -654.000000,46.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext3 -61.000000 -75.000000 -583.000000,39.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext2 -77.000000 -94.000000 -496.000000,29.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext1 -96.000000 -118.000000 -390.000000,17.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - -Character -120.000000 -147.000000 -260.000000,3.000000,0.000000 -15 -CXuiCtrlMinecraftSkinPreview - - - - - -Normal - -stop - - -CycleLeft - - - -EndCycleLeft - -stop - - -CycleRight - - - -EndCycleRight - -stop - - - -Character -Position -Width -Height - - -0 -260.000000,3.000000,0.000000 -120.000000 -147.000000 - - - -0 -260.000000,3.000000,0.000000 -120.000000 -147.000000 - - - -0 -154.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -260.000000,3.000000,0.000000 -120.000000 -147.000000 - - - -0 -390.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -CharacterNext1 -Position -Width -Height - - -0 -390.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -390.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -260.000000,3.000000,0.000000 -120.000000 -147.000000 - - - -0 -390.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -496.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -CharacterNext2 -Position -Width -Height - - -0 -496.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -496.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -390.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -496.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -583.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -CharacterNext3 -Position -Width -Height - - -0 -583.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -583.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -496.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -583.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -654.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -CharacterNext4 -Position -Width -Height - - -0 -654.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 -654.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 -583.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -654.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 -654.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -CharacterPrevious1 -Position -Width -Height - - -0 -154.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -154.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -67.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -154.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -0 -260.000000,3.000000,0.000000 -120.000000 -147.000000 - - - -CharacterPrevious2 -Position -Width -Height - - -0 -67.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -67.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 --4.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -67.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -0 -154.000000,17.000000,0.000000 -96.000000 -118.000000 - - - -CharacterPrevious3 -Position -Width -Height - - -0 --4.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 --4.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 --63.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 --4.000000,39.000000,0.000000 -61.000000 -75.000000 - - - -0 -67.000000,29.000000,0.000000 -77.000000 -94.000000 - - - -CharacterPrevious4 -Position -Width -Height - - -0 --63.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 --63.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 --63.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 --63.000000,46.000000,0.000000 -49.000000 -60.000000 - - - -0 --4.000000,39.000000,0.000000 -61.000000 -75.000000 - - - - - - -TabBar -640.000000 -348.833313 -0.000000,66.000000,0.000000 -true - - - -Baseline -780.000000 -44.000000 --70.000000,284.000000,0.000000 -SkinSelectTabBarNormalSmall - - - - -Normal -640.000000 -44.000000 -SkinSelectTabBarNormalSmall - - - - -Selected -779.999939 -327.999969 --69.999992,-0.000008,0.000000 - - - -BaselineSelected -780.000000 -44.000000 --0.000000,284.000000,0.000000 -SkinSelectTabBarSelectedSmall - - - - -NormalSelected -640.000000 -44.000000 -70.000000,0.000000,0.000000 -SkinSelectTabBarSelectedSmall - - - - - - -PackGroup -640.000000 -40.000000 -0.000000,62.000000,0.000000 -XuiBlankScene - - - -Left -180.000000 -31.000000 -50.000031,4.000003,0.000000 -XuiSkinPackButtonSmall -false - - - - -Right -180.000000 -31.000000 -409.000031,4.000003,0.000000 -XuiSkinPackButtonSmall -false - - - - -Center -180.000000 -40.000000 -230.000092,-1.999997,0.000000 -XuiSkinPackButtonCentreSmall - - - - - -SkinDetails -380.000000 -54.000000 -130.000046,315.000000,0.000000 -XuiSkinSelectSectionBackground - - - -OriginName -368.000000 -25.000000 -6.000061,22.000000,0.000000 -5 -XuiLabelLight_C_ShadowedSmall - - - - -SkinName -368.000000 -25.000000 -6.000061,0.000000,0.000000 -5 -XuiLabelLight_C_ShadowedSmall - - - - - -Selected - -stop - - -Unselected - -stop - - - -SkinName -Visual - - -0 -XuiLabelLight_C_ShadowedSmall - - - -0 -XuiLabelLightFaded_C_ShadowedSmall - - - -OriginName -Visual - - -0 -XuiLabelLight_C_ShadowedSmall - - - -0 -XuiLabelLightFaded_C_ShadowedSmall - - - - - - -Locked -32.000000 -32.000000 -475.000000,328.000000,0.000000 -SkinSelectPadlock - - - - -SelectedGroup -224.000000 -25.000000 -208.000015,276.000000,0.000000 -SkinSelectSelectedBackgroundSmall - - - -SelectedText -150.000000 -20.000000 -37.000011,3.000000,0.000000 -5 -XuiLabelListening_Small - - - - - -Timer -72.000000 -72.000000 -284.000031,210.000000,0.000000 -15 -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 480.000000 + + + + SceneSkinSelect480 + 640.000000 + 480.000000 + CScene_SkinSelect + XuiBlankScene + SkinDetails + + + + BackgroundTint + 640.000000 + 284.000000 + 0.000000,102.000000,0.000000 + false + + + + + + + + + + + CharacterPrevious4 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + SceneSkinSelect480 + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + CharacterPrevious1 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + SkinDetails + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + CharacterNext2 + + stop + + + + + CharacterPrevious1 + + + + + stop + + + + + + + + + + + Characters + + gotostop + XuiCanvas + + + CXuiCtrlMinecraftSkinPreview + + stop + + + + + stop + + + + + + + + + + + + + + + + + XuiCanvas + + + + + CharacterPrevious1 + + + + + CharacterNext4 + + + + + Selected + + + + + stop + Character + + + + + gotoplay + + + + + + + + + stop + + + XuiControl + + stop + + + + + SelectedGroup + + + + + Timer_Square_13 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_12 + + CharacterNext4 + + + + + + + + + + + Selected + + + + + + stop + + + CharacterNext1 + + stop + + + + + + + + + SelectedGroup + + + + + Timer_Square_12 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_12 + + CharacterPrevious1 + + + + + + + + + + + CharacterNext4 + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + SelectedGroup + + stop + + + Timer_Square_12 + + XuiCanvas + + + + + + + + + + + CharacterPrevious1 + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + + + + + + + XuiCanvas + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + stop + + + + + stop + + + + + + + + + stop + + + + + + + + + + + + + + + + + stop + + + + + + + + + stop + + + + + + + + + SkinDetails + + + + + + + + + stop + + + + + XuiBlankScene + + + + + + + + + + + + + + + + + stop + + + + + + + + + play + + + + + + + + + XuiBlankScene + + + + + + + + + stop + + + XuiControl + + stop + + + + + gotoplay + + + + + gotostop + + + XuiBlankScene + + + + + + stop + + + + + + + + + play + + + + + + + + + SceneSkinSelect480 + + + + + + + + + stop + + + CScene_SkinSelect + + stop + + + + + SelectedGroup + + + + + Timer_Square_12 + + + + + SceneSkinSelect480 + + + + + stop + + + + + + + + + gotoplay + + + + + + + + + SceneSkinSelect480 + + + + + + + + + stop + + + XuiScene + + stop + + + + + SelectedGroup + + + + + Timer_Square_12 + + + + + stop + + + SelectedGroup + + stop + + + + + + + + + + + gotoplay + + + + + + + + + stop + + + XuiScene + + stop + + + + + SelectedGroup + + + + + Timer_Square_12 + + + + + stop + + + SelectedGroup + + stop + + + Timer_Square_12 + + CharacterNext4 + + + + + + + + + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_skinselect_small.xui b/Minecraft.Client/Common/Media/xuiscene_skinselect_small.xui index 505f243e..b49045ff 100644 --- a/Minecraft.Client/Common/Media/xuiscene_skinselect_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_skinselect_small.xui @@ -1,1656 +1,29 @@ - -640.000000 -360.000000 - - - -SceneSkinSelectSmall -640.000000 -360.000000 -CScene_SkinSelect -XuiBlankScene -SkinDetails - - - -BackgroundTint -570.000000 -220.000000 -35.000031,62.000000,0.000000 - - -0xff0f0f80 - - - - -0x800f0f0f -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,1221.000000,0.000000,0,1221.000000,0.000000,1221.000000,0.000000,1221.000000,352.000000,0,1221.000000,352.000000,1221.000000,352.000000,0.000000,352.000000,0,0.000000,352.000000,0.000000,352.000000,0.000000,0.000000,0, - - - - -Characters -570.000000 -210.000000 -35.000031,68.000000,0.000000 -true -XuiBlankScene - - - -CharacterPrevious4 -49.000000 -60.000000 --98.000000,66.000000,0.000000 -0.000000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious3 -61.000000 -75.000000 --39.000000,59.000000,0.000000 -0.250000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious2 -77.000000 -94.000000 -32.000000,49.000000,0.000000 -0.500000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterPrevious1 -96.000000 -118.000000 -119.000000,37.000000,0.000000 -0.750000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext4 -49.000000 -60.000000 -619.000000,66.000000,0.000000 -0.000000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext3 -61.000000 -75.000000 -548.000000,59.000000,0.000000 -0.250000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext2 -77.000000 -94.000000 -461.000000,49.000000,0.000000 -0.500000 -CXuiCtrlMinecraftSkinPreview - - - - -CharacterNext1 -96.000000 -118.000000 -355.000000,37.000000,0.000000 -0.750000 -CXuiCtrlMinecraftSkinPreview - - - - -Character -120.000000 -147.000000 -225.000000,23.000000,0.000000 -CXuiCtrlMinecraftSkinPreview - - - - - -Normal - -stop - - -CycleLeft - - - -EndCycleLeft - -stop - - -CycleRight - - - -EndCycleRight - -stop - - - -Character -Position -Width -Height -Opacity -Anchor - - -0 -225.000000,23.000000,0.000000 -120.000000 -147.000000 -1.000000 -0 - - - -0 -225.000031,23.000000,0.000000 -120.000000 -147.000000 -1.000000 -0 - - - -0 -119.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -15 - - - -0 -225.000000,23.000000,0.000000 -120.000000 -147.000000 -1.000000 -0 - - - -0 -355.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -CharacterNext1 -Position -Width -Height -Opacity -Anchor - - -0 -355.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -355.000031,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -225.000000,23.000000,0.000000 -120.000000 -147.000000 -1.000000 -15 - - - -0 -355.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -461.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -CharacterNext2 -Position -Width -Height -Opacity -Anchor - - -0 -461.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 -461.000031,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 -355.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -15 - - - -0 -461.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 -548.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -CharacterNext3 -Position -Width -Height -Opacity -Anchor - - -0 -548.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 -548.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 -461.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -15 - - - -0 -548.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 -619.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -CharacterNext4 -Position -Width -Height -Opacity -Anchor - - -0 -619.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 -619.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 -548.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -15 - - - -0 -619.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 -619.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -CharacterPrevious1 -Position -Width -Height -Opacity -Anchor - - -0 -119.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -119.000031,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -32.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -37 - - - -0 -119.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -0 -225.000000,23.000000,0.000000 -120.000000 -147.000000 -1.000000 -0 - - - -CharacterPrevious2 -Position -Width -Height -Opacity -Anchor - - -0 -32.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 -32.000027,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 --39.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -15 - - - -0 -32.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -0 -119.000000,37.000000,0.000000 -96.000000 -118.000000 -0.750000 -0 - - - -CharacterPrevious3 -Position -Width -Height -Opacity -Anchor - - -0 --39.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 --38.999973,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 --98.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -15 - - - -0 --39.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - -0 -32.000000,49.000000,0.000000 -77.000000 -94.000000 -0.500000 -0 - - - -CharacterPrevious4 -Position -Width -Height -Opacity -Anchor - - -0 --98.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 --97.999969,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 --98.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -15 - - - -0 --98.000000,66.000000,0.000000 -49.000000 -60.000000 -0.000000 -0 - - - -0 --39.000000,59.000000,0.000000 -61.000000 -75.000000 -0.250000 -0 - - - - - - -TabBar -580.000000 -270.000000 -30.000032,21.000000,0.000000 -15 - - - -Normal -580.000000 -270.000000 -SkinSelectTabNormalSmall - - - - -Selected -580.000000 -270.000000 -SkinSelectTabSelectedSmall - - - - - -PackGroup -640.000000 -40.000000 -0.000032,15.000000,0.000000 -XuiBlankScene - - - -Left -180.000000 -31.000000 -50.000031,5.000003,0.000000 -XuiSkinPackButtonSmall -false - - - - -Right -180.000000 -31.000000 -409.000031,5.000003,0.000000 -XuiSkinPackButtonSmall -false - - - - -Center -180.000000 -40.000000 -230.000092,0.000003,0.000000 -XuiSkinPackButtonCentreSmall - - - - - -SkinDetails -380.000000 -48.000000 -130.000046,219.000000,0.000000 -XuiSkinSelectSBckgrndSmall - - - -SkinName -368.000000 -22.000000 -6.000061,-2.000000,0.000000 -5 -XuiLabelLight_C_ShadowedSmall - - - - -OriginName -368.000000 -22.000000 -6.000061,18.000000,0.000000 -5 -XuiLabelLight_C_ShadowedSmall - - - - - -Selected - -stop - - -Unselected - -stop - - - -OriginName -Visual - - -0 -XuiLabelLight_C_ShadowedSmall - - - -0 -XuiLabelLightFaded_C_ShadowedSmall - - - -SkinName -Visual - - -0 -XuiLabelLight_C_ShadowedSmall - - - -0 -XuiLabelLightFaded_C_ShadowedSmall - - - - - - -Locked -32.000000 -32.000000 -471.000000,227.000000,0.000000 -SkinSelectPadlock - - - - -SelectedGroup -224.000000 -25.000000 -208.000015,187.000000,0.000000 -SkinSelectSelectedBackgroundSmall - - - -SelectedText -150.000000 -20.000000 -37.000011,3.000000,0.000000 -5 -XuiLabelListening_Small - - - - - -Timer -72.000000 -72.000000 -284.000031,130.000000,0.000000 -15 -false -XuiBlankScene - - - -Timer_Square_1 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_2 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_3 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_4 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_5 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_6 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_7 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_8 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_9 -21.000000 -21.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_10 -21.000000 -21.000000 -25.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_11 -21.000000 -21.000000 -50.000000,0.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_12 -21.000000 -21.000000 -50.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_13 -21.000000 -21.000000 -50.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_14 -21.000000 -21.000000 -25.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_15 -21.000000 -21.000000 -0.000000,50.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - -Timer_Square_16 -21.000000 -21.000000 -0.000000,25.000000,0.000000 - - -0xff0f0f80 - - - - -0x00ebebeb - - -1 -0x00000000 -0.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0, - - - - - -LoadStart - - - -LoopStart - - - -LoopEnd - -gotoandplay -LoopStart - - - -Timer_Square_1 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_3 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_8 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_4 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_7 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_6 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_5 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_2 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_9 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_10 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_11 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_12 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_13 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x00ebebeb - - - -Timer_Square_14 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x07ebebeb - - - -Timer_Square_15 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x49ebebeb - - - -Timer_Square_16 -Fill.FillColor - - -0 -0x00ebebeb - - - -0 -0x00ebebeb - - - -0 -0xc8ebebeb - - - -0 -0x8cebebeb - - - - - + + 640.000000 + 360.000000 + + + + SceneSkinSelectSmall + 640.000000 + 360.000000 + CScene_SkinSelect + XuiBlankScene + SkinDetails + + + + BackgroundTint + 570.000000 + 220.000000 + 35.000031,62.000000,0.000000 + false + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_socialpost.xui b/Minecraft.Client/Common/Media/xuiscene_socialpost.xui index 3525a733..6930672f 100644 --- a/Minecraft.Client/Common/Media/xuiscene_socialpost.xui +++ b/Minecraft.Client/Common/Media/xuiscene_socialpost.xui @@ -1,88 +1,88 @@ - -1280.000000 -720.000000 - - - -SceneSocialPost -450.000000 -335.000000 -415.000000,204.000000,0.000000 -CScene_SocialPost -GraphicPanel -SceneNewWorld\XuiEditWorldName -SceneNewWorld\XuiNewWorld -XuiEditCaption - - - -XuiOK -382.000000 -40.000000 -34.000000,268.000000,0.000000 -XuiMainMenuButton_L -XuiEditDescription -XuiDescription -22528 - - - - -XuiEditDescription -376.000000 -32.000000 -37.000000,198.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditCaption -XuiOK -XuiOK -XuiEditCaption -100 - - - - -XuiLabelDescription -380.000000 -26.000000 -35.000000,172.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiEditCaption -376.000000 -32.000000 -37.000000,124.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditTitle -XuiEditDescription -XuiEditTitle -XuiDescription -60 - - - - -XuiLabelCaption -380.000000 -26.000000 -35.000000,98.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiLabelText -380.000000 -80.000000 -35.000000,20.000000,0.000000 -XuiLabelDarkLeftWrap16 - - - + + 1280.000000 + 720.000000 + + + + SceneSocialPost + 450.000000 + 335.000000 + 415.000000,204.000000,0.000000 + CScene_SocialPost + GraphicPanel + SceneNewWorld\XuiEditWorldName + SceneNewWorld\XuiNewWorld + XuiEditCaption + + + + XuiOK + 382.000000 + 40.000000 + 34.000000,268.000000,0.000000 + XuiMainMenuButton_L + XuiEditDescription + XuiDescription + 22528 + + + + + XuiEditDescription + 376.000000 + 32.000000 + 37.000000,198.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditCaption + XuiOK + XuiOK + XuiEditCaption + 100 + + + + + XuiLabelDescription + 380.000000 + 26.000000 + 35.000000,172.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiEditCaption + 376.000000 + 32.000000 + 37.000000,124.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditTitle + XuiEditDescription + XuiEditTitle + XuiDescription + 60 + + + + + XuiLabelCaption + 380.000000 + 26.000000 + 35.000000,98.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiLabelText + 380.000000 + 80.000000 + 35.000000,20.000000,0.000000 + XuiLabelDarkLeftWrap16 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_socialpost_480.xui b/Minecraft.Client/Common/Media/xuiscene_socialpost_480.xui index cffb1118..60a230a0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_socialpost_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_socialpost_480.xui @@ -1,87 +1,87 @@ - -640.000000 -480.000000 - - - -SceneSocialPost -354.000000 -267.000000 -143.000000,123.000000,0.000000 -CScene_SocialPost -GraphicPanel -SceneNewWorld\XuiEditWorldName -SceneNewWorld\XuiNewWorld -XuiEditCaption - - - -XuiOK -304.000000 -36.000000 -25.000000,211.000000,0.000000 -XuiMainMenuButton_L_Thin -XuiEditDescription -XuiDescription -22528 - - - - -XuiEditDescription -300.000000 -27.000000,156.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditCaption -XuiOK -XuiOK -XuiEditCaption -100 - - - - -XuiLabelDescription -300.000000 -20.000000 -27.000000,133.000000,0.000000 -XuiLabelDarkLeftWrapSmall - - - - -XuiEditCaption -300.000000 -27.000000,93.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditTitle -XuiEditDescription -XuiEditTitle -XuiDescription -60 - - - - -XuiLabelCaption -300.000000 -20.000000 -27.000000,69.000000,0.000000 -XuiLabelDarkLeftWrapSmall - - - - -XuiLabelText -300.000000 -57.999992 -27.000000,9.000000,0.000000 -XuiLabelDarkLeftWrapSmall -false - - - + + 640.000000 + 480.000000 + + + + SceneSocialPost + 354.000000 + 267.000000 + 143.000000,123.000000,0.000000 + CScene_SocialPost + GraphicPanel + SceneNewWorld\XuiEditWorldName + SceneNewWorld\XuiNewWorld + XuiEditCaption + + + + XuiOK + 304.000000 + 36.000000 + 25.000000,211.000000,0.000000 + XuiMainMenuButton_L_Thin + XuiEditDescription + XuiDescription + 22528 + + + + + XuiEditDescription + 300.000000 + 27.000000,156.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditCaption + XuiOK + XuiOK + XuiEditCaption + 100 + + + + + XuiLabelDescription + 300.000000 + 20.000000 + 27.000000,133.000000,0.000000 + XuiLabelDarkLeftWrapSmall + + + + + XuiEditCaption + 300.000000 + 27.000000,93.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditTitle + XuiEditDescription + XuiEditTitle + XuiDescription + 60 + + + + + XuiLabelCaption + 300.000000 + 20.000000 + 27.000000,69.000000,0.000000 + XuiLabelDarkLeftWrapSmall + + + + + XuiLabelText + 300.000000 + 57.999992 + 27.000000,9.000000,0.000000 + XuiLabelDarkLeftWrapSmall + false + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_socialpost_small.xui b/Minecraft.Client/Common/Media/xuiscene_socialpost_small.xui index 169f594e..a5d4fa10 100644 --- a/Minecraft.Client/Common/Media/xuiscene_socialpost_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_socialpost_small.xui @@ -1,88 +1,88 @@ - -640.000000 -360.000000 - - - -SceneSocialPost -424.000000 -290.000000 -108.000000,0.000000,0.000000 -CScene_SocialPost -GraphicPanel -SceneNewWorld\XuiEditWorldName -SceneNewWorld\XuiNewWorld -XuiEditCaption - - - -XuiOK -362.000000 -40.000000 -31.000008,236.000000,0.000000 -XuiMainMenuButton_L -XuiEditDescription -XuiDescription -22528 - - - - -XuiEditDescription -356.000000 -32.000000 -34.250069,178.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditCaption -XuiOK -XuiOK -XuiEditCaption -100 - - - - -XuiLabelDescription -360.000000 -24.000000 -34.000023,154.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiEditCaption -356.000000 -32.000000 -33.749977,110.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -XuiEditTitle -XuiEditDescription -XuiEditTitle -XuiDescription -60 - - - - -XuiLabelCaption -360.000000 -24.000000 -34.000023,86.000000,0.000000 -XuiLabelDarkLeftWrap - - - - -XuiLabelText -358.000000 -64.000000 -34.000023,16.000000,0.000000 -XuiLabelDarkLeftWrap - - - + + 640.000000 + 360.000000 + + + + SceneSocialPost + 424.000000 + 290.000000 + 108.000000,0.000000,0.000000 + CScene_SocialPost + GraphicPanel + SceneNewWorld\XuiEditWorldName + SceneNewWorld\XuiNewWorld + XuiEditCaption + + + + XuiOK + 362.000000 + 40.000000 + 31.000008,236.000000,0.000000 + XuiMainMenuButton_L + XuiEditDescription + XuiDescription + 22528 + + + + + XuiEditDescription + 356.000000 + 32.000000 + 34.250069,178.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditCaption + XuiOK + XuiOK + XuiEditCaption + 100 + + + + + XuiLabelDescription + 360.000000 + 24.000000 + 34.000023,154.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiEditCaption + 356.000000 + 32.000000 + 33.749977,110.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + XuiEditTitle + XuiEditDescription + XuiEditTitle + XuiDescription + 60 + + + + + XuiLabelCaption + 360.000000 + 24.000000 + 34.000023,86.000000,0.000000 + XuiLabelDarkLeftWrap + + + + + XuiLabelText + 358.000000 + 64.000000 + 34.000023,16.000000,0.000000 + XuiLabelDarkLeftWrap + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_teleportmenu.xui b/Minecraft.Client/Common/Media/xuiscene_teleportmenu.xui index d2aed700..2a76a754 100644 --- a/Minecraft.Client/Common/Media/xuiscene_teleportmenu.xui +++ b/Minecraft.Client/Common/Media/xuiscene_teleportmenu.xui @@ -1,100 +1,100 @@ - -1280.000000 -720.000000 - - - -Teleport -1280.000000 -720.000000 -CScene_Teleport -XuiBlankScene -GamePlayers - - - -GamePlayers -500.000000 -336.000000 -390.000000,192.000046,0.000000 -CXuiCtrlPassThroughList -XuiPlayerList - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - -control_ListItem -400.000000 -60.000000 -20.000000,46.000000,0.000000 -5 -false -XuiPlayerListButton_L - - - - - -Title -400.000000 -412.000000,202.000046,0.000000 -XuiLabelDarkLeftWrap18 - - - + + 1280.000000 + 720.000000 + + + + Teleport + 1280.000000 + 720.000000 + CScene_Teleport + XuiBlankScene + GamePlayers + + + + GamePlayers + 500.000000 + 336.000000 + 390.000000,192.000046,0.000000 + CXuiCtrlPassThroughList + XuiPlayerList + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,46.000000,0.000000 + 5 + false + XuiPlayerListButton_L + + + + + + Title + 400.000000 + 412.000000,202.000046,0.000000 + XuiLabelDarkLeftWrap18 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_teleportmenu_480.xui b/Minecraft.Client/Common/Media/xuiscene_teleportmenu_480.xui index 3c0aaffd..918234b0 100644 --- a/Minecraft.Client/Common/Media/xuiscene_teleportmenu_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_teleportmenu_480.xui @@ -1,101 +1,101 @@ - -640.000000 -480.000000 - - - -Teleport -640.000000 -480.000000 -CScene_Teleport -XuiBlankScene -GamePlayers - - - -GamePlayers -340.000000 -272.000000 -150.000031,130.000015,0.000000 -CXuiCtrlPassThroughList -XuiPlayerListSmall - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - - -Title -300.000000 -22.000000 -170.000000,144.000000,0.000000 -XuiLabelDark - - - + + 640.000000 + 480.000000 + + + + Teleport + 640.000000 + 480.000000 + CScene_Teleport + XuiBlankScene + GamePlayers + + + + GamePlayers + 340.000000 + 272.000000 + 150.000031,130.000015,0.000000 + CXuiCtrlPassThroughList + XuiPlayerListSmall + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + + Title + 300.000000 + 22.000000 + 170.000000,144.000000,0.000000 + XuiLabelDark + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_teleportmenu_small.xui b/Minecraft.Client/Common/Media/xuiscene_teleportmenu_small.xui index 63536a87..51c6349e 100644 --- a/Minecraft.Client/Common/Media/xuiscene_teleportmenu_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_teleportmenu_small.xui @@ -1,101 +1,101 @@ - -640.000000 -360.000000 - - - -Teleport -640.000000 -360.000000 -CScene_Teleport -XuiBlankScene -GamePlayers - - - -GamePlayers -400.000000 -236.000000 -120.000023,52.000011,0.000000 -CXuiCtrlPassThroughList -XuiPlayerListSmall - - - -control_ListItem -400.000000 -60.000000 -20.000000,50.000000,0.000000 -5 -false -XuiListButton_L - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - -control_ListItem -400.000000 -40.000000 -20.000000,42.000000,0.000000 -5 -false -XuiPlayerListButton_LThin - - - - - -Title -358.000000 -26.000000 -140.000000,61.999969,0.000000 -XuiLabelDarkLeftWrap16 - - - + + 640.000000 + 360.000000 + + + + Teleport + 640.000000 + 360.000000 + CScene_Teleport + XuiBlankScene + GamePlayers + + + + GamePlayers + 400.000000 + 236.000000 + 120.000023,52.000011,0.000000 + CXuiCtrlPassThroughList + XuiPlayerListSmall + + + + control_ListItem + 400.000000 + 60.000000 + 20.000000,50.000000,0.000000 + 5 + false + XuiListButton_L + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + control_ListItem + 400.000000 + 40.000000 + 20.000000,42.000000,0.000000 + 5 + false + XuiPlayerListButton_LThin + + + + + + Title + 358.000000 + 26.000000 + 140.000000,61.999969,0.000000 + XuiLabelDarkLeftWrap16 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_text_entry.xui b/Minecraft.Client/Common/Media/xuiscene_text_entry.xui index 20093f0a..f16422c8 100644 --- a/Minecraft.Client/Common/Media/xuiscene_text_entry.xui +++ b/Minecraft.Client/Common/Media/xuiscene_text_entry.xui @@ -1,29 +1,29 @@ - -1280.000000 -720.000000 - - - -TextEntry -450.000000 -74.000000 -415.000031,568.000000,0.000000 -CScene_TextEntry -XuiScene -XuiEditText - - - -XuiEditText -394.000000 -32.000000 -31.000000,20.000000,0.000000 -CXuiCtrl4JEdit -XuiEdit -CheckboxAllowFoF -XuiEditSeed - - - + + 1280.000000 + 720.000000 + + + + TextEntry + 450.000000 + 74.000000 + 415.000031,568.000000,0.000000 + CScene_TextEntry + XuiScene + XuiEditText + + + + XuiEditText + 394.000000 + 32.000000 + 31.000000,20.000000,0.000000 + CXuiCtrl4JEdit + XuiEdit + CheckboxAllowFoF + XuiEditSeed + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trading.xui b/Minecraft.Client/Common/Media/xuiscene_trading.xui index 02524fd3..4963ef3b 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trading.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trading.xui @@ -1,6765 +1,7010 @@ - -1280.000000 -720.000000 - - - -XuiSceneTrading -1280.000000 -720.000000 -CXuiSceneTrading -XuiBlankScene -Pointer - - - -Group -588.000000 -360.000000 -346.000031,180.000046,0.000000 -15 -XuiScene -Pointer - - - -RequiredWindow -216.000000 -186.000000 -25.000031,148.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -TradingWindow -312.000000 -186.000000 -249.000031,148.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -RequiredLabel -212.000000 -26.000000 -27.000031,152.000000,0.000000 -9 -XuiLabelDarkCentredWrapSmall - - - - -VillagerText -588.000000 -26.000000 -0.000000,25.000000,0.000000 -LabelContainerSceneCentre - - - - -Request1 -42.000000 -42.000000 -35.000031,200.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Request2 -42.000000 -42.000000 -35.000031,254.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -Offer1Label -141.000000 -42.000000 -87.000031,200.000000,0.000000 -9 -XuiLabelVertCentDarkLeftWrap18 - - - - -Offer2Label -141.000000 -42.000000 -86.000031,254.000015,0.000000 -9 -XuiLabelVertCentDarkLeftWrap18 - - - - -ScrollLeftArrow -32.000000 -48.000000 -56.000000,68.000000,0.000000 -XuiScrollEndLeft - - - - -ScrollRightArrow -32.000000 -48.000000 -476.000000,68.000000,0.000000 -XuiScrollEndRight - - - - -TradingBar0 -54.000000 -54.000000 -91.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar1 -54.000000 -54.000000 -145.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar2 -54.000000 -54.000000 -199.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar3 -54.000000 -54.000000 -253.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar4 -54.000000 -54.000000 -307.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar5 -54.000000 -54.000000 -361.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingBar6 -54.000000 -54.000000 -415.000000,64.000000,0.000000 -3 -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -TradingSelector -72.000000 -72.000000 -82.000000,55.000000,0.000000 -CraftingPanelHighlight - - - - -InventoryGrid -290.000000 -144.000000 -260.000031,180.000000,0.000000 - - - -Inventory -288.000000 -96.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - -UseRow -288.000000 -32.000000 --0.000000,112.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical32 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -226.000000 -45.000000 -7.000000,22.000000,0.000000 -5 -false -XuiButton -0.000000,10.000000,0.000000 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - - - -InventoryLabel -310.000000 -26.000000 -251.000031,152.000000,0.000000 -9 -XuiLabelDarkCentredWrap - - - - -HtmlTextPanel -42.000000 -42.000000 -85.000000,118.000000,0.000000 -false -HtmlItemDescription - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -346.000031,180.000046,0.000000 - - - -0 -346.000061,180.000046,0.000000 - - - -2 -100 --100 -50 -346.000061,180.000046,0.000000 - - - -0 -160.000000,180.000046,0.000000 - - - -2 -100 --100 -50 -160.000000,180.000046,0.000000 - - - -0 -346.000061,180.000046,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + XuiSceneTrading + 1280.000000 + 720.000000 + CXuiSceneTrading + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 26 + + + + easein + 26 + + + + none + 27 + + + + easein + 27 + + + + none + 26 + + + + + + Group + 588.000000 + 380.000000 + 346.000031,180.000046,0.000000 + 15 + XuiScene + Pointer + + + + RequiredWindow + 234.000000 + 186.000000 + 18.000031,178.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + TradingWindow + 312.000000 + 186.000000 + 259.000031,178.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + RequiredLabel + 230.000000 + 26.000000 + 19.000031,182.000000,0.000000 + 9 + XuiLabelDarkCentredWrapSmall + + + + + VillagerText + 568.000000 + 74.000000 + 10.000000,12.000000,0.000000 + XuiLabelVertCentDarkCentWrap18 + + + + + Request1 + 42.000000 + 42.000000 + 27.000031,230.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Request2 + 42.000000 + 42.000000 + 27.000031,284.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + Offer1Label + 168.000000 + 42.000000 + 79.000031,230.000000,0.000000 + 9 + XuiLabelVertCentDarkLeftWrap18 + + + + + Offer2Label + 168.000000 + 42.000000 + 78.000031,284.000000,0.000000 + 9 + XuiLabelVertCentDarkLeftWrap18 + + + + + ScrollLeftArrow + 32.000000 + 48.000000 + 56.000000,98.000000,0.000000 + XuiScrollEndLeft + + + + + ScrollRightArrow + 32.000000 + 48.000000 + 476.000000,98.000000,0.000000 + XuiScrollEndRight + + + + + TradingBar0 + 54.000000 + 54.000000 + 91.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar1 + 54.000000 + 54.000000 + 145.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar2 + 54.000000 + 54.000000 + 199.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar3 + 54.000000 + 54.000000 + 253.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar4 + 54.000000 + 54.000000 + 307.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar5 + 54.000000 + 54.000000 + 361.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingBar6 + 54.000000 + 54.000000 + 415.000000,94.000000,0.000000 + 3 + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + TradingSelector + 72.000000 + 72.000000 + 82.000000,85.000000,0.000000 + CraftingPanelHighlight + + + + + InventoryGrid + 290.000000 + 144.000000 + 270.000031,210.000000,0.000000 + + + + Inventory + 288.000000 + 96.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + UseRow + 288.000000 + 32.000000 + -0.000000,112.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical32 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 226.000000 + 45.000000 + 7.000000,22.000000,0.000000 + 5 + false + XuiButton + 0.000000,10.000000,0.000000 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + + + InventoryLabel + 310.000000 + 26.000000 + 261.000031,182.000000,0.000000 + 9 + XuiLabelDarkCentredWrap + + + + + HtmlTextPanel + 42.000000 + 42.000000 + 85.000000,118.000000,0.000000 + false + HtmlItemDescription + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trading_480.xui b/Minecraft.Client/Common/Media/xuiscene_trading_480.xui index 2d80308a..f0c8a351 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trading_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trading_480.xui @@ -1,6457 +1,7209 @@ - -640.000000 -480.000000 - - - -XuiSceneTrading -640.000000 -480.000000 -CXuiSceneTrading -XuiBlankScene -Pointer - - - -Group -364.000000 -243.000000 -138.000015,118.500008,0.000000 -15 -GraphicPanel -Pointer - - - -TradingWindow -126.777763 -121.000000 -10.000000,113.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -TradingWindow1 -215.666595 -121.000000 -139.555573,113.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -RequiredLabel -120.000000 -27.000000 -12.000000,118.000000,0.000000 -9 -XuiLabelDarkCentred8 - - - - -VillagerText -364.000000 -24.000000 -0.000000,16.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -Offer2Label -72.000000 -38.000000 -56.000000,192.000000,0.000000 -9 -XuiLabelVertCentDarkLeft8 - - - - -Offer1Label -72.000000 -38.000000 -57.000000,151.000000,0.000000 -9 -XuiLabelVertCentDarkLeft8 - - - - -ScrollLeftArrow -16.000000 -24.000000 -32.000000,56.000000,0.000000 -XuiScrollEndLeft - - - - -ScrollRightArrow -16.000000 -24.000000 -318.000000,56.000000,0.000000 -XuiScrollEndRight - - - - -Request1 -38.000000 -38.000000 -15.000000,151.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Request2 -38.000000 -38.000000 -15.000000,192.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar0 -38.000000 -38.000000 -48.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar1 -38.000000 -38.000000 -86.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar2 -38.000000 -38.000000 -124.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar3 -38.000000 -38.000000 -162.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar4 -38.000000 -38.000000 -200.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar5 -38.000000 -38.000000 -238.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar6 -38.000000 -38.000000 -276.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingSelector -43.000000 -43.000000 -45.000000,47.000000,0.000000 -CraftingPanelHighlightSmall - - - - -InventoryGrid -207.000000 -99.000000 -144.000000,131.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - -InventoryLabel -212.000000 -14.000000 -141.000000,116.000000,0.000000 -9 -XuiLabelDarkCentred8 - - - - -HtmlTextPanel -42.000000 -42.000000 -50.000000,85.000000,0.000000 -false -HtmlItemDescriptionSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -138.000015,118.500008,0.000000 - - - -0 -138.000000,118.500008,0.000000 - - - -2 -100 --100 -50 -138.000000,118.500008,0.000000 - - - -0 -34.000000,118.500008,0.000000 - - - -2 -100 --100 -50 -34.000000,118.500008,0.000000 - - - -0 -138.000000,118.500008,0.000000 - - - - + + 640.000000 + 480.000000 + + + + XuiSceneTrading + 640.000000 + 480.000000 + CXuiSceneTrading + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 25 + + + + easein + 25 + + + + none + 26 + + + + easein + 26 + + + + none + 25 + + + + + + Group + 384.000000 + 263.000000 + 138.000015,118.500008,0.000000 + 15 + GraphicPanel + Pointer + + + + TradingWindow + 142.000000 + 121.000000 + 12.000000,131.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + TradingWindow1 + 215.666595 + 121.000000 + 157.555573,131.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + RequiredLabel + 136.000000 + 34.000000 + 14.000000,134.000000,0.000000 + 9 + XuiLabelDarkCentred8 + + + + + VillagerText + 366.000000 + 54.000000 + 10.000000,8.000000,0.000000 + XuiLabelVertCentDarkCentWrap12 + + + + + Offer2Label + 92.000000 + 38.000000 + 58.000000,210.000000,0.000000 + 9 + XuiLabelVertCentDarkLeft8 + + + + + Offer1Label + 92.000000 + 38.000000 + 58.000000,168.000000,0.000000 + 9 + XuiLabelVertCentDarkLeft8 + + + + + ScrollLeftArrow + 16.000000 + 24.000000 + 32.000000,76.000000,0.000000 + XuiScrollEndLeft + + + + + ScrollRightArrow + 16.000000 + 24.000000 + 318.000000,76.000000,0.000000 + XuiScrollEndRight + + + + + Request1 + 38.000000 + 38.000000 + 16.000000,168.000000,0.000000 + 8 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Request2 + 38.000000 + 38.000000 + 16.000000,210.000000,0.000000 + 8 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar0 + 38.000000 + 38.000000 + 48.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar1 + 38.000000 + 38.000000 + 86.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar2 + 38.000000 + 38.000000 + 124.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar3 + 38.000000 + 38.000000 + 162.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar4 + 38.000000 + 38.000000 + 200.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar5 + 38.000000 + 38.000000 + 238.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar6 + 38.000000 + 38.000000 + 276.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingSelector + 43.000000 + 43.000000 + 45.000000,67.000000,0.000000 + CraftingPanelHighlightSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 162.000000,149.000000,0.000000 + 8 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + + InventoryLabel + 212.000000 + 14.000000 + 159.000000,134.000000,0.000000 + 9 + XuiLabelDarkCentred8 + + + + + HtmlTextPanel + 42.000000 + 42.000000 + 58.000000,87.000000,0.000000 + false + HtmlItemDescriptionSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trading_small.xui b/Minecraft.Client/Common/Media/xuiscene_trading_small.xui index 7876f228..b8ed4ba3 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trading_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trading_small.xui @@ -1,6205 +1,6705 @@ - -640.000000 -360.000000 - - - -XuiSceneTrading -640.000000 -360.000000 -CXuiSceneTrading -XuiBlankScene -Pointer - - - -Group -364.000000 -243.000000 -138.000015,3.000000,0.000000 -15 -GraphicPanel -Pointer - - - -TradingWindow -126.777763 -121.000000 -10.000000,113.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -TradingWindow1 -215.666595 -121.000000 -139.555573,113.000000,0.000000 -8 -XuiSkinSelectSectionBackground - - - - -RequiredLabel -120.000000 -27.000000 -12.000000,117.222229,0.000000 -9 -XuiLabelDarkCentred8 - - - - -VillagerText -364.000000 -24.000000 -0.000000,15.000000,0.000000 -LabelContainerSceneCentreSmall - - - - -Offer2Label -72.000000 -38.000000 -56.000000,192.000000,0.000000 -9 -XuiLabelVertCentDarkLeft8 - - - - -Offer1Label -72.000000 -38.000000 -56.000000,151.000000,0.000000 -9 -XuiLabelVertCentDarkLeft8 - - - - -ScrollLeftArrow -16.000000 -24.000000 -32.000000,56.000000,0.000000 -XuiScrollEndLeft - - - - -ScrollRightArrow -16.000000 -24.000000 -318.000000,56.000000,0.000000 -XuiScrollEndRight - - - - -Request1 -38.000000 -38.000000 -14.000000,151.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -Request2 -38.000000 -38.000000 -14.000000,192.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar0 -38.000000 -38.000000 -48.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar1 -38.000000 -38.000000 -86.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar2 -38.000000 -38.000000 -124.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar3 -38.000000 -38.000000 -162.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar4 -38.000000 -38.000000 -200.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar5 -38.000000 -38.000000 -238.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingBar6 -38.000000 -38.000000 -276.000000,50.000000,0.000000 -CXuiCtrlCraftIngredientSlot -ItemButtonRedSmall - - - - -TradingSelector -43.000000 -43.000000 -45.000000,47.000000,0.000000 -CraftingPanelHighlightSmall - - - - -InventoryGrid -207.000000 -99.000000 -144.000000,131.000000,0.000000 - - - -Inventory -198.000000 -66.000000 -4.000000,0.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - -UseRow -198.000000 -22.000000 -4.000000,76.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical22 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -32.000000 -32.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton32 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - -control_ListItem -22.000000 -22.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton22 -22594 -4 - - - - - - -InventoryLabel -212.000000 -14.000000 -141.000000,116.000000,0.000000 -9 -XuiLabelDarkCentred8 - - - - -HtmlTextPanel -42.000000 -42.000000 -58.000000,87.000000,0.000000 -false -HtmlItemDescriptionSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -138.000015,3.000000,0.000000 - - - -0 -138.000000,3.000000,0.000000 - - - -2 -100 --100 -50 -138.000000,3.000000,0.000000 - - - -0 -34.000000,3.000000,0.000000 - - - -2 -100 --100 -50 -34.000000,3.000000,0.000000 - - - -0 -138.000000,3.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + XuiSceneTrading + 640.000000 + 360.000000 + CXuiSceneTrading + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 25 + + + + easein + 25 + + + + none + 26 + + + + easein + 26 + + + + none + 25 + + + + + + Group + 384.000000 + 263.000000 + 128.000000,3.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + TradingWindow + 142.000000 + 121.000000 + 12.000000,131.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + TradingWindow1 + 215.666595 + 121.000000 + 157.555573,131.000000,0.000000 + 8 + XuiSkinSelectSectionBackground + + + + + RequiredLabel + 136.000000 + 34.000000 + 14.000000,134.000000,0.000000 + 9 + XuiLabelDarkCentred8 + + + + + VillagerText + 366.000000 + 54.000000 + 10.000000,8.000000,0.000000 + XuiLabelVertCentDarkCentWrap12 + + + + + Offer2Label + 92.000000 + 38.000000 + 58.000000,210.000000,0.000000 + 9 + XuiLabelVertCentDarkLeft8 + + + + + Offer1Label + 92.000000 + 38.000000 + 58.000000,168.000000,0.000000 + 9 + XuiLabelVertCentDarkLeft8 + + + + + ScrollLeftArrow + 16.000000 + 24.000000 + 32.000000,76.000000,0.000000 + XuiScrollEndLeft + + + + + ScrollRightArrow + 16.000000 + 24.000000 + 318.000000,76.000000,0.000000 + XuiScrollEndRight + + + + + Request1 + 38.000000 + 38.000000 + 16.000000,168.000000,0.000000 + 8 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + Request2 + 38.000000 + 38.000000 + 16.000000,210.000000,0.000000 + 8 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar0 + 38.000000 + 38.000000 + 48.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar1 + 38.000000 + 38.000000 + 86.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar2 + 38.000000 + 38.000000 + 124.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar3 + 38.000000 + 38.000000 + 162.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar4 + 38.000000 + 38.000000 + 200.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar5 + 38.000000 + 38.000000 + 238.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingBar6 + 38.000000 + 38.000000 + 276.000000,70.000000,0.000000 + CXuiCtrlCraftIngredientSlot + ItemButtonRedSmall + + + + + TradingSelector + 43.000000 + 43.000000 + 45.000000,67.000000,0.000000 + CraftingPanelHighlightSmall + + + + + InventoryGrid + 207.000000 + 99.000000 + 162.000000,149.000000,0.000000 + 8 + + + + Inventory + 198.000000 + 66.000000 + 4.000000,0.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + UseRow + 198.000000 + 22.000000 + 4.000000,76.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical22 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 32.000000 + 32.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton32 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + control_ListItem + 22.000000 + 22.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton22 + 22594 + 4 + + + + + + + InventoryLabel + 212.000000 + 14.000000 + 159.000000,134.000000,0.000000 + 9 + XuiLabelDarkCentred8 + + + + + HtmlTextPanel + 42.000000 + 42.000000 + 58.000000,87.000000,0.000000 + false + HtmlItemDescriptionSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trap.xui b/Minecraft.Client/Common/Media/xuiscene_trap.xui index 1e8ae3f7..27f04388 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trap.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trap.xui @@ -1,790 +1,783 @@ - -1280.000000 -720.000000 - - - -DispenserScene -1280.000000 -720.000000 -CXuiSceneTrap -XuiBlankScene -Pointer - - - -Group -430.000000 -405.000000 -425.000000,128.000000,0.000000 -15 -XuiScene -Pointer - - - -Inventory -383.000000 -129.000000 -25.000000,208.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -UseRow -382.000000 -45.000000 -25.000000,346.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -Trap -130.000000 -131.000000 -151.000031,46.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - - -InventoryText -374.000000 -26.000000,178.000000,0.000000 -LabelContainerSceneLeft - - - - -DispenserText -268.000000 -150.000000,16.000000,0.000000 -LabelContainerSceneLeft - - - - -Pointer -42.000000 -42.000000 --185.000000,-176.000015,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointer - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -425.000000,128.000000,0.000000 - - - -0 -425.000000,128.000000,0.000000 - - - -2 -100 --100 -50 -425.000000,128.000000,0.000000 - - - -0 -160.000000,128.000000,0.000000 - - - -2 -100 --100 -50 -160.000000,128.000000,0.000000 - - - -0 -425.000000,128.000000,0.000000 - - - - + + 1280.000000 + 720.000000 + + + + DispenserScene + 1280.000000 + 720.000000 + CXuiSceneTrap + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 8 + + + + none + 0 + + + + + + Group + 430.000000 + 405.000000 + 425.000000,128.000000,0.000000 + 15 + XuiScene + Pointer + + + + Inventory + 383.000000 + 129.000000 + 25.000000,208.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + UseRow + 382.000000 + 45.000000 + 25.000000,346.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + Trap + 130.000000 + 131.000000 + 151.000031,46.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + + InventoryText + 374.000000 + 26.000000,178.000000,0.000000 + LabelContainerSceneLeft + + + + + DispenserText + 268.000000 + 150.000000,16.000000,0.000000 + LabelContainerSceneLeft + + + + + Pointer + 42.000000 + 42.000000 + -185.000000,-176.000015,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointer + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trap_480.xui b/Minecraft.Client/Common/Media/xuiscene_trap_480.xui index 83cfdb03..0f82f876 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trap_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trap_480.xui @@ -1,1295 +1,1288 @@ - -640.000000 -480.000000 - - - -DispenserScene -1280.000000 -720.000000 -CXuiSceneTrap -XuiBlankScene -Pointer - - - -Group -260.000000 -280.000000 -190.000000,100.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -13.000009,152.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -13.000009,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Trap -80.000000 -80.000000 -91.000031,36.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,132.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -DispenserText -160.000000 -25.000000 -90.000000,14.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-40.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,100.000000,0.000000 - - - -0 -190.000000,100.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,100.000000,0.000000 - - - -0 -33.750000,100.000000,0.000000 - - - -2 -100 --100 -50 -60.000000,100.000000,0.000000 - - - -0 -190.000000,100.000000,0.000000 - - - - + + 640.000000 + 480.000000 + + + + DispenserScene + 1280.000000 + 720.000000 + CXuiSceneTrap + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 260.000000 + 280.000000 + 190.000000,100.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 13.000009,152.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 13.000009,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Trap + 80.000000 + 80.000000 + 91.000031,36.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,132.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + DispenserText + 160.000000 + 25.000000 + 90.000000,14.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-40.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trap_small.xui b/Minecraft.Client/Common/Media/xuiscene_trap_small.xui index 18fb3630..e4fc26ae 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trap_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trap_small.xui @@ -1,749 +1,742 @@ - -640.000000 -360.000000 - - - -DispenserScene -640.000000 -360.000000 -CXuiSceneTrap -XuiBlankScene -Pointer - - - -Group -260.000000 -280.000000 -190.000000,0.000000,0.000000 -15 -GraphicPanel -Pointer - - - -Inventory -234.000000 -80.000000 -12.000000,151.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -UseRow -234.000000 -12.000000,240.000000,0.000000 -8 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -Trap -80.000000 -80.000000 -91.000031,36.000000,0.000000 -2 -CXuiCtrlSlotList -ItemGridVertical26 - - - -control_ListItem -42.000000 -42.000000 -7 -0.000000,50.000000,0.000000 -false -CXuiCtrlSlotItemListItem -ItemButton -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - -control_ListItem -26.000000 -26.000000 -7 -false -CXuiCtrlSlotItemListItem -ItemButton26 -22594 -4 - - - - - -InventoryText -232.000000 -22.000000 -12.000000,130.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -DispenserText -162.000000 -25.000000 -90.000000,14.000000,0.000000 -LabelContainerSceneLeftSmall - - - - -Pointer -26.000000 -26.000000 --50.000000,-50.000000,0.000000 -9 -false -CXuiCtrlSlotItem -ItemPointerSmall - - - - - - -Normal - - - -EndNormal - -stop - - -MoveLeft - - - -EndMoveLeft - -stop - - -MoveRight - - - -EndMoveRight - -gotoandstop -EndNormal - - - -Group -Position - - -0 -190.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -190.000000,0.000000,0.000000 - - - -0 -64.000000,0.000000,0.000000 - - - -2 -100 --100 -50 -92.000000,0.000000,0.000000 - - - -0 -190.000000,0.000000,0.000000 - - - - + + 640.000000 + 360.000000 + + + + DispenserScene + 640.000000 + 360.000000 + CXuiSceneTrap + XuiBlankScene + Pointer + + + + + Normal + + + + EndNormal + + stop + + + MoveLeft + + + + EndMoveLeft + + stop + + + MoveRight + + + + EndMoveRight + + play + EndNormal + + + + Group + + + none + 0 + + + + none + 0 + + + + easein + 0 + + + + none + 8 + + + + easein + 9 + + + + none + 0 + + + + + + Group + 260.000000 + 280.000000 + 190.000000,0.000000,0.000000 + 15 + GraphicPanel + Pointer + + + + Inventory + 234.000000 + 80.000000 + 12.000000,151.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + UseRow + 234.000000 + 12.000000,240.000000,0.000000 + 8 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + Trap + 80.000000 + 80.000000 + 91.000031,36.000000,0.000000 + 2 + CXuiCtrlSlotList + ItemGridVertical26 + + + + control_ListItem + 42.000000 + 42.000000 + 7 + 0.000000,50.000000,0.000000 + false + CXuiCtrlSlotItemListItem + ItemButton + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + control_ListItem + 26.000000 + 26.000000 + 7 + false + CXuiCtrlSlotItemListItem + ItemButton26 + 22594 + 4 + + + + + + InventoryText + 232.000000 + 22.000000 + 12.000000,130.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + DispenserText + 162.000000 + 25.000000 + 90.000000,14.000000,0.000000 + LabelContainerSceneLeftSmall + + + + + Pointer + 26.000000 + 26.000000 + -50.000000,-50.000000,0.000000 + 9 + false + CXuiCtrlSlotItem + ItemPointerSmall + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trialexitupsell.xui b/Minecraft.Client/Common/Media/xuiscene_trialexitupsell.xui index dfd65403..4f256cf9 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trialexitupsell.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trialexitupsell.xui @@ -1,127 +1,126 @@ - -1280.000000 -720.000000 - - - -TrialExitUpsell -1280.000000 -720.000000 -CScene_TrialExitUpsell -XuiBlackScene - - - -XuiImage2 -1280.000000 -720.000000 -Graphics\UpsellScreenshots\Screenshot2.png - - - - -XuiImage1 -1280.000000 -720.000000 -Graphics\UpsellScreenshots\Screenshot1.png - - - - - -Normal - - - -EndNormal - -stop - - -Fade1to2 - - - -EndFade1to2 - -stop - - -Fade2to1 - - - -EndFade2to1 - -stop - - - -XuiImage1 -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - - - - -Normal - - - -EndNormal - -stop - - -Fade1to2 - - - -EndFade1to2 - -stop - - -Fade2to1 - - - -EndFade2to1 - -stop - - - + + 1280.000000 + 720.000000 + + + + + Normal + + + + EndNormal + + stop + + + Fade1to2 + + + + EndFade1to2 + + stop + + + Fade2to1 + + + + EndFade2to1 + + stop + + + + + + TrialExitUpsell + 1280.000000 + 720.000000 + CScene_TrialExitUpsell + XuiBlackScene + + + + + Normal + + + + EndNormal + + stop + + + Fade1to2 + + + + EndFade1to2 + + stop + + + Fade2to1 + + + + EndFade2to1 + + stop + + + + XuiImage1 + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 0 + + + + none + 0 + + + + none + 1065353216 + + + + + + XuiImage2 + 1280.000000 + 720.000000 + Graphics\UpsellScreenshots\Screenshot2.png + + + + + XuiImage1 + 1280.000000 + 720.000000 + Graphics\UpsellScreenshots\Screenshot1.png + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_trialexitupsell_480.xui b/Minecraft.Client/Common/Media/xuiscene_trialexitupsell_480.xui index a33d0a09..73d11039 100644 --- a/Minecraft.Client/Common/Media/xuiscene_trialexitupsell_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_trialexitupsell_480.xui @@ -1,131 +1,130 @@ - -640.000000 -480.000000 - - - -TrialExitUpsell -640.000000 -480.000000 -CScene_TrialExitUpsell -XuiBlackScene - - - -XuiImage2 -860.000000 -480.000000 --109.999969,0.000000,0.000000 -16 -Graphics\UpsellScreenshots\Screenshot2.png - - - - -XuiImage1 -860.000000 -480.000000 --109.999969,0.000000,0.000000 -16 -Graphics\UpsellScreenshots\Screenshot1.png - - - - - -Normal - - - -EndNormal - -stop - - -Fade1to2 - - - -EndFade1to2 - -stop - - -Fade2to1 - - - -EndFade2to1 - -stop - - - -XuiImage1 -Opacity - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -1.000000 - - - -0 -0.000000 - - - -0 -0.000000 - - - -0 -1.000000 - - - - - - - -Normal - - - -EndNormal - -stop - - -Fade1to2 - - - -EndFade1to2 - -stop - - -Fade2to1 - - - -EndFade2to1 - -stop - - - + + 640.000000 + 480.000000 + + + + + Normal + + + + EndNormal + + stop + + + Fade1to2 + + + + EndFade1to2 + + stop + + + Fade2to1 + + + + EndFade2to1 + + stop + + + + + + TrialExitUpsell + 640.000000 + 480.000000 + CScene_TrialExitUpsell + XuiBlackScene + + + + + Normal + + + + EndNormal + + stop + + + Fade1to2 + + + + EndFade1to2 + + stop + + + Fade2to1 + + + + EndFade2to1 + + stop + + + + XuiImage1 + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 1065353216 + + + + none + 0 + + + + none + 0 + + + + none + 1065353216 + + + + + + XuiImage2 + 860.000000 + 480.000000 + -109.999969,0.000000,0.000000 + 16 + Graphics\UpsellScreenshots\Screenshot2.png + + + + + XuiImage1 + 860.000000 + 480.000000 + -109.999969,0.000000,0.000000 + 16 + Graphics\UpsellScreenshots\Screenshot1.png + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup.xui b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup.xui index aa00fd10..da0a550a 100644 --- a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup.xui +++ b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup.xui @@ -1,83 +1,70 @@ - -1280.000000 -720.000000 - - - -TutorialPopup -497.000000 -210.000000 -719.000000,53.000000,0.000000 -true -CScene_TutorialPopup -PointerTextPanel - - - -Description -447.000000 -170.000000 -25.000000,20.000000,0.000000 -5 -XuiHtmlControl - - - - -XuiInventoryPic -64.000000 -64.000000 -216.000000,126.000000,0.000000 -24 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiImage -320.000000 -180.000000 -88.000000,10.000000,0.000000 -24 -false -TutorialExitScreenshot.png - - - - -Title -447.000000 -43.000000 -25.000000,20.000000,0.000000 -5 -false -XuiLabelLight_Shadowed - - - - -FontSize -205.000000 -74.000000 --198.000000,524.000000,0.000000 -18 - - - - -XuiText1 -657.000000 -139.000000 --209.000000,442.000000,0.000000 -true -To change the font size of the text in the HTML control, change the value of the "FontSize" control to the size required. -0xff0f0f0f -0x800f0f0f -0 - - - + + 1280.000000 + 720.000000 + + + + TutorialPopup + 497.000000 + 210.000000 + 719.000000,53.000000,0.000000 + true + CScene_TutorialPopup + PointerTextPanel + + + + Description + 447.000000 + 170.000000 + 25.000000,20.000000,0.000000 + 5 + XuiHtmlControl + + + + + XuiInventoryPic + 64.000000 + 64.000000 + 216.000000,126.000000,0.000000 + 24 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiImage + 320.000000 + 180.000000 + 88.000000,10.000000,0.000000 + 24 + false + TutorialExitScreenshot.png + + + + + Title + 447.000000 + 43.000000 + 25.000000,20.000000,0.000000 + 5 + false + XuiLabelLight_Shadowed + + + + + FontSize + 205.000000 + 74.000000 + -198.000000,524.000000,0.000000 + 18 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_480.xui b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_480.xui index e22ecf16..f3bbdc14 100644 --- a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_480.xui @@ -1,83 +1,70 @@ - -640.000000 -480.000000 - - - -TutorialPopup -250.000000 -230.000000 -340.000000,40.000000,0.000000 -true -CScene_TutorialPopup -PointerTextPanel - - - -Description -225.000000 -185.000000 -12.000000,12.000000,0.000000 -5 -XuiHtmlControl - - - - -XuiInventoryPic -32.000000 -32.000000 -108.000000,186.000000,0.000000 -24 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiImage -160.000000 -90.000000 -45.000000,156.000000,0.000000 -24 -false -TutorialExitScreenshot.png - - - - -Title -225.000000 -44.000000 -12.000000,20.000000,0.000000 -5 -false -XuiLabelLight_Shadowed - - - - -FontSize -205.000000 -74.000000 --198.000000,524.000000,0.000000 -12 - - - - -XuiText1 -657.000000 -139.000000 --209.000000,442.000000,0.000000 -true -To change the font size of the text in the HTML control, change the value of the "FontSize" control to the size required. -0xff0f0f0f -0x800f0f0f -0 - - - + + 640.000000 + 480.000000 + + + + TutorialPopup + 250.000000 + 230.000000 + 340.000000,40.000000,0.000000 + true + CScene_TutorialPopup + PointerTextPanel + + + + Description + 225.000000 + 185.000000 + 12.000000,12.000000,0.000000 + 5 + XuiHtmlControl + + + + + XuiInventoryPic + 32.000000 + 32.000000 + 108.000000,186.000000,0.000000 + 24 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiImage + 160.000000 + 90.000000 + 45.000000,156.000000,0.000000 + 24 + false + TutorialExitScreenshot.png + + + + + Title + 225.000000 + 44.000000 + 12.000000,20.000000,0.000000 + 5 + false + XuiLabelLight_Shadowed + + + + + FontSize + 205.000000 + 74.000000 + -198.000000,524.000000,0.000000 + 12 + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_small.xui b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_small.xui index 6c9bcf9d..9cbc7fbf 100644 --- a/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_small.xui +++ b/Minecraft.Client/Common/Media/xuiscene_tutorialpopup_small.xui @@ -1,84 +1,71 @@ - -1280.000000 -720.000000 - - - -TutorialPopup -250.000000 -210.000000 -390.000000,4.000000,0.000000 -true -CScene_TutorialPopup -PointerTextPanel - - - -Description -230.000000 -190.000000 -10.000000,10.000000,0.000000 -5 -XuiHtmlControl - - - - -XuiInventoryPic -32.000000 -32.000000 -108.000000,168.000000,0.000000 -24 -false -CXuiCtrlCraftIngredientSlot -ItemButtonRed - - - - -XuiImage -160.000000 -90.000000 -45.000000,110.000000,0.000000 -24 -false -TutorialExitScreenshot.png - - - - -Title -230.000000 -44.000000 -10.000000,10.000000,0.000000 -5 -false -XuiLabelLight_ShadowedSmall - - - - -FontSize -205.000000 -74.000000 --198.000000,524.000000,0.000000 -12 + + 1280.000000 + 720.000000 + + + + TutorialPopup + 250.000000 + 210.000000 + 390.000000,4.000000,0.000000 + true + CScene_TutorialPopup + PointerTextPanel + + + + Description + 230.000000 + 190.000000 + 10.000000,10.000000,0.000000 + 5 + XuiHtmlControl + + + + + XuiInventoryPic + 32.000000 + 32.000000 + 108.000000,168.000000,0.000000 + 24 + false + CXuiCtrlCraftIngredientSlot + ItemButtonRed + + + + + XuiImage + 160.000000 + 90.000000 + 45.000000,110.000000,0.000000 + 24 + false + TutorialExitScreenshot.png + + + + + Title + 230.000000 + 44.000000 + 10.000000,10.000000,0.000000 + 5 + false + XuiLabelLight_ShadowedSmall + + + + + FontSize + 205.000000 + 74.000000 + -198.000000,524.000000,0.000000 + 12 - - - - -XuiText1 -657.000000 -139.000000 --209.000000,442.000000,0.000000 -true -To change the font size of the text in the HTML control, change the value of the "FontSize" control to the size required. -0xff0f0f0f -0x800f0f0f -0 - - - + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_win.xui b/Minecraft.Client/Common/Media/xuiscene_win.xui index f87c47f7..e4ffbeab 100644 --- a/Minecraft.Client/Common/Media/xuiscene_win.xui +++ b/Minecraft.Client/Common/Media/xuiscene_win.xui @@ -1,68 +1,41 @@ - -1280.000000 -720.000000 - - - -WinScene -1280.000000 -720.000000 -CScene_Win -XuiBackgroundScroll -FocusSink - - - -HtmlControl -532.000000 -720.000000 -374.000031,0.000000,0.000000 -XuiHtmlControl_EndStory -false - - - - -Darken -1280.000000 -1280.000000 --63.999886,-23.999947,0.000000 -1.100000,0.600000,1.000000 -15 - - -0xff0f0f80 - - - - -3 -0x0f0f0f0f - - -true -3 -0x230f0f0f -0x2d0f0f0f -0xe10f0f0f -0.000000 -0.537255 -1.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,1131.000000,0.000000,0,1131.000000,0.000000,1131.000000,0.000000,1131.000000,719.000000,0,1131.000000,719.000000,1131.000000,719.000000,0.000000,719.000000,0,0.000000,719.000000,0.000000,719.000000,0.000000,0.000000,0, - - - - -FocusSink -1320.000000,98.000000,0.000000 - - - + + 1280.000000 + 720.000000 + + + + WinScene + 1280.000000 + 720.000000 + CScene_Win + XuiBackgroundScroll + FocusSink + + + + HtmlControl + 532.000000 + 720.000000 + 374.000031,0.000000,0.000000 + XuiHtmlControl_EndStory + false + + + + + Darken + 1280.000000 + 1280.000000 + -63.999886,-23.999947,0.000000 + 1.100000,0.600000,1.000000 + 15 + false + + + + + + + diff --git a/Minecraft.Client/Common/Media/xuiscene_win_480.xui b/Minecraft.Client/Common/Media/xuiscene_win_480.xui index 081405de..e4624bad 100644 --- a/Minecraft.Client/Common/Media/xuiscene_win_480.xui +++ b/Minecraft.Client/Common/Media/xuiscene_win_480.xui @@ -1,69 +1,42 @@ - -640.000000 -480.000000 - - - -WinScene -640.000000 -480.000000 -0.000031,0.000000,0.000000 -CScene_Win -XuiBackgroundScroll -FocusSink - - - -HtmlControl -380.000000 -480.000000 -130.000031,-0.000000,0.000000 -XuiHtmlControl_EndStory -false - - - - -Darken -640.000000 -640.000000 --19.199951,-15.999989,0.000000 -1.060000,0.800000,1.000000 -15 - - -0xff0f0f80 - - - - -3 -0x0f0f0f0f - - -true -3 -0x230f0f0f -0x2d0f0f0f -0xe10f0f0f -0.000000 -0.537255 -1.000000 - - -1 - - -true -4,0.000000,0.000000,0.000000,0.000000,1131.000000,0.000000,0,1131.000000,0.000000,1131.000000,0.000000,1131.000000,719.000000,0,1131.000000,719.000000,1131.000000,719.000000,0.000000,719.000000,0,0.000000,719.000000,0.000000,719.000000,0.000000,0.000000,0, - - - - -FocusSink -1320.000000,98.000000,0.000000 - - - + + 640.000000 + 480.000000 + + + + WinScene + 640.000000 + 480.000000 + 0.000031,0.000000,0.000000 + CScene_Win + XuiBackgroundScroll + FocusSink + + + + HtmlControl + 380.000000 + 480.000000 + 130.000031,-0.000000,0.000000 + XuiHtmlControl_EndStory + false + + + + + Darken + 640.000000 + 640.000000 + -19.199951,-15.999989,0.000000 + 1.060000,0.800000,1.000000 + 15 + false + + + + + + + diff --git a/Minecraft.Client/Common/UI/IUIScene_AbstractContainerMenu.cpp b/Minecraft.Client/Common/UI/IUIScene_AbstractContainerMenu.cpp index 571b004f..1cedc737 100644 --- a/Minecraft.Client/Common/UI/IUIScene_AbstractContainerMenu.cpp +++ b/Minecraft.Client/Common/UI/IUIScene_AbstractContainerMenu.cpp @@ -757,7 +757,10 @@ void IUIScene_AbstractContainerMenu::onMouseTick() { bCarriedIsSameAsSlot = IsSameItemAs(carriedItem, slotItem); bCanCombine = m_menu->mayCombine(slot,carriedItem); - bCanDye = bCanCombine && dynamic_cast(slot->getItem()->getItem()); + if(bCanCombine && slotItem != NULL) + { + bCanDye = dynamic_cast(slotItem->getItem()) != NULL; + } if ( bCarriedIsSameAsSlot ) { @@ -917,62 +920,64 @@ void IUIScene_AbstractContainerMenu::onMouseTick() if((eSectionUnderPointer==eSectionInventoryUsing)||(eSectionUnderPointer==eSectionInventoryInventory)) { shared_ptr item = getSlotItem(eSectionUnderPointer, iNewSlotIndex); - ArmorRecipes::_eArmorType eArmourType=ArmorRecipes::GetArmorType(item->id); + if(item != NULL) + { + ArmorRecipes::_eArmorType eArmourType=ArmorRecipes::GetArmorType(item->id); - if(eArmourType==ArmorRecipes::eArmorType_None) - { - buttonY = eToolTipQuickMove; - } - else - { - // check that the slot required is empty - switch(eArmourType) + if(eArmourType==ArmorRecipes::eArmorType_None) { - case ArmorRecipes::eArmorType_Helmet: - if(isSlotEmpty(eSectionInventoryArmor,0)) - { - buttonY = eToolTipEquip; - } - else - { - buttonY = eToolTipQuickMove; - } - break; - case ArmorRecipes::eArmorType_Chestplate: - if(isSlotEmpty(eSectionInventoryArmor,1)) - { - buttonY = eToolTipEquip; - } - else - { - buttonY = eToolTipQuickMove; - } - break; - case ArmorRecipes::eArmorType_Leggings: - if(isSlotEmpty(eSectionInventoryArmor,2)) - { - buttonY = eToolTipEquip; - } - else - { - buttonY = eToolTipQuickMove; - } - break; - case ArmorRecipes::eArmorType_Boots: - if(isSlotEmpty(eSectionInventoryArmor,3)) - { - buttonY = eToolTipEquip; - } - else - { - buttonY = eToolTipQuickMove; - } - break; - default: buttonY = eToolTipQuickMove; - break; } - + else + { + // check that the slot required is empty + switch(eArmourType) + { + case ArmorRecipes::eArmorType_Helmet: + if(isSlotEmpty(eSectionInventoryArmor,0)) + { + buttonY = eToolTipEquip; + } + else + { + buttonY = eToolTipQuickMove; + } + break; + case ArmorRecipes::eArmorType_Chestplate: + if(isSlotEmpty(eSectionInventoryArmor,1)) + { + buttonY = eToolTipEquip; + } + else + { + buttonY = eToolTipQuickMove; + } + break; + case ArmorRecipes::eArmorType_Leggings: + if(isSlotEmpty(eSectionInventoryArmor,2)) + { + buttonY = eToolTipEquip; + } + else + { + buttonY = eToolTipQuickMove; + } + break; + case ArmorRecipes::eArmorType_Boots: + if(isSlotEmpty(eSectionInventoryArmor,3)) + { + buttonY = eToolTipEquip; + } + else + { + buttonY = eToolTipQuickMove; + } + break; + default: + buttonY = eToolTipQuickMove; + break; + } + } } } // 4J-PB - show tooltips for quick use of fuel or ingredient @@ -980,76 +985,55 @@ void IUIScene_AbstractContainerMenu::onMouseTick() { // Get the info on this item. shared_ptr item = getSlotItem(eSectionUnderPointer, iNewSlotIndex); - bool bValidFuel = FurnaceTileEntity::isFuel(item); - bool bValidIngredient = FurnaceRecipes::getInstance()->getResult(item->getItem()->id) != NULL; - - if(bValidIngredient) + if(item != NULL) { - // is there already something in the ingredient slot? - if(!isSlotEmpty(eSectionFurnaceIngredient,0)) + bool bValidFuel = FurnaceTileEntity::isFuel(item); + bool bValidIngredient = false; + Item *furnaceItem = item->getItem(); + if(furnaceItem != NULL) { - // is it the same as this item - shared_ptr IngredientItem = getSlotItem(eSectionFurnaceIngredient,0); - if(IngredientItem->id == item->id) + bValidIngredient = FurnaceRecipes::getInstance()->getResult(furnaceItem->id) != NULL; + } + + if(bValidIngredient) + { + // is there already something in the ingredient slot? + if(!isSlotEmpty(eSectionFurnaceIngredient,0)) { - buttonY = eToolTipQuickMoveIngredient; - } - else - { - if(FurnaceRecipes::getInstance()->getResult(item->id)==NULL) - { - buttonY = eToolTipQuickMove; - } - else + // is it the same as this item + shared_ptr IngredientItem = getSlotItem(eSectionFurnaceIngredient,0); + if(IngredientItem != NULL && IngredientItem->id == item->id) { buttonY = eToolTipQuickMoveIngredient; } - } - } - else - { - // ingredient slot empty - buttonY = eToolTipQuickMoveIngredient; - } - } - else if(bValidFuel) - { - // Is there already something in the fuel slot? - if(!isSlotEmpty(eSectionFurnaceFuel,0)) - { - // is it the same as this item - shared_ptr fuelItem = getSlotItem(eSectionFurnaceFuel,0); - if(fuelItem->id == item->id) - { - buttonY = eToolTipQuickMoveFuel; - } - else if(bValidIngredient) - { - // check if the ingredient slot is empty, or the same as this - if(!isSlotEmpty(eSectionFurnaceIngredient,0)) + else { - // is it the same as this item - shared_ptr IngredientItem = getSlotItem(eSectionFurnaceIngredient,0); - if(IngredientItem->id == item->id) + if(FurnaceRecipes::getInstance()->getResult(item->id)==NULL) { - buttonY = eToolTipQuickMoveIngredient; + buttonY = eToolTipQuickMove; } else { - if(FurnaceRecipes::getInstance()->getResult(item->id)==NULL) - { - buttonY = eToolTipQuickMove; - } - else - { - buttonY = eToolTipQuickMoveIngredient; - } + buttonY = eToolTipQuickMoveIngredient; } } - else + } + else + { + // ingredient slot empty + buttonY = eToolTipQuickMoveIngredient; + } + } + else if(bValidFuel) + { + // Is there already something in the fuel slot? + if(!isSlotEmpty(eSectionFurnaceFuel,0)) + { + // is it the same as this item + shared_ptr fuelItem = getSlotItem(eSectionFurnaceFuel,0); + if(fuelItem != NULL && fuelItem->id == item->id) { - // ingredient slot empty - buttonY = eToolTipQuickMoveIngredient; + buttonY = eToolTipQuickMoveFuel; } } else @@ -1072,128 +1056,135 @@ void IUIScene_AbstractContainerMenu::onMouseTick() { // Get the info on this item. shared_ptr item = getSlotItem(eSectionUnderPointer, iNewSlotIndex); - int iId=item->id; - - // valid ingredient? - bool bValidIngredient=false; - //bool bValidIngredientBottom=false; - - if(Item::items[iId]->hasPotionBrewingFormula() || (iId == Item::netherwart_seeds_Id)) + if(item != NULL) { - bValidIngredient=true; - } + int iId=item->id; - if(bValidIngredient) - { - // is there already something in the ingredient slot? - if(!isSlotEmpty(eSectionBrewingIngredient,0)) + // valid ingredient? + bool bValidIngredient=false; + //bool bValidIngredientBottom=false; + + if(Item::items[iId] != NULL && (Item::items[iId]->hasPotionBrewingFormula() || (iId == Item::netherwart_seeds_Id))) { - // is it the same as this item - shared_ptr IngredientItem = getSlotItem(eSectionBrewingIngredient,0); - if(IngredientItem->id == item->id) + bValidIngredient=true; + } + + if(bValidIngredient) + { + // is there already something in the ingredient slot? + if(!isSlotEmpty(eSectionBrewingIngredient,0)) { + // is it the same as this item + shared_ptr IngredientItem = getSlotItem(eSectionBrewingIngredient,0); + if(IngredientItem != NULL && IngredientItem->id == item->id) + { + buttonY = eToolTipQuickMoveIngredient; + } + else + { + buttonY=eToolTipQuickMove; + } + } + else + { + // ingredient slot empty buttonY = eToolTipQuickMoveIngredient; } + } + else + { + // valid potion? Glass bottle with water in it is a 'potion' too. + if(iId==Item::potion_Id) + { + // space available? + if(isSlotEmpty(eSectionBrewingBottle1,0) || + isSlotEmpty(eSectionBrewingBottle2,0) || + isSlotEmpty(eSectionBrewingBottle3,0)) + { + buttonY = eToolTipQuickMoveIngredient; + } + else + { + buttonY=eToolTipNone; + } + } else { buttonY=eToolTipQuickMove; } } - else - { - // ingredient slot empty - buttonY = eToolTipQuickMoveIngredient; - } - } - else - { - // valid potion? Glass bottle with water in it is a 'potion' too. - if(iId==Item::potion_Id) - { - // space available? - if(isSlotEmpty(eSectionBrewingBottle1,0) || - isSlotEmpty(eSectionBrewingBottle2,0) || - isSlotEmpty(eSectionBrewingBottle3,0)) - { - buttonY = eToolTipQuickMoveIngredient; - } - else - { - buttonY=eToolTipNone; - } - } - else - { - buttonY=eToolTipQuickMove; - } } } else if((eSectionUnderPointer==eSectionEnchantUsing)||(eSectionUnderPointer==eSectionEnchantInventory)) { // Get the info on this item. shared_ptr item = getSlotItem(eSectionUnderPointer, iNewSlotIndex); - int iId=item->id; - - // valid enchantable tool? - if(Item::items[iId]->isEnchantable(item)) + if(item != NULL) { - // is there already something in the ingredient slot? - if(isSlotEmpty(eSectionEnchantSlot,0)) - { - // tool slot empty - switch(iId) + int iId=item->id; + + // valid enchantable tool? + Item *enchantItem = Item::items[iId]; + if(enchantItem != NULL && enchantItem->isEnchantable(item)) + { + // is there already something in the ingredient slot? + if(isSlotEmpty(eSectionEnchantSlot,0)) + { + // tool slot empty + switch(iId) + { + case Item::bow_Id: + case Item::sword_wood_Id: + case Item::sword_stone_Id: + case Item::sword_iron_Id: + case Item::sword_diamond_Id: + buttonY=eToolTipQuickMoveWeapon; + break; + + case Item::helmet_leather_Id: + case Item::chestplate_leather_Id: + case Item::leggings_leather_Id: + case Item::boots_leather_Id: + + case Item::helmet_chain_Id: + case Item::chestplate_chain_Id: + case Item::leggings_chain_Id: + case Item::boots_chain_Id: + + case Item::helmet_iron_Id: + case Item::chestplate_iron_Id: + case Item::leggings_iron_Id: + case Item::boots_iron_Id: + + case Item::helmet_diamond_Id: + case Item::chestplate_diamond_Id: + case Item::leggings_diamond_Id: + case Item::boots_diamond_Id: + + case Item::helmet_gold_Id: + case Item::chestplate_gold_Id: + case Item::leggings_gold_Id: + case Item::boots_gold_Id: + buttonY=eToolTipQuickMoveArmor; + + break; + case Item::book_Id: + buttonY = eToolTipQuickMove; + break; + default: + buttonY=eToolTipQuickMoveTool; + break; + } + } + else { - case Item::bow_Id: - case Item::sword_wood_Id: - case Item::sword_stone_Id: - case Item::sword_iron_Id: - case Item::sword_diamond_Id: - buttonY=eToolTipQuickMoveWeapon; - break; - - case Item::helmet_leather_Id: - case Item::chestplate_leather_Id: - case Item::leggings_leather_Id: - case Item::boots_leather_Id: - - case Item::helmet_chain_Id: - case Item::chestplate_chain_Id: - case Item::leggings_chain_Id: - case Item::boots_chain_Id: - - case Item::helmet_iron_Id: - case Item::chestplate_iron_Id: - case Item::leggings_iron_Id: - case Item::boots_iron_Id: - - case Item::helmet_diamond_Id: - case Item::chestplate_diamond_Id: - case Item::leggings_diamond_Id: - case Item::boots_diamond_Id: - - case Item::helmet_gold_Id: - case Item::chestplate_gold_Id: - case Item::leggings_gold_Id: - case Item::boots_gold_Id: - buttonY=eToolTipQuickMoveArmor; - - break; - case Item::book_Id: buttonY = eToolTipQuickMove; - break; - default: - buttonY=eToolTipQuickMoveTool; - break; } } else { - buttonY = eToolTipQuickMove; + buttonY=eToolTipQuickMove; } - } - else - { - buttonY=eToolTipQuickMove; } } else @@ -1592,14 +1583,22 @@ vector *IUIScene_AbstractContainerMenu::GetItemDescription(Slot *slo { if(slot == NULL) return NULL; - vector *lines = slot->getItem()->getHoverText(nullptr, false); + shared_ptr itemInst = slot->getItem(); + if(itemInst == NULL) return NULL; + + vector *lines = itemInst->getHoverText(nullptr, false); + if(lines == NULL) return NULL; // Add rarity to first line if (lines->size() > 0) { - lines->at(0).color = slot->getItem()->getRarity()->color; + const Rarity *rarity = itemInst->getRarity(); + if(rarity != NULL) + { + lines->at(0).color = rarity->color; + } - if(slot->getItem()->hasCustomHoverName()) + if(itemInst->hasCustomHoverName()) { lines->at(0).color = eTextColor_RenamedItemTitle; } diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.cpp b/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.cpp new file mode 100644 index 00000000..1575de1f --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.cpp @@ -0,0 +1,33 @@ +#include "stdafx.h" +#include "XUI_Ctrl_BeaconButton.h" + +HRESULT CXuiCtrlBeaconButton::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + m_buttonId = 0; + m_iconId = 0; + m_bActive = false; + m_bSelected = false; + + return S_OK; +} + +void CXuiCtrlBeaconButton::SetData(int buttonId, int iconId, bool bActive, bool bSelected) +{ + m_buttonId = buttonId; + m_iconId = iconId; + m_bActive = bActive; + m_bSelected = bSelected; + + XuiControlSetEnable( m_hObj, bActive ? TRUE : FALSE ); +} + +void CXuiCtrlBeaconButton::SetButtonActive(bool bActive) +{ + m_bActive = bActive; + XuiControlSetEnable( m_hObj, bActive ? TRUE : FALSE ); +} + +void CXuiCtrlBeaconButton::SetButtonSelected(bool bSelected) +{ + m_bSelected = bSelected; +} diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.h b/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.h new file mode 100644 index 00000000..9a1aa3fd --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_BeaconButton.h @@ -0,0 +1,27 @@ +#pragma once + +class CXuiCtrlBeaconButton : public CXuiControlImpl +{ +public: + XUI_IMPLEMENT_CLASS( CXuiCtrlBeaconButton, L"CXuiCtrlBeaconButton", XUI_CLASS_CONTROL ) + + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_END_MSG_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); + +public: + void SetData(int buttonId, int iconId, bool bActive, bool bSelected); + bool IsButtonActive() const { return m_bActive; } + bool IsButtonSelected() const { return m_bSelected; } + int GetData() const { return m_buttonId; } + void SetButtonActive(bool bActive); + void SetButtonSelected(bool bSelected); + +private: + int m_buttonId; + int m_iconId; + bool m_bActive; + bool m_bSelected; +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.cpp b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.cpp new file mode 100644 index 00000000..b4753244 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.cpp @@ -0,0 +1,7 @@ +#include "stdafx.h" +#include "XUI_Ctrl_MinecraftHorse.h" + +HRESULT CXuiCtrlMinecraftHorse::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + return S_OK; +} diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.h b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.h new file mode 100644 index 00000000..c2342ee4 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_MinecraftHorse.h @@ -0,0 +1,13 @@ +#pragma once + +class CXuiCtrlMinecraftHorse : public CXuiControlImpl +{ +public: + XUI_IMPLEMENT_CLASS( CXuiCtrlMinecraftHorse, L"CXuiCtrlMinecraftHorse", XUI_CLASS_CONTROL ) + + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_END_MSG_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotItemCtrlBase.cpp b/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotItemCtrlBase.cpp index 87abbcd3..7ef8b783 100644 --- a/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotItemCtrlBase.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotItemCtrlBase.cpp @@ -135,9 +135,14 @@ wstring CXuiCtrlSlotItemCtrlBase::GetItemDescription( HXUIOBJ hObj, vectorslot != NULL) { wstring desc = L""; - vector *strings = pUserDataContainer->slot->getItem()->getHoverText(Minecraft::GetInstance()->localplayers[pUserDataContainer->m_iPad], false, unformattedStrings); + vector *rawStrings = pUserDataContainer->slot->getItem()->getHoverText(Minecraft::GetInstance()->localplayers[pUserDataContainer->m_iPad], false); + for(AUTO_VAR(rit, rawStrings->begin()); rit != rawStrings->end(); ++rit) + { + unformattedStrings.push_back(rit->text); + } + delete rawStrings; bool firstLine = true; - for(AUTO_VAR(it, strings->begin()); it != strings->end(); ++it) + for(AUTO_VAR(it, unformattedStrings.begin()); it != unformattedStrings.end(); ++it) { wstring thisString = *it; if(!firstLine) @@ -161,8 +166,6 @@ wstring CXuiCtrlSlotItemCtrlBase::GetItemDescription( HXUIOBJ hObj, vectorclear(); - delete strings; return desc;//app.GetString( pUserDataContainer->slot->getItem()->getDescriptionId() ); } else if(pUserDataContainer->m_iPad >= 0 && pUserDataContainer->m_iPad < XUSER_MAX_COUNT) diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotList.cpp b/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotList.cpp index 7e51c885..7dc1cd92 100644 --- a/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotList.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_SlotList.cpp @@ -96,12 +96,14 @@ void CXuiCtrlSlotList::SetData(int m_iPad, AbstractContainerMenu* menu, int rows for(int i = 0; i < slotCount; i++) { - CXuiCtrlSlotItemListItem* slotControl; + CXuiCtrlSlotItemListItem* slotControl = NULL; GetCXuiCtrlSlotItem(i, &slotControl); - slotControl->SetSlot( slotControl->m_hObj, menu->getSlot( i + startIndex ) ); - - slotControl->SetUserIndex( slotControl->m_hObj, m_iPad ); + if( slotControl != NULL ) + { + slotControl->SetSlot( slotControl->m_hObj, menu->getSlot( i + startIndex ) ); + slotControl->SetUserIndex( slotControl->m_hObj, m_iPad ); + } slotControl = NULL; } @@ -214,18 +216,28 @@ void CXuiCtrlSlotList::SetEntrySlot(int row, int column, XUI_CONTROL_NAVIGATE di void CXuiCtrlSlotList::Clicked() { - CXuiCtrlSlotItemListItem* slot; + CXuiCtrlSlotItemListItem* slot = NULL; GetCXuiCtrlSlotItem( GetCurSel() , &slot); - // To get the press animation - slot->Press(); + if( slot != NULL ) + { + slot->Press(); + } } void CXuiCtrlSlotList::GetCXuiCtrlSlotItem(int itemIndex, CXuiCtrlSlotItemListItem** CXuiCtrlSlotItem) { - HXUIOBJ itemControl = this->GetItemControl(itemIndex); - VOID *pObj; - XuiObjectFromHandle( itemControl, &pObj ); + HXUIOBJ itemControl = XuiListGetItemControl( m_hObj, itemIndex ); + if( itemControl == NULL ) + { + itemControl = this->GetItemControl( itemIndex ); + } + + VOID *pObj = NULL; + if( itemControl != NULL ) + { + XuiObjectFromHandle( itemControl, &pObj ); + } + *CXuiCtrlSlotItem = (CXuiCtrlSlotItemListItem *)pObj; } - diff --git a/Minecraft.Client/Common/XUI/XUI_DebugOverlay.cpp b/Minecraft.Client/Common/XUI/XUI_DebugOverlay.cpp index a23e97b7..5a5e6a4e 100644 --- a/Minecraft.Client/Common/XUI/XUI_DebugOverlay.cpp +++ b/Minecraft.Client/Common/XUI/XUI_DebugOverlay.cpp @@ -101,7 +101,7 @@ HRESULT CScene_DebugOverlay::OnInit( XUIMessageInit *pInitData, BOOL &bHandled ) Minecraft *pMinecraft = Minecraft::GetInstance(); - m_setTime.SetValue( pMinecraft->level->getLevelData()->getTime() % 24000 ); + m_setTime.SetValue( pMinecraft->level->getLevelData()->getGameTime() % 24000 ); m_setFov.SetValue( (int)pMinecraft->gameRenderer->GetFovVal()); XuiSetTimer(m_hObj,0,DEBUG_OVERLAY_UPDATE_TIME_PERIOD); @@ -261,7 +261,7 @@ HRESULT CScene_DebugOverlay::OnNotifyValueChanged( HXUIOBJ hObjSource, XUINotify // tries to predict the time // Only works if we are on the host machine, but shouldn't break if not MinecraftServer::SetTime(pNotifyValueChangedData->nValue); - pMinecraft->level->getLevelData()->setTime(pNotifyValueChangedData->nValue); + pMinecraft->level->getLevelData()->setGameTime(pNotifyValueChangedData->nValue); } if( hObjSource == m_setFov ) { @@ -276,7 +276,7 @@ HRESULT CScene_DebugOverlay::OnTimer( XUIMessageTimer *pTimer, BOOL& bHandled ) Minecraft *pMinecraft = Minecraft::GetInstance(); if(pMinecraft->level != NULL) { - m_setTime.SetValue( pMinecraft->level->getLevelData()->getTime() % 24000 ); +m_setTime.SetValue( pMinecraft->level->getLevelData()->getGameTime() % 24000 ); m_setFov.SetValue( (int)pMinecraft->gameRenderer->GetFovVal()); } return S_OK; diff --git a/Minecraft.Client/Common/XUI/XUI_Leaderboards.cpp b/Minecraft.Client/Common/XUI/XUI_Leaderboards.cpp index 428b3e88..30c0f1b0 100644 --- a/Minecraft.Client/Common/XUI/XUI_Leaderboards.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Leaderboards.cpp @@ -34,8 +34,8 @@ LPCWSTR CScene_Leaderboards::m_TextColumnNameA[7]= const int CScene_Leaderboards::TitleIcons[CScene_Leaderboards::NUM_LEADERBOARDS][7] = { { XZP_ICON_WALKED, XZP_ICON_FALLEN, Item::minecart_Id, Item::boat_Id, NULL }, - { Tile::dirt_Id, Tile::stoneBrick_Id, Tile::sand_Id, Tile::rock_Id, Tile::gravel_Id, Tile::clay_Id, Tile::obsidian_Id }, - { Item::egg_Id, Item::wheat_Id, Tile::mushroom1_Id, Tile::reeds_Id, Item::milk_Id, Tile::pumpkin_Id, NULL }, + { Tile::dirt_Id, Tile::stoneBrick_Id, Tile::sand_Id, Tile::stone_Id, Tile::gravel_Id, Tile::clay_Id, Tile::obsidian_Id }, + { Item::egg_Id, Item::wheat_Id, Tile::mushroom_brown_Id, Tile::reeds_Id, Item::bucket_milk_Id, Tile::pumpkin_Id, NULL }, { XZP_ICON_ZOMBIE, XZP_ICON_SKELETON, XZP_ICON_CREEPER, XZP_ICON_SPIDER, XZP_ICON_SPIDERJOCKEY, XZP_ICON_ZOMBIEPIGMAN, XZP_ICON_SLIME }, }; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.cpp index 10369d5e..15ec6f58 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.cpp @@ -308,15 +308,21 @@ void CXuiSceneAbstractContainer::GetItemScreenData( ESceneSection eSection, int shared_ptr CXuiSceneAbstractContainer::getSlotItem(ESceneSection eSection, int iSlot) { + CXuiCtrlSlotList *slotList = GetSectionSlotList( eSection ); + if(slotList == NULL) return NULL; CXuiCtrlSlotItemListItem* pCXuiCtrlSlotItem; - GetSectionSlotList( eSection )->GetCXuiCtrlSlotItem( iSlot, &( pCXuiCtrlSlotItem ) ); + slotList->GetCXuiCtrlSlotItem( iSlot, &( pCXuiCtrlSlotItem ) ); + if(pCXuiCtrlSlotItem == NULL) return NULL; return pCXuiCtrlSlotItem->getItemInstance( pCXuiCtrlSlotItem->m_hObj ); } bool CXuiSceneAbstractContainer::isSlotEmpty(ESceneSection eSection, int iSlot) { + CXuiCtrlSlotList *slotList = GetSectionSlotList( eSection ); + if(slotList == NULL) return true; CXuiCtrlSlotItemListItem* pCXuiCtrlSlotItem; - GetSectionSlotList( eSection )->GetCXuiCtrlSlotItem( iSlot, &( pCXuiCtrlSlotItem ) ); + slotList->GetCXuiCtrlSlotItem( iSlot, &( pCXuiCtrlSlotItem ) ); + if(pCXuiCtrlSlotItem == NULL) return true; return pCXuiCtrlSlotItem->isEmpty( pCXuiCtrlSlotItem->m_hObj ); } @@ -438,6 +444,37 @@ void CXuiSceneAbstractContainer::SetPointerText(const wstring &description, vect XuiElementSetShow(m_hPointerText,TRUE); } +void CXuiSceneAbstractContainer::SetPointerText(vector *description, bool newSlot) +{ + if(description == NULL || description->empty()) + { + m_pointerControl->SetText(L""); + XuiElementSetShow(m_hPointerText,FALSE); + XuiElementSetShow(m_hPointerTextBkg,FALSE); + return; + } + + wstring combinedText; + for(size_t i = 0; i < description->size(); ++i) + { + combinedText += (*description)[i].text; + if(i + 1 < description->size()) combinedText += L"\n"; + } + + vector unformattedStrings; + for(size_t i = 0; i < description->size(); ++i) + { + unformattedStrings.push_back((*description)[i].text); + } + + SetPointerText(combinedText, unformattedStrings, newSlot); +} + +Slot *CXuiSceneAbstractContainer::getSlot(ESceneSection eSection, int iSlot) +{ + return NULL; +} + void CXuiSceneAbstractContainer::adjustPointerForSafeZone() { D3DXVECTOR2 baseSceneOrigin; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.h b/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.h index ca191db5..12056327 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.h +++ b/Minecraft.Client/Common/XUI/XUI_Scene_AbstractContainer.h @@ -77,6 +77,8 @@ public: void setSectionSelectedSlot(ESceneSection eSection, int x, int y); void setFocusToPointer(int iPad); void SetPointerText(const wstring &description, vector &unformattedStrings, bool newSlot); + virtual void SetPointerText(vector *description, bool newSlot); + virtual Slot *getSlot(ESceneSection eSection, int iSlot); virtual shared_ptr getSlotItem(ESceneSection eSection, int iSlot); virtual bool isSlotEmpty(ESceneSection eSection, int iSlot); virtual void adjustPointerForSafeZone(); diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Anvil.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Anvil.cpp index 4a8617b4..152386a6 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Anvil.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Anvil.cpp @@ -1,6 +1,7 @@ #include "stdafx.h" #include "..\..\..\Minecraft.World\net.minecraft.world.inventory.h" +#include "..\..\..\Minecraft.World\AnvilMenu.h" #include "..\..\..\Minecraft.World\StringHelpers.h" #include "..\..\MultiPlayerLocalPlayer.h" #include "..\..\Common\Tutorial\Tutorial.h" @@ -47,14 +48,14 @@ HRESULT CXuiSceneAnvil::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Anvil_Menu, this); } - m_repairMenu = new RepairMenu( initData->inventory, initData->level, initData->x, initData->y, initData->z, pMinecraft->localplayers[m_iPad] ); + m_repairMenu = new AnvilMenu( initData->inventory, initData->level, initData->x, initData->y, initData->z, pMinecraft->localplayers[m_iPad] ); m_repairMenu->addSlotListener(this); InitDataAssociations(m_iPad, m_repairMenu); delete initData; - CXuiSceneAbstractContainer::Initialize( m_iPad, m_repairMenu, true, RepairMenu::INV_SLOT_START, eSectionAnvilUsing, eSectionAnvilMax ); + CXuiSceneAbstractContainer::Initialize( m_iPad, m_repairMenu, true, AnvilMenu::INV_SLOT_START, eSectionAnvilUsing, eSectionAnvilMax ); //ProfileManager.SetRichPresenceContextValue(m_iPad,CONTEXT_GAME_STATE,CONTEXT_GAME_STATE_FORGING); @@ -191,16 +192,16 @@ CXuiCtrlSlotList* CXuiSceneAnvil::GetSectionSlotList( ESceneSection eSection ) void CXuiSceneAnvil::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex /*= 0*/) { // TODO Inventory dimensions need defined as constants - m_resultControl->SetData( iPad, menu, 1, 1, RepairMenu::RESULT_SLOT ); + m_resultControl->SetData( iPad, menu, 1, 1, AnvilMenu::RESULT_SLOT ); - m_ingredient1Control->SetData( iPad, menu, 1, 1, RepairMenu::INPUT_SLOT ); - m_ingredient2Control->SetData( iPad, menu, 1, 1, RepairMenu::ADDITIONAL_SLOT); + m_ingredient1Control->SetData( iPad, menu, 1, 1, AnvilMenu::INPUT_SLOT ); + m_ingredient2Control->SetData( iPad, menu, 1, 1, AnvilMenu::ADDITIONAL_SLOT); //m_litProgressControl->SetUserData( initData->furnace.get() ); //m_burnProgress->SetUserData( initData->furnace.get() ); - CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, RepairMenu::INV_SLOT_START); + CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, AnvilMenu::INV_SLOT_START); } void CXuiSceneAnvil::handleEditNamePressed() diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Base.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Base.cpp index 03782c79..891e51b5 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Base.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Base.cpp @@ -367,7 +367,7 @@ void CXuiSceneBase::_TickAllBaseScenes() } m_pBossHealthProgress[i].SetRange(0, boss->getMaxHealth() ); - m_pBossHealthProgress[i].SetValue( boss->getSynchedHealth() ); + m_pBossHealthProgress[i].SetValue( boss->getHealth() ); m_bossHealthVisible[i] = TRUE; _UpdateSelectedItemPos(i); @@ -864,7 +864,7 @@ HRESULT CXuiSceneBase::_ShowBackground( unsigned int iPad, BOOL bShow ) // are we in the Nether? - Leave the time as 0 if we are, so we show daylight if(pMinecraft->level->dimension->id==0) { - i64TimeOfDay = pMinecraft->level->getLevelData()->getTime() % 24000; + i64TimeOfDay = pMinecraft->level->getLevelData()->getGameTime() % 24000; } if(i64TimeOfDay>14000) @@ -1915,7 +1915,7 @@ HRESULT CXuiSceneBase::ShowSafeArea( BOOL bShow ) return S_OK; } -HRESULT CXuiSceneBase::SetTooltips( unsigned int iPad, int iA, int iB, int iX, int iY , int iLT, int iRT, int iRB, int iLB, int iLS, bool forceUpdate /*= false*/ ) +HRESULT CXuiSceneBase::SetTooltips( unsigned int iPad, int iA, int iB, int iX, int iY , int iLT, int iRT, int iRB, int iLB, int iLS, int iRS, int iBack, bool forceUpdate /*= false*/ ) { if( CXuiSceneBase::Instance != NULL ) { diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Base.h b/Minecraft.Client/Common/XUI/XUI_Scene_Base.h index 1a5b5d87..dd406718 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Base.h +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Base.h @@ -389,7 +389,7 @@ public: static HRESULT SetTooltipText( unsigned int iPad, unsigned int tooltip, int iTextID ); static HRESULT SetEnableTooltips( unsigned int iPad, BOOL bVal ); static HRESULT ShowTooltip( unsigned int iPad, unsigned int tooltip, bool show ); - static HRESULT SetTooltips( unsigned int iPad, int iA, int iB=-1, int iX=-1, int iY=-1 , int iLT=-1, int iRT=-1, int iLB=-1, int iRB=-1, int iLS=-1, bool forceUpdate = false); + static HRESULT SetTooltips( unsigned int iPad, int iA, int iB=-1, int iX=-1, int iY=-1 , int iLT=-1, int iRT=-1, int iLB=-1, int iRB=-1, int iLS=-1, int iRS=-1, int iBack=-1, bool forceUpdate = false); static HRESULT RefreshTooltips( unsigned int iPad); static HRESULT EnableTooltip( unsigned int iPad, unsigned int tooltip, bool enable ); static HRESULT SetTooltipsEnabled( unsigned int iPad, bool bA = true, bool bB = true, bool bX = true, bool bY = true, bool bLT = true, bool bRT = true, bool bLB = true, bool bRB=true, bool bLS=true); diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.cpp new file mode 100644 index 00000000..a3e17050 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.cpp @@ -0,0 +1,309 @@ +#include "stdafx.h" + +#include "..\..\..\Minecraft.World\Container.h" +#include "..\..\..\Minecraft.World\BeaconMenu.h" +#include "..\..\..\Minecraft.World\net.minecraft.world.level.tile.entity.h" +#include "..\..\..\Minecraft.World\net.minecraft.world.effect.h" +#include "..\..\..\Minecraft.World\HtmlString.h" +#include "..\..\MultiplayerLocalPlayer.h" +#include "XUI_Ctrl_SlotList.h" +#include "XUI_Scene_Beacon.h" +#include "XUI_Ctrl_SlotItemListItem.h" +#include "XUI_Ctrl_SlotItem.h" +#include "..\..\Common\Tutorial\Tutorial.h" +#include "..\..\Common\Tutorial\TutorialMode.h" +#include "..\..\Common\Tutorial\TutorialEnum.h" + +#define BEACON_TICK_TIMER_ID 12 + +HRESULT CXuiSceneBeacon::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + D3DXVECTOR3 vec; + MapChildControls(); + + Minecraft *pMinecraft = Minecraft::GetInstance(); + + BeaconScreenInput* initData = (BeaconScreenInput*)pInitData->pvInitData; + + m_beacon = initData->beacon; + + BeaconMenu* menu = new BeaconMenu( initData->inventory, initData->beacon ); + + m_iPad=initData->iPad; + m_bSplitscreen=initData->bSplitscreen; + +#ifdef _XBOX + if( pMinecraft->localgameModes[initData->iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[initData->iPad]; + m_previousTutorialState = gameMode->getTutorial()->getCurrentState(); + gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Container_Menu, this); + } +#endif + + if(m_bSplitscreen) + { + app.AdjustSplitscreenScene(m_hObj,&m_OriginalPosition,m_iPad); + } + + InitDataAssociations(initData->iPad, menu); + + CXuiSceneAbstractContainer::Initialize( initData->iPad, menu, true, BeaconMenu::INV_SLOT_START, (ESceneSection)0, eSectionBeaconMax ); + + m_bIgnoreKeyPresses = false; + + m_initPowerButtons = true; + + XuiSetTimer( m_hObj, BEACON_TICK_TIMER_ID, 50 ); + + handleTick(); + + delete initData; + + return S_OK; +} + +HRESULT CXuiSceneBeacon::OnDestroy() +{ + Minecraft *pMinecraft = Minecraft::GetInstance(); + +#ifdef _XBOX + if( pMinecraft->localgameModes[m_iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[m_iPad]; + if(gameMode != NULL) gameMode->getTutorial()->changeTutorialState(m_previousTutorialState); + } +#endif + + if(Minecraft::GetInstance()->localplayers[m_iPad] != NULL) Minecraft::GetInstance()->localplayers[m_iPad]->closeContainer(); + return S_OK; +} + +CXuiControl* CXuiSceneBeacon::GetSectionControl( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionBeaconItem: + return (CXuiControl *)m_paymentControl; + break; + case eSectionBeaconInventory: + return (CXuiControl *)m_inventoryControl; + break; + case eSectionBeaconUsing: + return (CXuiControl *)m_useRowControl; + break; + case eSectionBeaconPrimaryTierOneOne: + return (CXuiControl *)m_primaryTierOneOne; + break; + case eSectionBeaconPrimaryTierOneTwo: + return (CXuiControl *)m_primaryTierOneTwo; + break; + case eSectionBeaconPrimaryTierTwoOne: + return (CXuiControl *)m_primaryTierTwoOne; + break; + case eSectionBeaconPrimaryTierTwoTwo: + return (CXuiControl *)m_primaryTierTwoTwo; + break; + case eSectionBeaconPrimaryTierThree: + return (CXuiControl *)m_primaryTierThree; + break; + case eSectionBeaconSecondaryOne: + return (CXuiControl *)m_secondaryOne; + break; + case eSectionBeaconSecondaryTwo: + return (CXuiControl *)m_secondaryTwo; + break; + case eSectionBeaconConfirm: + return (CXuiControl *)m_confirmButton; + break; + default: + break; + } + return NULL; +} + +CXuiCtrlSlotList* CXuiSceneBeacon::GetSectionSlotList( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionBeaconItem: + return m_paymentControl; + break; + case eSectionBeaconInventory: + return m_inventoryControl; + break; + case eSectionBeaconUsing: + return m_useRowControl; + break; + default: + break; + } + return NULL; +} + +void CXuiSceneBeacon::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex) +{ + m_paymentControl->SetData( iPad, menu, 1, 1, BeaconMenu::PAYMENT_SLOT ); + + int invRows = (BeaconMenu::INV_SLOT_END - BeaconMenu::INV_SLOT_START) / 9; + m_inventoryControl->SetData( iPad, menu, invRows, 9, BeaconMenu::INV_SLOT_START ); + + m_useRowControl->SetData( iPad, menu, 1, 9, BeaconMenu::USE_ROW_SLOT_START ); + + CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, BeaconMenu::INV_SLOT_START); +} + +void CXuiSceneBeacon::SetConfirmButtonEnabled(bool enabled) +{ + if(m_confirmButton != NULL) + m_confirmButton->SetButtonActive(enabled); +} + +void CXuiSceneBeacon::AddPowerButton(int id, int icon, int tier, int count, bool active, bool selected) +{ + switch(tier) + { + case 0: + if(count == 0) + { + if(m_primaryTierOneOne != NULL) m_primaryTierOneOne->SetData(id, icon, active, selected); + } + else + { + if(m_primaryTierOneTwo != NULL) m_primaryTierOneTwo->SetData(id, icon, active, selected); + } + break; + case 1: + if(count == 0) + { + if(m_primaryTierTwoOne != NULL) m_primaryTierTwoOne->SetData(id, icon, active, selected); + } + else + { + if(m_primaryTierTwoTwo != NULL) m_primaryTierTwoTwo->SetData(id, icon, active, selected); + } + break; + case 2: + if(m_primaryTierThree != NULL) m_primaryTierThree->SetData(id, icon, active, selected); + break; + case 3: + if(count == 0) + { + if(m_secondaryOne != NULL) m_secondaryOne->SetData(id, icon, active, selected); + } + else + { + if(m_secondaryTwo != NULL) m_secondaryTwo->SetData(id, icon, active, selected); + } + break; + }; +} + +int CXuiSceneBeacon::GetPowerButtonId(ESceneSection eSection) +{ + switch(eSection) + { + case eSectionBeaconPrimaryTierOneOne: + return m_primaryTierOneOne != NULL ? m_primaryTierOneOne->GetData() : 0; + case eSectionBeaconPrimaryTierOneTwo: + return m_primaryTierOneTwo != NULL ? m_primaryTierOneTwo->GetData() : 0; + case eSectionBeaconPrimaryTierTwoOne: + return m_primaryTierTwoOne != NULL ? m_primaryTierTwoOne->GetData() : 0; + case eSectionBeaconPrimaryTierTwoTwo: + return m_primaryTierTwoTwo != NULL ? m_primaryTierTwoTwo->GetData() : 0; + case eSectionBeaconPrimaryTierThree: + return m_primaryTierThree != NULL ? m_primaryTierThree->GetData() : 0; + case eSectionBeaconSecondaryOne: + return m_secondaryOne != NULL ? m_secondaryOne->GetData() : 0; + case eSectionBeaconSecondaryTwo: + return m_secondaryTwo != NULL ? m_secondaryTwo->GetData() : 0; + }; + return 0; +} + +bool CXuiSceneBeacon::IsPowerButtonSelected(ESceneSection eSection) +{ + switch(eSection) + { + case eSectionBeaconPrimaryTierOneOne: + return m_primaryTierOneOne != NULL ? m_primaryTierOneOne->IsButtonSelected() : false; + case eSectionBeaconPrimaryTierOneTwo: + return m_primaryTierOneTwo != NULL ? m_primaryTierOneTwo->IsButtonSelected() : false; + case eSectionBeaconPrimaryTierTwoOne: + return m_primaryTierTwoOne != NULL ? m_primaryTierTwoOne->IsButtonSelected() : false; + case eSectionBeaconPrimaryTierTwoTwo: + return m_primaryTierTwoTwo != NULL ? m_primaryTierTwoTwo->IsButtonSelected() : false; + case eSectionBeaconPrimaryTierThree: + return m_primaryTierThree != NULL ? m_primaryTierThree->IsButtonSelected() : false; + case eSectionBeaconSecondaryOne: + return m_secondaryOne != NULL ? m_secondaryOne->IsButtonSelected() : false; + case eSectionBeaconSecondaryTwo: + return m_secondaryTwo != NULL ? m_secondaryTwo->IsButtonSelected() : false; + }; + return false; +} + +void CXuiSceneBeacon::SetPowerButtonSelected(ESceneSection eSection) +{ + switch(eSection) + { + case eSectionBeaconPrimaryTierOneOne: + case eSectionBeaconPrimaryTierOneTwo: + case eSectionBeaconPrimaryTierTwoOne: + case eSectionBeaconPrimaryTierTwoTwo: + case eSectionBeaconPrimaryTierThree: + if(m_primaryTierOneOne != NULL) m_primaryTierOneOne->SetButtonSelected(false); + if(m_primaryTierOneTwo != NULL) m_primaryTierOneTwo->SetButtonSelected(false); + if(m_primaryTierTwoOne != NULL) m_primaryTierTwoOne->SetButtonSelected(false); + if(m_primaryTierTwoTwo != NULL) m_primaryTierTwoTwo->SetButtonSelected(false); + if(m_primaryTierThree != NULL) m_primaryTierThree->SetButtonSelected(false); + break; + case eSectionBeaconSecondaryOne: + case eSectionBeaconSecondaryTwo: + if(m_secondaryOne != NULL) m_secondaryOne->SetButtonSelected(false); + if(m_secondaryTwo != NULL) m_secondaryTwo->SetButtonSelected(false); + break; + }; + + switch(eSection) + { + case eSectionBeaconPrimaryTierOneOne: + if(m_primaryTierOneOne != NULL) m_primaryTierOneOne->SetButtonSelected(true); + break; + case eSectionBeaconPrimaryTierOneTwo: + if(m_primaryTierOneTwo != NULL) m_primaryTierOneTwo->SetButtonSelected(true); + break; + case eSectionBeaconPrimaryTierTwoOne: + if(m_primaryTierTwoOne != NULL) m_primaryTierTwoOne->SetButtonSelected(true); + break; + case eSectionBeaconPrimaryTierTwoTwo: + if(m_primaryTierTwoTwo != NULL) m_primaryTierTwoTwo->SetButtonSelected(true); + break; + case eSectionBeaconPrimaryTierThree: + if(m_primaryTierThree != NULL) m_primaryTierThree->SetButtonSelected(true); + break; + case eSectionBeaconSecondaryOne: + if(m_secondaryOne != NULL) m_secondaryOne->SetButtonSelected(true); + break; + case eSectionBeaconSecondaryTwo: + if(m_secondaryTwo != NULL) m_secondaryTwo->SetButtonSelected(true); + break; + }; +} + +HRESULT CXuiSceneBeacon::handleCustomTimer( XUIMessageTimer *pTimer, BOOL& bHandled ) +{ + if( pTimer->nId == BEACON_TICK_TIMER_ID ) + { + handleTick(); + bHandled = TRUE; + return S_OK; + } + + return CXuiSceneAbstractContainer::handleCustomTimer( pTimer, bHandled ); +} + +void CXuiSceneBeacon::handleTick() +{ + IUIScene_BeaconMenu::handleTick(); +} diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.h b/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.h new file mode 100644 index 00000000..647598fc --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Beacon.h @@ -0,0 +1,72 @@ +#pragma once +#include "..\Media\xuiscene_beacon.h" +#include "XUI_Scene_AbstractContainer.h" +#include "XUI_Ctrl_BeaconButton.h" +#include "XUI_CustomMessages.h" +#include "..\UI\IUIScene_BeaconMenu.h" + +class CXuiSceneBeacon : public CXuiSceneAbstractContainer, public IUIScene_BeaconMenu +{ +public: + XUI_IMPLEMENT_CLASS( CXuiSceneBeacon, L"CXuiSceneBeacon", XUI_CLASS_SCENE ) + +protected: + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_ON_XM_KEYDOWN( OnKeyDown ) + XUI_ON_XM_DESTROY( OnDestroy ) + XUI_ON_XM_TIMER( OnTimer ) + XUI_ON_XM_SPLITSCREENPLAYER_MESSAGE(OnCustomMessage_Splitscreenplayer) + XUI_ON_XM_TRANSITION_START(OnTransitionStart) + XUI_END_MSG_MAP() + + BEGIN_CONTROL_MAP() + MAP_CONTROL(IDC_Group, m_sceneGroup) + BEGIN_MAP_CHILD_CONTROLS( m_sceneGroup ) + MAP_OVERRIDE(IDC_Inventory, m_inventoryControl) + MAP_OVERRIDE(IDC_UseRow, m_useRowControl) + MAP_OVERRIDE(IDC_Pointer, m_pointerControl) + MAP_OVERRIDE(IDC_Payment, m_paymentControl) + MAP_CONTROL(IDC_PrimaryText, m_PrimaryText) + MAP_CONTROL(IDC_SecondaryText, m_SecondaryText) + MAP_OVERRIDE(IDC_PrimaryTierOneOne, m_primaryTierOneOne) + MAP_OVERRIDE(IDC_PrimaryTierOneTwo, m_primaryTierOneTwo) + MAP_OVERRIDE(IDC_PrimaryTierTwoOne, m_primaryTierTwoOne) + MAP_OVERRIDE(IDC_PrimaryTierTwoTwo, m_primaryTierTwoTwo) + MAP_OVERRIDE(IDC_PrimaryTierThree, m_primaryTierThree) + MAP_OVERRIDE(IDC_SecondaryOne, m_secondaryOne) + MAP_OVERRIDE(IDC_SecondaryTwo, m_secondaryTwo) + MAP_OVERRIDE(IDC_Confirm, m_confirmButton) + END_MAP_CHILD_CONTROLS() + END_CONTROL_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); + HRESULT OnDestroy(); + virtual void InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex = 0); + + virtual void SetConfirmButtonEnabled(bool enabled); + virtual void AddPowerButton(int id, int icon, int tier, int count, bool active, bool selected); + virtual int GetPowerButtonId(ESceneSection eSection); + virtual bool IsPowerButtonSelected(ESceneSection eSection); + virtual void SetPowerButtonSelected(ESceneSection eSection); + + virtual void handleTick(); + virtual HRESULT handleCustomTimer( XUIMessageTimer *pTimer, BOOL& bHandled ); + +private: + CXuiCtrlSlotList* m_paymentControl; + CXuiCtrlBeaconButton* m_primaryTierOneOne; + CXuiCtrlBeaconButton* m_primaryTierOneTwo; + CXuiCtrlBeaconButton* m_primaryTierTwoOne; + CXuiCtrlBeaconButton* m_primaryTierTwoTwo; + CXuiCtrlBeaconButton* m_primaryTierThree; + CXuiCtrlBeaconButton* m_secondaryOne; + CXuiCtrlBeaconButton* m_secondaryTwo; + CXuiCtrlBeaconButton* m_confirmButton; + CXuiControl m_sceneGroup; + CXuiControl m_PrimaryText; + CXuiControl m_SecondaryText; + + virtual CXuiControl* GetSectionControl( ESceneSection eSection ); + virtual CXuiCtrlSlotList* GetSectionSlotList( ESceneSection eSection ); +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Container.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Container.cpp index 39b836d2..67f8dbdf 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Container.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Container.cpp @@ -31,7 +31,7 @@ HRESULT CXuiSceneContainer::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) ContainerScreenInput* initData = (ContainerScreenInput*)pInitData->pvInitData; - XuiControlSetText(m_ChestText,app.GetString(initData->container->getName())); + XuiControlSetText(m_ChestText,initData->container->getName().c_str()); ContainerMenu* menu = new ContainerMenu( initData->inventory, initData->container ); diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.cpp new file mode 100644 index 00000000..95890cf8 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.cpp @@ -0,0 +1,129 @@ +#include "stdafx.h" + +#include "..\..\..\Minecraft.World\Container.h" +#include "..\..\..\Minecraft.World\FireworksMenu.h" +#include "..\..\MultiplayerLocalPlayer.h" +#include "..\..\LocalPlayer.h" +#include "..\..\Minecraft.h" +#include "XUI_Ctrl_SlotList.h" +#include "XUI_Scene_Fireworks.h" +#include "XUI_Ctrl_SlotItemListItem.h" +#include "XUI_Ctrl_SlotItem.h" +#include "..\..\Common\Tutorial\Tutorial.h" +#include "..\..\Common\Tutorial\TutorialMode.h" +#include "..\..\Common\Tutorial\TutorialEnum.h" + +HRESULT CXuiSceneFireworks::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + D3DXVECTOR3 vec; + MapChildControls(); + + Minecraft *pMinecraft = Minecraft::GetInstance(); + + FireworksScreenInput* initData = (FireworksScreenInput*)pInitData->pvInitData; + + FireworksMenu* menu = new FireworksMenu( initData->player->inventory, initData->player->level, initData->x, initData->y, initData->z ); + + m_iPad=initData->iPad; + m_bSplitscreen=initData->bSplitscreen; + +#ifdef _XBOX + if( pMinecraft->localgameModes[initData->iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[initData->iPad]; + m_previousTutorialState = gameMode->getTutorial()->getCurrentState(); + gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Container_Menu, this); + } +#endif + + if(m_bSplitscreen) + { + app.AdjustSplitscreenScene(m_hObj,&m_OriginalPosition,m_iPad); + } + + InitDataAssociations(initData->iPad, menu); + + CXuiSceneAbstractContainer::Initialize( initData->iPad, menu, true, FireworksMenu::INV_SLOT_START, (ESceneSection)0, eSectionFireworksMax ); + + m_bIgnoreKeyPresses = false; + + delete initData; + + return S_OK; +} + +HRESULT CXuiSceneFireworks::OnDestroy() +{ + Minecraft *pMinecraft = Minecraft::GetInstance(); + +#ifdef _XBOX + if( pMinecraft->localgameModes[m_iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[m_iPad]; + if(gameMode != NULL) gameMode->getTutorial()->changeTutorialState(m_previousTutorialState); + } +#endif + + if(Minecraft::GetInstance()->localplayers[m_iPad] != NULL) Minecraft::GetInstance()->localplayers[m_iPad]->closeContainer(); + return S_OK; +} + +CXuiControl* CXuiSceneFireworks::GetSectionControl( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionFireworksResult: + return (CXuiControl *)m_resultControl; + break; + case eSectionFireworksIngredients: + return (CXuiControl *)m_ingredientsControl; + break; + case eSectionFireworksInventory: + return (CXuiControl *)m_inventoryControl; + break; + case eSectionFireworksUsing: + return (CXuiControl *)m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +CXuiCtrlSlotList* CXuiSceneFireworks::GetSectionSlotList( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionFireworksResult: + return m_resultControl; + break; + case eSectionFireworksIngredients: + return m_ingredientsControl; + break; + case eSectionFireworksInventory: + return m_inventoryControl; + break; + case eSectionFireworksUsing: + return m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +void CXuiSceneFireworks::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex) +{ + m_resultControl->SetData( iPad, menu, 1, 1, FireworksMenu::RESULT_SLOT ); + + m_ingredientsControl->SetData( iPad, menu, 3, 3, FireworksMenu::CRAFT_SLOT_START ); + + int invRows = (FireworksMenu::INV_SLOT_END - FireworksMenu::INV_SLOT_START) / 9; + m_inventoryControl->SetData( iPad, menu, invRows, 9, FireworksMenu::INV_SLOT_START ); + + m_useRowControl->SetData( iPad, menu, 1, 9, FireworksMenu::USE_ROW_SLOT_START ); + + CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, FireworksMenu::INV_SLOT_START); +} diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.h b/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.h new file mode 100644 index 00000000..ab32066b --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Fireworks.h @@ -0,0 +1,45 @@ +#pragma once +#include "..\Media\xuiscene_fireworks.h" +#include "XUI_Scene_AbstractContainer.h" +#include "XUI_CustomMessages.h" +#include "..\UI\IUIScene_FireworksMenu.h" + +class CXuiSceneFireworks : public CXuiSceneAbstractContainer, public IUIScene_FireworksMenu +{ +public: + XUI_IMPLEMENT_CLASS( CXuiSceneFireworks, L"CXuiSceneFireworks", XUI_CLASS_SCENE ) + +protected: + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_ON_XM_KEYDOWN( OnKeyDown ) + XUI_ON_XM_DESTROY( OnDestroy ) + XUI_ON_XM_TIMER( OnTimer ) + XUI_ON_XM_SPLITSCREENPLAYER_MESSAGE(OnCustomMessage_Splitscreenplayer) + XUI_ON_XM_TRANSITION_START(OnTransitionStart) + XUI_END_MSG_MAP() + + BEGIN_CONTROL_MAP() + MAP_CONTROL(IDC_Group, m_sceneGroup) + BEGIN_MAP_CHILD_CONTROLS( m_sceneGroup ) + MAP_OVERRIDE(IDC_Inventory, m_inventoryControl) + MAP_OVERRIDE(IDC_UseRow, m_useRowControl) + MAP_OVERRIDE(IDC_Pointer, m_pointerControl) + MAP_CONTROL(IDC_InventoryText, m_InventoryText) + MAP_OVERRIDE(IDC_Result, m_resultControl) + MAP_OVERRIDE(IDC_Ingredients, m_ingredientsControl) + END_MAP_CHILD_CONTROLS() + END_CONTROL_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); + HRESULT OnDestroy(); + virtual void InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex = 0); + +private: + CXuiCtrlSlotList* m_resultControl; + CXuiCtrlSlotList* m_ingredientsControl; + CXuiControl m_sceneGroup; + + virtual CXuiControl* GetSectionControl( ESceneSection eSection ); + virtual CXuiCtrlSlotList* GetSectionSlotList( ESceneSection eSection ); +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.cpp new file mode 100644 index 00000000..5af172e9 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.cpp @@ -0,0 +1,141 @@ +#include "stdafx.h" + +#include "..\..\..\Minecraft.World\Container.h" +#include "..\..\..\Minecraft.World\HopperMenu.h" +#include "..\..\MultiplayerLocalPlayer.h" +#include "XUI_Ctrl_SlotList.h" +#include "XUI_Scene_Hopper.h" +#include "XUI_Ctrl_SlotItemListItem.h" +#include "XUI_Ctrl_SlotItem.h" +#include "..\..\Common\Tutorial\Tutorial.h" +#include "..\..\Common\Tutorial\TutorialMode.h" +#include "..\..\Common\Tutorial\TutorialEnum.h" + +#define HOPPER_DEFAULT_ROWS 1 + +HRESULT CXuiSceneHopper::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + D3DXVECTOR3 vec; + MapChildControls(); + + Minecraft *pMinecraft = Minecraft::GetInstance(); + + HopperScreenInput* initData = (HopperScreenInput*)pInitData->pvInitData; + + HopperMenu* menu = new HopperMenu( initData->inventory, initData->hopper ); + + shared_ptr hopper = initData->hopper; + m_iPad=initData->iPad; + m_bSplitscreen=initData->bSplitscreen; + +#ifdef _XBOX + if( pMinecraft->localgameModes[initData->iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[initData->iPad]; + m_previousTutorialState = gameMode->getTutorial()->getCurrentState(); + gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Container_Menu, this); + } +#endif + + if(m_bSplitscreen) + { + app.AdjustSplitscreenScene(m_hObj,&m_OriginalPosition,m_iPad); + } + + float fPointerWidth,fPointerHeight; + m_pointerControl->GetBounds(&fPointerWidth, &fPointerHeight); + + float height, width; + this->GetBounds( &width, &height ); + int rowDiff = HOPPER_DEFAULT_ROWS - (hopper->getContainerSize() / 5); + height = height - (rowDiff * fPointerHeight); + this->SetBounds( width, height ); + + D3DXVECTOR3 vPos; + this->GetPosition( &vPos ); + vPos.y = vPos.y + ( (rowDiff * fPointerHeight) / 2 ); + if(!RenderManager.IsHiDef()) + { + int iY = (int)(vPos.y); + iY &= 0xfffffffe; + vPos.y = (float)iY; + } + this->SetPosition( &vPos ); + + InitDataAssociations(initData->iPad, menu); + + CXuiSceneAbstractContainer::Initialize( initData->iPad, menu, true, hopper->getContainerSize(), (ESceneSection)0, eSectionHopperMax ); + + m_bIgnoreKeyPresses = false; + + delete initData; + + return S_OK; +} + +HRESULT CXuiSceneHopper::OnDestroy() +{ + Minecraft *pMinecraft = Minecraft::GetInstance(); + +#ifdef _XBOX + if( pMinecraft->localgameModes[m_iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[m_iPad]; + if(gameMode != NULL) gameMode->getTutorial()->changeTutorialState(m_previousTutorialState); + } +#endif + + if(Minecraft::GetInstance()->localplayers[m_iPad] != NULL) Minecraft::GetInstance()->localplayers[m_iPad]->closeContainer(); + return S_OK; +} + +CXuiControl* CXuiSceneHopper::GetSectionControl( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionHopperContents: + return (CXuiControl *)m_hopperControl; + break; + case eSectionHopperInventory: + return (CXuiControl *)m_inventoryControl; + break; + case eSectionHopperUsing: + return (CXuiControl *)m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +CXuiCtrlSlotList* CXuiSceneHopper::GetSectionSlotList( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionHopperContents: + return m_hopperControl; + break; + case eSectionHopperInventory: + return m_inventoryControl; + break; + case eSectionHopperUsing: + return m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +void CXuiSceneHopper::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex) +{ + int containerSize = menu->getSize() - 36; + if (containerSize <= 0) containerSize = 5; + int rows = (containerSize + 4) / 5; + + m_hopperControl->SetData( iPad, menu, rows, 5, 0 ); + + CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, containerSize); +} diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.h b/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.h new file mode 100644 index 00000000..c8e8af9a --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Hopper.h @@ -0,0 +1,45 @@ +#pragma once +#include "..\Media\xuiscene_hopper.h" +#include "XUI_Scene_AbstractContainer.h" +#include "XUI_CustomMessages.h" +#include "..\UI\IUIScene_HopperMenu.h" + +class CXuiSceneHopper : public CXuiSceneAbstractContainer, public IUIScene_HopperMenu +{ +public: + XUI_IMPLEMENT_CLASS( CXuiSceneHopper, L"CXuiSceneHopper", XUI_CLASS_SCENE ) + +protected: + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_ON_XM_KEYDOWN( OnKeyDown ) + XUI_ON_XM_DESTROY( OnDestroy ) + XUI_ON_XM_TIMER( OnTimer ) + XUI_ON_XM_SPLITSCREENPLAYER_MESSAGE(OnCustomMessage_Splitscreenplayer) + XUI_ON_XM_TRANSITION_START(OnTransitionStart) + XUI_END_MSG_MAP() + + BEGIN_CONTROL_MAP() + MAP_CONTROL(IDC_Group, m_sceneGroup) + BEGIN_MAP_CHILD_CONTROLS( m_sceneGroup ) + MAP_OVERRIDE(IDC_Inventory, m_inventoryControl) + MAP_OVERRIDE(IDC_UseRow, m_useRowControl) + MAP_OVERRIDE(IDC_Pointer, m_pointerControl) + MAP_CONTROL(IDC_InventoryText, m_InventoryText) + MAP_OVERRIDE(IDC_Hopper, m_hopperControl) + MAP_CONTROL(IDC_HopperText, m_HopperText) + END_MAP_CHILD_CONTROLS() + END_CONTROL_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); + HRESULT OnDestroy(); + virtual void InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex = 0); + +private: + CXuiCtrlSlotList* m_hopperControl; + CXuiControl m_sceneGroup; + CXuiControl m_HopperText; + + virtual CXuiControl* GetSectionControl( ESceneSection eSection ); + virtual CXuiCtrlSlotList* GetSectionSlotList( ESceneSection eSection ); +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.cpp new file mode 100644 index 00000000..8fbe75a9 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.cpp @@ -0,0 +1,147 @@ +#include "stdafx.h" + +#include "..\..\..\Minecraft.World\Container.h" +#include "..\..\..\Minecraft.World\HorseInventoryMenu.h" +#include "..\..\..\Minecraft.World\net.minecraft.world.entity.animal.h" +#include "..\..\MultiplayerLocalPlayer.h" +#include "XUI_Ctrl_SlotList.h" +#include "XUI_Scene_HorseInventory.h" +#include "XUI_Ctrl_SlotItemListItem.h" +#include "XUI_Ctrl_SlotItem.h" +#include "..\..\Common\Tutorial\Tutorial.h" +#include "..\..\Common\Tutorial\TutorialMode.h" +#include "..\..\Common\Tutorial\TutorialEnum.h" + +HRESULT CXuiSceneHorseInventory::OnInit( XUIMessageInit* pInitData, BOOL& bHandled ) +{ + D3DXVECTOR3 vec; + MapChildControls(); + + Minecraft *pMinecraft = Minecraft::GetInstance(); + + HorseScreenInput* initData = (HorseScreenInput*)pInitData->pvInitData; + + m_horse = initData->horse; + m_container = initData->container; + m_inventory = initData->inventory; + + HorseInventoryMenu* menu = new HorseInventoryMenu( initData->inventory, initData->container, initData->horse ); + + m_iPad=initData->iPad; + m_bSplitscreen=initData->bSplitscreen; + +#ifdef _XBOX + if( pMinecraft->localgameModes[initData->iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[initData->iPad]; + m_previousTutorialState = gameMode->getTutorial()->getCurrentState(); + gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Container_Menu, this); + } +#endif + + if(m_bSplitscreen) + { + app.AdjustSplitscreenScene(m_hObj,&m_OriginalPosition,m_iPad); + } + + InitDataAssociations(initData->iPad, menu); + + CXuiSceneAbstractContainer::Initialize( initData->iPad, menu, true, EntityHorse::INV_BASE_COUNT, (ESceneSection)0, eSectionHorseMax ); + + m_bIgnoreKeyPresses = false; + + delete initData; + + return S_OK; +} + +HRESULT CXuiSceneHorseInventory::OnDestroy() +{ + Minecraft *pMinecraft = Minecraft::GetInstance(); + +#ifdef _XBOX + if( pMinecraft->localgameModes[m_iPad] != NULL ) + { + TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[m_iPad]; + if(gameMode != NULL) gameMode->getTutorial()->changeTutorialState(m_previousTutorialState); + } +#endif + + if(Minecraft::GetInstance()->localplayers[m_iPad] != NULL) Minecraft::GetInstance()->localplayers[m_iPad]->closeContainer(); + return S_OK; +} + +CXuiControl* CXuiSceneHorseInventory::GetSectionControl( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionHorseChest: + return (CXuiControl *)m_chestControl; + break; + case eSectionHorseSaddle: + return (CXuiControl *)m_saddleControl; + break; + case eSectionHorseArmor: + return (CXuiControl *)m_armorControl; + break; + case eSectionHorseInventory: + return (CXuiControl *)m_inventoryControl; + break; + case eSectionHorseUsing: + return (CXuiControl *)m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +CXuiCtrlSlotList* CXuiSceneHorseInventory::GetSectionSlotList( ESceneSection eSection ) +{ + switch( eSection ) + { + case eSectionHorseChest: + return m_chestControl; + break; + case eSectionHorseSaddle: + return m_saddleControl; + break; + case eSectionHorseArmor: + return m_armorControl; + break; + case eSectionHorseInventory: + return m_inventoryControl; + break; + case eSectionHorseUsing: + return m_useRowControl; + break; + default: + assert( false ); + break; + } + return NULL; +} + +void CXuiSceneHorseInventory::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex) +{ + m_saddleControl->SetData( iPad, menu, 1, 1, EntityHorse::INV_SLOT_SADDLE ); + + m_armorControl->SetData( iPad, menu, 1, 1, EntityHorse::INV_SLOT_ARMOR ); + + int chestCount = 0; + if(m_horse != NULL && m_horse->isChestedHorse()) + { + chestCount = EntityHorse::INV_DONKEY_CHEST_COUNT; + } + m_chestControl->SetData( iPad, menu, chestCount / 9, 9, EntityHorse::INV_BASE_COUNT ); + + int invStart = EntityHorse::INV_BASE_COUNT + chestCount; + int invRows = 3; + m_inventoryControl->SetData( iPad, menu, invRows, 9, invStart ); + + int useRowStart = invStart + (invRows * 9); + m_useRowControl->SetData( iPad, menu, 1, 9, useRowStart ); + + CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, EntityHorse::INV_BASE_COUNT + chestCount); +} diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.h b/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.h new file mode 100644 index 00000000..ea6032d0 --- /dev/null +++ b/Minecraft.Client/Common/XUI/XUI_Scene_HorseInventory.h @@ -0,0 +1,50 @@ +#pragma once +#include "..\Media\xuiscene_horse.h" +#include "XUI_Scene_AbstractContainer.h" +#include "XUI_Ctrl_MinecraftHorse.h" +#include "XUI_CustomMessages.h" +#include "..\UI\IUIScene_HorseInventoryMenu.h" + +class CXuiSceneHorseInventory : public CXuiSceneAbstractContainer, public IUIScene_HorseInventoryMenu +{ +public: + XUI_IMPLEMENT_CLASS( CXuiSceneHorseInventory, L"CXuiSceneHorseInventory", XUI_CLASS_SCENE ) + +protected: + XUI_BEGIN_MSG_MAP() + XUI_ON_XM_INIT( OnInit ) + XUI_ON_XM_KEYDOWN( OnKeyDown ) + XUI_ON_XM_DESTROY( OnDestroy ) + XUI_ON_XM_TIMER( OnTimer ) + XUI_ON_XM_SPLITSCREENPLAYER_MESSAGE(OnCustomMessage_Splitscreenplayer) + XUI_ON_XM_TRANSITION_START(OnTransitionStart) + XUI_END_MSG_MAP() + + BEGIN_CONTROL_MAP() + MAP_CONTROL(IDC_Group, m_sceneGroup) + BEGIN_MAP_CHILD_CONTROLS( m_sceneGroup ) + MAP_OVERRIDE(IDC_Inventory, m_inventoryControl) + MAP_OVERRIDE(IDC_UseRow, m_useRowControl) + MAP_OVERRIDE(IDC_Pointer, m_pointerControl) + MAP_CONTROL(IDC_InventoryText, m_InventoryText) + MAP_OVERRIDE(IDC_Chest, m_chestControl) + MAP_OVERRIDE(IDC_Saddle, m_saddleControl) + MAP_OVERRIDE(IDC_Armor, m_armorControl) + MAP_CONTROL(IDC_HorseText, m_HorseText) + END_MAP_CHILD_CONTROLS() + END_CONTROL_MAP() + + HRESULT OnInit( XUIMessageInit* pInitData, BOOL& bHandled ); + HRESULT OnDestroy(); + virtual void InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex = 0); + +private: + CXuiCtrlSlotList* m_chestControl; + CXuiCtrlSlotList* m_saddleControl; + CXuiCtrlSlotList* m_armorControl; + CXuiControl m_sceneGroup; + CXuiControl m_HorseText; + + virtual CXuiControl* GetSectionControl( ESceneSection eSection ); + virtual CXuiCtrlSlotList* GetSectionSlotList( ESceneSection eSection ); +}; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Inventory_Creative.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Inventory_Creative.cpp index 0793fc9e..8b07d241 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Inventory_Creative.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Inventory_Creative.cpp @@ -60,7 +60,7 @@ HRESULT CXuiSceneInventoryCreative::OnInit( XUIMessageInit *pInitData, BOOL &bHa initData->player->awardStat(GenericStats::openInventory(), GenericStats::param_noArgs()); // 4J JEV - Item Picker Menu - shared_ptr creativeContainer = shared_ptr(new SimpleContainer( 0, TabSpec::MAX_SIZE + 9 )); + shared_ptr creativeContainer = shared_ptr(new SimpleContainer( 0, L"", false, TabSpec::MAX_SIZE + 9 )); itemPickerMenu = new ItemPickerMenu(creativeContainer, initData->player->inventory); // 4J JEV - InitDataAssociations. @@ -140,12 +140,20 @@ CXuiControl* CXuiSceneInventoryCreative::GetSectionControl( ESceneSection eSecti { case eSectionInventoryCreativeUsing: return (CXuiControl *)m_useRowControl; - break; case eSectionInventoryCreativeSelector: return (CXuiControl *)m_containerControl; - break; + case eSectionInventoryCreativeTab_0: + case eSectionInventoryCreativeTab_1: + case eSectionInventoryCreativeTab_2: + case eSectionInventoryCreativeTab_3: + case eSectionInventoryCreativeTab_4: + case eSectionInventoryCreativeTab_5: + case eSectionInventoryCreativeTab_6: + case eSectionInventoryCreativeTab_7: + return &m_hTabGroupA[eSection - eSectionInventoryCreativeTab_0]; + case eSectionInventoryCreativeSlider: + return (CXuiControl *)&m_pageSlider; default: - assert( false ); break; } return NULL; diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Trading.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Trading.cpp index fec13460..0bbd4bdc 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Trading.cpp +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Trading.cpp @@ -2,6 +2,7 @@ #include "..\..\..\Minecraft.World\net.minecraft.world.inventory.h" #include "..\..\..\Minecraft.World\net.minecraft.world.item.trading.h" +#include "..\..\..\Minecraft.World\HtmlString.h" #include "..\..\MultiPlayerLocalPlayer.h" #include "..\..\Common\Tutorial\Tutorial.h" #include "..\..\Common\Tutorial\TutorialMode.h" @@ -317,4 +318,25 @@ void CXuiSceneTrading::setOfferDescription(const wstring &name, vector offerInfoPos.x = Math::round(highlightPos.x - backgroundWidth - highlightWidth * 0.1); } m_offerInfoControl.SetPosition(&offerInfoPos); +} + +void CXuiSceneTrading::setOfferDescription(vector *description) +{ + if(description == NULL || description->empty()) + { + m_offerInfoControl.SetText(L""); + m_offerInfoControl.SetShow(FALSE); + return; + } + + wstring combinedText; + vector unformattedStrings; + for(size_t i = 0; i < description->size(); ++i) + { + combinedText += (*description)[i].text; + unformattedStrings.push_back((*description)[i].text); + if(i + 1 < description->size()) combinedText += L"\n"; + } + + setOfferDescription(combinedText, unformattedStrings); } \ No newline at end of file diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Trading.h b/Minecraft.Client/Common/XUI/XUI_Scene_Trading.h index 72194cbc..6ca0c9ba 100644 --- a/Minecraft.Client/Common/XUI/XUI_Scene_Trading.h +++ b/Minecraft.Client/Common/XUI/XUI_Scene_Trading.h @@ -125,4 +125,5 @@ protected: virtual void setTradeItem(int index, shared_ptr item); virtual void setOfferDescription(const wstring &name, vector &unformattedStrings); + virtual void setOfferDescription(vector *description); }; \ No newline at end of file diff --git a/Minecraft.Client/Common/XUI/XUI_TutorialPopup.cpp b/Minecraft.Client/Common/XUI/XUI_TutorialPopup.cpp index 98951d81..b7ebc17e 100644 --- a/Minecraft.Client/Common/XUI/XUI_TutorialPopup.cpp +++ b/Minecraft.Client/Common/XUI/XUI_TutorialPopup.cpp @@ -402,7 +402,7 @@ wstring CScene_TutorialPopup::_SetIcon(int icon, int iAuxVal, bool isFoil, LPCWS } else if(temp.find(L"{*StoneIcon*}")!=wstring::npos) { - m_pCraftingPic->SetIcon(m_iPad, Tile::rock_Id,0,1,10,31,false); + m_pCraftingPic->SetIcon(m_iPad, Tile::stone_Id,0,1,10,31,false); } else { diff --git a/Minecraft.Client/EnderDragonRenderer.cpp b/Minecraft.Client/EnderDragonRenderer.cpp index 05187b72..1d9a3ff0 100644 --- a/Minecraft.Client/EnderDragonRenderer.cpp +++ b/Minecraft.Client/EnderDragonRenderer.cpp @@ -10,6 +10,7 @@ ResourceLocation EnderDragonRenderer::DRAGON_EXPLODING_LOCATION = ResourceLocati ResourceLocation EnderDragonRenderer::CRYSTAL_BEAM_LOCATION = ResourceLocation(TN_MOB_ENDERDRAGON_BEAM); ResourceLocation EnderDragonRenderer::DRAGON_EYES_LOCATION = ResourceLocation(TN_MOB_ENDERDRAGON_ENDEREYES); ResourceLocation EnderDragonRenderer::DRAGON_LOCATION = ResourceLocation(TN_MOB_ENDERDRAGON); +shared_ptr EnderDragonRenderer::bossInstance = nullptr; EnderDragonRenderer::EnderDragonRenderer() : MobRenderer(new DragonModel(0), 0.5f) { diff --git a/Minecraft.Client/EnderDragonRenderer.h b/Minecraft.Client/EnderDragonRenderer.h index 9969b5cf..30a52da2 100644 --- a/Minecraft.Client/EnderDragonRenderer.h +++ b/Minecraft.Client/EnderDragonRenderer.h @@ -6,8 +6,12 @@ class EnderDragon; #endif class DragonModel; +class EnderDragon; class EnderDragonRenderer : public MobRenderer { +public: + static shared_ptr bossInstance; + private: static ResourceLocation DRAGON_EXPLODING_LOCATION; static ResourceLocation CRYSTAL_BEAM_LOCATION; diff --git a/Minecraft.Client/Minecraft.Client.vcxproj b/Minecraft.Client/Minecraft.Client.vcxproj index d97166bf..0c9d6e90 100644 --- a/Minecraft.Client/Minecraft.Client.vcxproj +++ b/Minecraft.Client/Minecraft.Client.vcxproj @@ -988,8 +988,7 @@ false $(OutDir)$(ProjectName).pch MultiThreaded - _DEBUG_MENUS_ENABLED;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;%(PreprocessorDefinitions);PROFILE - Disabled + _ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;%(PreprocessorDefinitions) $(ProjectDir);%(AdditionalIncludeDirectories) true true @@ -1004,7 +1003,7 @@ true $(OutDir)$(ProjectName).pdb - xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xbox\4JLibs\libs\4J_XTMS_r.lib;%(AdditionalDependencies) + xavatar2.lib;xapilib.lib;d3d9.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xbox\4JLibs\libs\4J_XTMS_r.lib;%(AdditionalDependencies) xapilib.lib true false @@ -1042,8 +1041,7 @@ false $(OutDir)$(ProjectName).pch MultiThreaded - _DEBUG_MENUS_ENABLED;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;%(PreprocessorDefinitions);PROFILE - Disabled + _DEBUG_MENUS_ENABLED;_ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;%(PreprocessorDefinitions) $(ProjectDir);%(AdditionalIncludeDirectories) true true @@ -1058,7 +1056,7 @@ true $(OutDir)$(ProjectName).pdb - xavatar2.lib;xapilibi.lib;d3d9i.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xtms.lib;%(AdditionalDependencies) + xavatar2.lib;xapilib.lib;d3d9.lib;d3dx9.lib;xgraphics.lib;xboxkrnl.lib;xnet.lib;xaudio2.lib;xact3.lib;x3daudio.lib;xmcore.lib;vcomp.lib;xuirun.lib;xuirender.lib;xuihtml.lib;xonline.lib;xhv2.lib;qnetxaudio2.lib;xparty.lib;xbox\4JLibs\libs\4J_Input_r.lib;xbox\4JLibs\libs\4J_Storage_r.lib;xbox\4JLibs\libs\4J_Profile_r.lib;xbox\4JLibs\libs\4J_Render.lib;..\Minecraft.World\Release\Minecraft.World.lib;xsocialpost.lib;xrnm.lib;xbox\Sentient\libs\SenCore.lib;xbox\Sentient\libs\SenNews.lib;xbox\Sentient\libs\SenUGC.lib;xbox\Sentient\libs\SenBoxArt.lib;NuiApi.lib;ST.lib;NuiFitnessApi.lib;NuiHandles.lib;NuiSpeech.lib;NuiAudio.lib;xhttp.lib;xauth.lib;xgetserviceendpoint.lib;xav.lib;xjson.lib;xtms.lib;%(AdditionalDependencies) xapilib.lib true false diff --git a/Minecraft.Client/Xbox/Xbox_App.cpp b/Minecraft.Client/Xbox/Xbox_App.cpp index df256ce3..4ee2e9ac 100644 --- a/Minecraft.Client/Xbox/Xbox_App.cpp +++ b/Minecraft.Client/Xbox/Xbox_App.cpp @@ -30,6 +30,10 @@ #include "..\Common\XUI\XUI_Scene_Furnace.h" #include "..\Common\XUI\XUI_Scene_Inventory.h" #include "..\Common\XUI\XUI_Scene_Trap.h" +#include "..\Common\XUI\XUI_Scene_Beacon.h" +#include "..\Common\XUI\XUI_Scene_Hopper.h" +#include "..\Common\XUI\XUI_Scene_HorseInventory.h" +#include "..\Common\XUI\XUI_Scene_Fireworks.h" #include "..\Common\XUI\XUI_Control_ComboBox.h" #include "..\Common\XUI\XUI_MultiGameInfo.h" #include "..\Common\XUI\XUI_MultiGameJoinLoad.h" @@ -140,6 +144,10 @@ #include "..\Common\XUI\XUI_Scene_Furnace.h" #include "..\Common\XUI\XUI_Scene_Inventory.h" #include "..\Common\XUI\XUI_Scene_Trap.h" +#include "..\Common\XUI\XUI_Scene_Beacon.h" +#include "..\Common\XUI\XUI_Scene_Hopper.h" +#include "..\Common\XUI\XUI_Scene_HorseInventory.h" +#include "..\Common\XUI\XUI_Scene_Fireworks.h" #include "..\Common\XUI\XUI_Control_ComboBox.h" #include "..\Common\XUI\XUI_MultiGameInfo.h" #include "..\Common\XUI\XUI_MultiGameJoinLoad.h" @@ -265,6 +273,10 @@ WCHAR *CConsoleMinecraftApp::wchSceneA[]= L"xuiscene_trading", L"xuiscene_anvil", L"xuiscene_teleportmenu", + L"xuiscene_hopper", + L"xuiscene_beacon", + L"xuiscene_horse", + L"xuiscene_fireworks", // L"xuiscene_TransferToXboxOne", #ifdef _DEBUG_MENUS_ENABLED @@ -521,6 +533,14 @@ HRESULT CConsoleMinecraftApp::RegisterXuiClasses() if( FAILED( hr) ) return hr; hr = CXuiSceneAnvil::Register(); if( FAILED( hr) ) return hr; + hr = CXuiSceneBeacon::Register(); + if( FAILED( hr) ) return hr; + hr = CXuiSceneHopper::Register(); + if( FAILED( hr) ) return hr; + hr = CXuiSceneHorseInventory::Register(); + if( FAILED( hr) ) return hr; + hr = CXuiSceneFireworks::Register(); + if( FAILED( hr) ) return hr; hr = CXuiSceneTrading::Register(); if( FAILED( hr) ) return hr; hr = CScene_Teleport::Register(); @@ -563,6 +583,10 @@ HRESULT CConsoleMinecraftApp::UnregisterXuiClasses() CXuiSceneTrading::Unregister(); CXuiSceneAnvil::Unregister(); // CScene_TransferToXboxOne::Unregister(); + CXuiSceneBeacon::Unregister(); + CXuiSceneHopper::Unregister(); + CXuiSceneHorseInventory::Unregister(); + CXuiSceneFireworks::Unregister(); CXuiSceneHud::Unregister(); CScene_Win::Unregister(); CXuiCtrlMobEffect::Unregister(); @@ -3024,7 +3048,8 @@ void CConsoleMinecraftApp::GetFileFromTPD(eTPDFileType eType,PBYTE pbData,DWORD LPCWSTR CConsoleMinecraftApp::GetString(int iID) { - return StringTable.Lookup(iID); + LPCWSTR result = StringTable.Lookup(iID); + return result ? result : L""; } CXuiStringTable *CConsoleMinecraftApp::GetStringTable() diff --git a/Minecraft.Client/Xbox/Xbox_UIController.cpp b/Minecraft.Client/Xbox/Xbox_UIController.cpp index a530df76..5d1d5753 100644 --- a/Minecraft.Client/Xbox/Xbox_UIController.cpp +++ b/Minecraft.Client/Xbox/Xbox_UIController.cpp @@ -116,9 +116,9 @@ void ConsoleUIController::ShowTooltip( unsigned int iPad, unsigned int tooltip, CXuiSceneBase::ShowTooltip(iPad,tooltip,show); } -void ConsoleUIController::SetTooltips( unsigned int iPad, int iA, int iB, int iX, int iY, int iLT, int iRT, int iLB, int iRB, int iLS, bool forceUpdate) +void ConsoleUIController::SetTooltips( unsigned int iPad, int iA, int iB, int iX, int iY, int iLT, int iRT, int iLB, int iRB, int iLS, int iRS, int iBack, bool forceUpdate) { - CXuiSceneBase::SetTooltips(iPad,iA,iB,iX,iY,iLT,iRT,iLB,iRB,iLS,forceUpdate); + CXuiSceneBase::SetTooltips(iPad,iA,iB,iX,iY,iLT,iRT,iLB,iRB,iLS,iRS,iBack,forceUpdate); } void ConsoleUIController::EnableTooltip( unsigned int iPad, unsigned int tooltip, bool enable ) @@ -319,6 +319,18 @@ C4JStorage::EMessageResult ConsoleUIController::RequestMessageBox(UINT uiTitle, return StorageManager.RequestMessageBox(uiTitle, uiText, uiOptionA, uiOptionC, dwPad, Func, lpParam, pStringTable, pwchFormatString, dwFocusButton); } +C4JStorage::EMessageResult ConsoleUIController::RequestErrorMessage(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad, + int( *Func)(LPVOID,int,const C4JStorage::EMessageResult),LPVOID lpParam, WCHAR *pwchFormatString) +{ + return StorageManager.RequestMessageBox(uiTitle, uiText, uiOptionA, uiOptionC, dwPad, Func, lpParam, NULL, pwchFormatString, 0); +} + +C4JStorage::EMessageResult ConsoleUIController::RequestAlertMessage(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad, + int( *Func)(LPVOID,int,const C4JStorage::EMessageResult),LPVOID lpParam, WCHAR *pwchFormatString) +{ + return StorageManager.RequestMessageBox(uiTitle, uiText, uiOptionA, uiOptionC, dwPad, Func, lpParam, NULL, pwchFormatString, 0); +} + C4JStorage::EMessageResult ConsoleUIController::RequestUGCMessageBox(UINT title/* = -1 */, UINT message/* = -1 */, int iPad/* = -1*/, int( *Func)(LPVOID,int,const C4JStorage::EMessageResult)/* = NULL*/, LPVOID lpParam/* = NULL*/) { // Default title / messages diff --git a/Minecraft.Client/Xbox/Xbox_UIController.h b/Minecraft.Client/Xbox/Xbox_UIController.h index 9fb28898..2b67b007 100644 --- a/Minecraft.Client/Xbox/Xbox_UIController.h +++ b/Minecraft.Client/Xbox/Xbox_UIController.h @@ -30,7 +30,7 @@ public: virtual void SetTooltipText( unsigned int iPad, unsigned int tooltip, int iTextID ); virtual void SetEnableTooltips( unsigned int iPad, BOOL bVal ); virtual void ShowTooltip( unsigned int iPad, unsigned int tooltip, bool show ); - virtual void SetTooltips( unsigned int iPad, int iA, int iB=-1, int iX=-1, int iY=-1 , int iLT=-1, int iRT=-1, int iLB=-1, int iRB=-1, int iLS=-1, bool forceUpdate = false); + virtual void SetTooltips( unsigned int iPad, int iA, int iB=-1, int iX=-1, int iY=-1 , int iLT=-1, int iRT=-1, int iLB=-1, int iRB=-1, int iLS=-1, int iRS=-1, int iBack=-1, bool forceUpdate = false); virtual void EnableTooltip( unsigned int iPad, unsigned int tooltip, bool enable ); virtual void RefreshTooltips(unsigned int iPad); @@ -70,9 +70,13 @@ public: virtual void SetWinUserIndex(unsigned int iPad); - virtual C4JStorage::EMessageResult RequestMessageBox(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad=XUSER_INDEX_ANY, + virtual C4JStorage::EMessageResult RequestMessageBox(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad=XUSER_INDEX_ANY, int( *Func)(LPVOID,int,const C4JStorage::EMessageResult)=NULL,LPVOID lpParam=NULL, CXuiStringTable *pStringTable=NULL, WCHAR *pwchFormatString=NULL,DWORD dwFocusButton=0, bool bIsError = true); + virtual C4JStorage::EMessageResult RequestErrorMessage(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad=XUSER_INDEX_ANY, int( *Func)(LPVOID,int,const C4JStorage::EMessageResult)=NULL,LPVOID lpParam=NULL, WCHAR *pwchFormatString=NULL); + + virtual C4JStorage::EMessageResult RequestAlertMessage(UINT uiTitle, UINT uiText, UINT *uiOptionA,UINT uiOptionC, DWORD dwPad=XUSER_INDEX_ANY, int( *Func)(LPVOID,int,const C4JStorage::EMessageResult)=NULL,LPVOID lpParam=NULL, WCHAR *pwchFormatString=NULL); + C4JStorage::EMessageResult RequestUGCMessageBox(UINT title = -1, UINT message = -1, int iPad = -1, int( *Func)(LPVOID,int,const C4JStorage::EMessageResult) = NULL, LPVOID lpParam = NULL); }; diff --git a/Minecraft.Client/XboxMedia/XZP/Minecraft.xzp b/Minecraft.Client/XboxMedia/XZP/Minecraft.xzp index 886c92741c8791dcc591e1d76c6e4a7f23f48a70..1bcf2bdb9c3ef204dcc371e69bcb773e80adb139 100644 GIT binary patch delta 342455 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

K0M8fQClCn5TGc6*TA`YEoZ+ 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 E06Ux=-2eap diff --git a/Minecraft.Client/XboxMedia/strings.h b/Minecraft.Client/XboxMedia/strings.h index 7869d7cb..46d89ea3 100644 --- a/Minecraft.Client/XboxMedia/strings.h +++ b/Minecraft.Client/XboxMedia/strings.h @@ -1855,3 +1855,248 @@ #define IDS_YOU_DIED 1854 #define IDS_YOU_HAVE 1855 #define IDS_ZOMBIE 1856 +#define IDS_ATTRIBUTE_NAME_GENERIC_ATTACKDAMAGE 1857 +#define IDS_ATTRIBUTE_NAME_GENERIC_FOLLOWRANGE 1858 +#define IDS_ATTRIBUTE_NAME_GENERIC_KNOCKBACKRESISTANCE 1859 +#define IDS_ATTRIBUTE_NAME_GENERIC_MAXHEALTH 1860 +#define IDS_ATTRIBUTE_NAME_GENERIC_MOVEMENTSPEED 1861 +#define IDS_ATTRIBUTE_NAME_HORSE_JUMPSTRENGTH 1862 +#define IDS_ATTRIBUTE_NAME_ZOMBIE_SPAWNREINFORCEMENTS 1863 +#define IDS_BAT 1864 +#define IDS_CONTAINER_ANIMAL 1865 +#define IDS_CONTAINER_BEACON 1866 +#define IDS_CONTAINER_DROPPER 1867 +#define IDS_CONTAINER_HOPPER 1868 +#define IDS_CONTAINER_MINECART 1869 +#define IDS_DEATH_ARROW_ITEM 1870 +#define IDS_DEATH_CACTUS_PLAYER 1871 +#define IDS_DEATH_DROWN_PLAYER 1872 +#define IDS_DEATH_EXPLOSION_PLAYER 1873 +#define IDS_DEATH_FELL_ACCIDENT_GENERIC 1874 +#define IDS_DEATH_FELL_ACCIDENT_LADDER 1875 +#define IDS_DEATH_FELL_ACCIDENT_VINES 1876 +#define IDS_DEATH_FELL_ACCIDENT_WATER 1877 +#define IDS_DEATH_FELL_ASSIST 1878 +#define IDS_DEATH_FELL_ASSIST_ITEM 1879 +#define IDS_DEATH_FELL_FINISH 1880 +#define IDS_DEATH_FELL_FINISH_ITEM 1881 +#define IDS_DEATH_FIREBALL_ITEM 1882 +#define IDS_DEATH_INDIRECT_MAGIC_ITEM 1883 +#define IDS_DEATH_INFIRE_PLAYER 1884 +#define IDS_DEATH_LAVA_PLAYER 1885 +#define IDS_DEATH_ONFIRE_PLAYER 1886 +#define IDS_DEATH_PLAYER_ITEM 1887 +#define IDS_DEATH_THROWN_ITEM 1888 +#define IDS_DEATH_WITHER 1889 +#define IDS_DESC_ACTIVATOR_RAIL 1890 +#define IDS_DESC_BEACON 1891 +#define IDS_DESC_CHEST_TRAP 1892 +#define IDS_DESC_COAL_BLOCK 1893 +#define IDS_DESC_COMMAND_BLOCK 1894 +#define IDS_DESC_COMPARATOR 1895 +#define IDS_DESC_DAYLIGHT_DETECTOR 1896 +#define IDS_DESC_DIAMOND_HORSE_ARMOR 1897 +#define IDS_DESC_DROPPER 1898 +#define IDS_DESC_FIREWORKS 1899 +#define IDS_DESC_FIREWORKS_CHARGE 1900 +#define IDS_DESC_GOLD_HORSE_ARMOR 1901 +#define IDS_DESC_HARDENED_CLAY 1902 +#define IDS_DESC_HAY 1903 +#define IDS_DESC_HOPPER 1904 +#define IDS_DESC_IRON_HORSE_ARMOR 1905 +#define IDS_DESC_LEAD 1906 +#define IDS_DESC_MAP_EMPTY 1907 +#define IDS_DESC_MINECART_HOPPER 1908 +#define IDS_DESC_MINECART_TNT 1909 +#define IDS_DESC_NAME_TAG 1910 +#define IDS_DESC_NETHER_STAR 1911 +#define IDS_DESC_REDSTONE_BLOCK 1912 +#define IDS_DESC_STAINED_CLAY 1913 +#define IDS_DESC_STAINED_GLASS 1914 +#define IDS_DESC_STAINED_GLASS_PANE 1915 +#define IDS_DESC_WEIGHTED_PLATE_HEAVY 1916 +#define IDS_DESC_WEIGHTED_PLATE_LIGHT 1917 +#define IDS_DONKEY 1918 +#define IDS_FIREWORKS 1919 +#define IDS_FIREWORKS_CHARGE 1920 +#define IDS_FIREWORKS_CHARGE_BLACK 1921 +#define IDS_FIREWORKS_CHARGE_BLUE 1922 +#define IDS_FIREWORKS_CHARGE_BROWN 1923 +#define IDS_FIREWORKS_CHARGE_CUSTOM 1924 +#define IDS_FIREWORKS_CHARGE_CYAN 1925 +#define IDS_FIREWORKS_CHARGE_FADE_TO 1926 +#define IDS_FIREWORKS_CHARGE_FLICKER 1927 +#define IDS_FIREWORKS_CHARGE_GRAY 1928 +#define IDS_FIREWORKS_CHARGE_GREEN 1929 +#define IDS_FIREWORKS_CHARGE_LIGHT_BLUE 1930 +#define IDS_FIREWORKS_CHARGE_LIME 1931 +#define IDS_FIREWORKS_CHARGE_MAGENTA 1932 +#define IDS_FIREWORKS_CHARGE_ORANGE 1933 +#define IDS_FIREWORKS_CHARGE_PINK 1934 +#define IDS_FIREWORKS_CHARGE_PURPLE 1935 +#define IDS_FIREWORKS_CHARGE_RED 1936 +#define IDS_FIREWORKS_CHARGE_SILVER 1937 +#define IDS_FIREWORKS_CHARGE_TRAIL 1938 +#define IDS_FIREWORKS_CHARGE_TYPE 1939 +#define IDS_FIREWORKS_CHARGE_TYPE_0 1940 +#define IDS_FIREWORKS_CHARGE_TYPE_1 1941 +#define IDS_FIREWORKS_CHARGE_TYPE_2 1942 +#define IDS_FIREWORKS_CHARGE_TYPE_3 1943 +#define IDS_FIREWORKS_CHARGE_TYPE_4 1944 +#define IDS_FIREWORKS_CHARGE_WHITE 1945 +#define IDS_FIREWORKS_CHARGE_YELLOW 1946 +#define IDS_HORSE 1947 +#define IDS_ITEM_COMPARATOR 1948 +#define IDS_ITEM_DIAMOND_HORSE_ARMOR 1949 +#define IDS_ITEM_FIREWORKS_FLIGHT 1950 +#define IDS_ITEM_GOLD_HORSE_ARMOR 1951 +#define IDS_ITEM_IRON_HORSE_ARMOR 1952 +#define IDS_ITEM_LEAD 1953 +#define IDS_ITEM_MAP_EMPTY 1954 +#define IDS_ITEM_MINECART_HOPPER 1955 +#define IDS_ITEM_MINECART_TNT 1956 +#define IDS_ITEM_NAME_TAG 1957 +#define IDS_MAX_BATS_SPAWNED 1958 +#define IDS_MULE 1959 +#define IDS_NETHER_STAR 1960 +#define IDS_POTION_ABSORPTION 1961 +#define IDS_POTION_ABSORPTION_POSTFIX 1962 +#define IDS_POTION_EFFECTS_WHENDRANK 1963 +#define IDS_POTION_HEALTHBOOST 1964 +#define IDS_POTION_HEALTHBOOST_POSTFIX 1965 +#define IDS_POTION_SATURATION 1966 +#define IDS_POTION_SATURATION_POSTFIX 1967 +#define IDS_POTION_WITHER 1968 +#define IDS_POTION_WITHER_POSTFIX 1969 +#define IDS_SKELETON_HORSE 1970 +#define IDS_TILE_ACTIVATOR_RAIL 1971 +#define IDS_TILE_BEACON 1972 +#define IDS_TILE_CHEST_TRAP 1973 +#define IDS_TILE_COAL 1974 +#define IDS_TILE_COMMAND_BLOCK 1975 +#define IDS_TILE_COMPARATOR 1976 +#define IDS_TILE_DAYLIGHT_DETECTOR 1977 +#define IDS_TILE_DROPPER 1978 +#define IDS_TILE_HARDENED_CLAY 1979 +#define IDS_TILE_HAY 1980 +#define IDS_TILE_HOPPER 1981 +#define IDS_TILE_PLANKS 1982 +#define IDS_TILE_REDSTONE_BLOCK 1983 +#define IDS_TILE_STAINED_CLAY 1984 +#define IDS_TILE_STAINED_CLAY_BLACK 1985 +#define IDS_TILE_STAINED_CLAY_BLUE 1986 +#define IDS_TILE_STAINED_CLAY_BROWN 1987 +#define IDS_TILE_STAINED_CLAY_CYAN 1988 +#define IDS_TILE_STAINED_CLAY_GRAY 1989 +#define IDS_TILE_STAINED_CLAY_GREEN 1990 +#define IDS_TILE_STAINED_CLAY_LIGHT_BLUE 1991 +#define IDS_TILE_STAINED_CLAY_LIME 1992 +#define IDS_TILE_STAINED_CLAY_MAGENTA 1993 +#define IDS_TILE_STAINED_CLAY_ORANGE 1994 +#define IDS_TILE_STAINED_CLAY_PINK 1995 +#define IDS_TILE_STAINED_CLAY_PURPLE 1996 +#define IDS_TILE_STAINED_CLAY_RED 1997 +#define IDS_TILE_STAINED_CLAY_SILVER 1998 +#define IDS_TILE_STAINED_CLAY_WHITE 1999 +#define IDS_TILE_STAINED_CLAY_YELLOW 2000 +#define IDS_TILE_STAINED_GLASS 2001 +#define IDS_TILE_STAINED_GLASS_BLACK 2002 +#define IDS_TILE_STAINED_GLASS_BLUE 2003 +#define IDS_TILE_STAINED_GLASS_BROWN 2004 +#define IDS_TILE_STAINED_GLASS_CYAN 2005 +#define IDS_TILE_STAINED_GLASS_GRAY 2006 +#define IDS_TILE_STAINED_GLASS_GREEN 2007 +#define IDS_TILE_STAINED_GLASS_LIGHT_BLUE 2008 +#define IDS_TILE_STAINED_GLASS_LIME 2009 +#define IDS_TILE_STAINED_GLASS_MAGENTA 2010 +#define IDS_TILE_STAINED_GLASS_ORANGE 2011 +#define IDS_TILE_STAINED_GLASS_PANE 2012 +#define IDS_TILE_STAINED_GLASS_PANE_BLACK 2013 +#define IDS_TILE_STAINED_GLASS_PANE_BLUE 2014 +#define IDS_TILE_STAINED_GLASS_PANE_BROWN 2015 +#define IDS_TILE_STAINED_GLASS_PANE_CYAN 2016 +#define IDS_TILE_STAINED_GLASS_PANE_GRAY 2017 +#define IDS_TILE_STAINED_GLASS_PANE_GREEN 2018 +#define IDS_TILE_STAINED_GLASS_PANE_LIGHT_BLUE 2019 +#define IDS_TILE_STAINED_GLASS_PANE_LIME 2020 +#define IDS_TILE_STAINED_GLASS_PANE_MAGENTA 2021 +#define IDS_TILE_STAINED_GLASS_PANE_ORANGE 2022 +#define IDS_TILE_STAINED_GLASS_PANE_PINK 2023 +#define IDS_TILE_STAINED_GLASS_PANE_PURPLE 2024 +#define IDS_TILE_STAINED_GLASS_PANE_RED 2025 +#define IDS_TILE_STAINED_GLASS_PANE_SILVER 2026 +#define IDS_TILE_STAINED_GLASS_PANE_WHITE 2027 +#define IDS_TILE_STAINED_GLASS_PANE_YELLOW 2028 +#define IDS_TILE_STAINED_GLASS_PINK 2029 +#define IDS_TILE_STAINED_GLASS_PURPLE 2030 +#define IDS_TILE_STAINED_GLASS_RED 2031 +#define IDS_TILE_STAINED_GLASS_SILVER 2032 +#define IDS_TILE_STAINED_GLASS_WHITE 2033 +#define IDS_TILE_STAINED_GLASS_YELLOW 2034 +#define IDS_TILE_WEIGHTED_PLATE_HEAVY 2035 +#define IDS_TILE_WEIGHTED_PLATE_LIGHT 2036 +#define IDS_TOOLTIPS_ATTACH 2037 +#define IDS_TOOLTIPS_DISMOUNT 2038 +#define IDS_TOOLTIPS_FIREWORK_LAUNCH 2039 +#define IDS_TOOLTIPS_LEASH 2040 +#define IDS_TOOLTIPS_MOUNT 2041 +#define IDS_TOOLTIPS_NAME 2042 +#define IDS_TOOLTIPS_UNLEASH 2043 +#define IDS_WITCH 2044 +#define IDS_WITHER 2045 +#define IDS_ZOMBIE_HORSE 2046 +#define IDS_DESC_BAT 2047 +#define IDS_DESC_HORSE 2048 +#define IDS_DESC_WITCH 2049 +#define IDS_DESC_WITHER 2050 +#define IDS_TUTORIAL_PROMPT_BEACON_MENU_OVERVIEW 2051 +#define IDS_TUTORIAL_PROMPT_BEACON_OVERVIEW 2052 +#define IDS_TUTORIAL_PROMPT_FIREWORK_MENU_OVERVIEW 2053 +#define IDS_TUTORIAL_PROMPT_FIREWORK_OVERVIEW 2054 +#define IDS_TUTORIAL_PROMPT_HOPPER_OVERVIEW 2055 +#define IDS_TUTORIAL_PROMPT_HORSE_MENU_OVERVIEW 2056 +#define IDS_TUTORIAL_PROMPT_HORSE_OVERVIEW 2057 +#define IDS_TUTORIAL_TASK_BEACON_CHOOSING_POWERS 2058 +#define IDS_TUTORIAL_TASK_BEACON_DESIGN 2059 +#define IDS_TUTORIAL_TASK_BEACON_MENU_ACTIVATION 2060 +#define IDS_TUTORIAL_TASK_BEACON_MENU_OVERVIEW 2061 +#define IDS_TUTORIAL_TASK_BEACON_MENU_PRIMARY_POWERS 2062 +#define IDS_TUTORIAL_TASK_BEACON_MENU_SECONDARY_POWER 2063 +#define IDS_TUTORIAL_TASK_BEACON_OVERVIEW 2064 +#define IDS_TUTORIAL_TASK_BEACON_PURPOSE 2065 +#define IDS_TUTORIAL_TASK_DONKEY_OVERVIEW 2066 +#define IDS_TUTORIAL_TASK_FIREWORK_CRAFTING 2067 +#define IDS_TUTORIAL_TASK_FIREWORK_CUSTOMISE 2068 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_COLOUR 2069 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_EFFECT 2070 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_FADE 2071 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_SHAPE 2072 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_ADV_START 2073 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_CRAFT 2074 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_HEIGHT 2075 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_STARS 2076 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_BASIC_START 2077 +#define IDS_TUTORIAL_TASK_FIREWORK_MENU_OVERVIEW 2078 +#define IDS_TUTORIAL_TASK_FIREWORK_OVERVIEW 2079 +#define IDS_TUTORIAL_TASK_FIREWORK_PURPOSE 2080 +#define IDS_TUTORIAL_TASK_HOPPER_AREA 2081 +#define IDS_TUTORIAL_TASK_HOPPER_CONTAINERS 2082 +#define IDS_TUTORIAL_TASK_HOPPER_MECHANICS 2083 +#define IDS_TUTORIAL_TASK_HOPPER_OUTPUT 2084 +#define IDS_TUTORIAL_TASK_HOPPER_OVERVIEW 2085 +#define IDS_TUTORIAL_TASK_HOPPER_PURPOSE 2086 +#define IDS_TUTORIAL_TASK_HOPPER_REDSTONE 2087 +#define IDS_TUTORIAL_TASK_HORSE_BREEDING 2088 +#define IDS_TUTORIAL_TASK_HORSE_INTRO 2089 +#define IDS_TUTORIAL_TASK_HORSE_MENU_EQUIPMENT 2090 +#define IDS_TUTORIAL_TASK_HORSE_MENU_LAYOUT 2091 +#define IDS_TUTORIAL_TASK_HORSE_MENU_OVERVIEW 2092 +#define IDS_TUTORIAL_TASK_HORSE_MENU_SADDLEBAGS 2093 +#define IDS_TUTORIAL_TASK_HORSE_OVERVIEW 2094 +#define IDS_TUTORIAL_TASK_HORSE_PURPOSE 2095 +#define IDS_TUTORIAL_TASK_HORSE_RIDE 2096 +#define IDS_TUTORIAL_TASK_HORSE_SADDLEBAGS 2097 +#define IDS_TUTORIAL_TASK_HORSE_SADDLES 2098 +#define IDS_TUTORIAL_TASK_HORSE_TAMING 2099 +#define IDS_TUTORIAL_TASK_HORSE_TAMING2 2100 +#define IDS_TUTORIAL_TASK_MULE_OVERVIEW 2101 diff --git a/Minecraft.World/Item.cpp b/Minecraft.World/Item.cpp index ad03efcc..f1c0ffe6 100644 --- a/Minecraft.World/Item.cpp +++ b/Minecraft.World/Item.cpp @@ -473,27 +473,106 @@ void Item::staticCtor() Item::potatoBaked = (new FoodItem(137, 6, FoodConstants::FOOD_SATURATION_NORMAL, false)) ->setIconName(L"potatoBaked")->setDescriptionId(IDS_ITEM_POTATO_BAKED)->setUseDescriptionId(IDS_DESC_POTATO_BAKED); Item::potatoPoisonous = (new FoodItem(138, 2, FoodConstants::FOOD_SATURATION_LOW, false)) ->setEatEffect(MobEffect::poison->id, 5, 0, .6f)->setIconName(L"potatoPoisonous")->setDescriptionId(IDS_ITEM_POTATO_POISONOUS)->setUseDescriptionId(IDS_DESC_POTATO_POISONOUS); - Item::emptyMap = (EmptyMapItem *) (new EmptyMapItem(139))->setIconName(L"map_empty")->setBaseItemTypeAndMaterial(eBaseItemType_pockettool, eMaterial_map)->setDescriptionId(IDS_ITEM_MAP_EMPTY)->setUseDescriptionId(IDS_DESC_MAP_EMPTY); + Item::emptyMap = (EmptyMapItem *) (new EmptyMapItem(139)); + Item::emptyMap->setIconName(L"map_empty"); + Item::emptyMap->setBaseItemTypeAndMaterial(eBaseItemType_pockettool, eMaterial_map); + Item::emptyMap->setDescriptionId(IDS_ITEM_MAP_EMPTY); + Item::emptyMap->setUseDescriptionId(IDS_DESC_MAP_EMPTY); - Item::carrotGolden = (new FoodItem(140, 6, FoodConstants::FOOD_SATURATION_SUPERNATURAL, false)) ->setBaseItemTypeAndMaterial(eBaseItemType_giltFruit, eMaterial_carrot)->setIconName(L"carrotGolden")->setPotionBrewingFormula(PotionBrewing::MOD_GOLDENCARROT)->setDescriptionId(IDS_ITEM_CARROT_GOLDEN)->setUseDescriptionId(IDS_DESC_CARROT_GOLDEN); + Item::carrotGolden = (new FoodItem(140, 6, FoodConstants::FOOD_SATURATION_SUPERNATURAL, false)); + Item::carrotGolden->setBaseItemTypeAndMaterial(eBaseItemType_giltFruit, eMaterial_carrot); + Item::carrotGolden->setIconName(L"carrotGolden"); + Item::carrotGolden->setPotionBrewingFormula(PotionBrewing::MOD_GOLDENCARROT); + Item::carrotGolden->setDescriptionId(IDS_ITEM_CARROT_GOLDEN); + Item::carrotGolden->setUseDescriptionId(IDS_DESC_CARROT_GOLDEN); - Item::carrotOnAStick = (new CarrotOnAStickItem(142)) ->setBaseItemTypeAndMaterial(eBaseItemType_rod, eMaterial_carrot)->setIconName(L"carrotOnAStick")->setDescriptionId(IDS_ITEM_CARROT_ON_A_STICK)->setUseDescriptionId(IDS_DESC_CARROT_ON_A_STICK); - Item::netherStar = (new SimpleFoiledItem(143)) ->setIconName(L"nether_star")->setDescriptionId(IDS_NETHER_STAR)->setUseDescriptionId(IDS_DESC_NETHER_STAR); - Item::pumpkinPie = (new FoodItem(144, 8, FoodConstants::FOOD_SATURATION_LOW, false)) ->setIconName(L"pumpkinPie")->setDescriptionId(IDS_ITEM_PUMPKIN_PIE)->setUseDescriptionId(IDS_DESC_PUMPKIN_PIE); - Item::fireworks = (new FireworksItem(145)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_fireworks, Item::eMaterial_undefined)->setIconName(L"fireworks")->setDescriptionId(IDS_FIREWORKS)->setUseDescriptionId(IDS_DESC_FIREWORKS); - Item::fireworksCharge = (new FireworksChargeItem(146)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_fireworks, Item::eMaterial_undefined)->setIconName(L"fireworks_charge")->setDescriptionId(IDS_FIREWORKS_CHARGE)->setUseDescriptionId(IDS_DESC_FIREWORKS_CHARGE); - EnchantedBookItem::enchantedBook = (EnchantedBookItem *)(new EnchantedBookItem(147)) ->setMaxStackSize(1)->setIconName(L"enchantedBook")->setDescriptionId(IDS_ITEM_ENCHANTED_BOOK)->setUseDescriptionId(IDS_DESC_ENCHANTED_BOOK); - Item::comparator = (new TilePlanterItem(148, Tile::comparator_off)) ->setIconName(L"comparator")->setDescriptionId(IDS_ITEM_COMPARATOR)->setUseDescriptionId(IDS_DESC_COMPARATOR); - Item::netherbrick = (new Item(149)) ->setIconName(L"netherbrick")->setDescriptionId(IDS_ITEM_NETHERBRICK)->setUseDescriptionId(IDS_DESC_ITEM_NETHERBRICK); - Item::netherQuartz = (new Item(150)) ->setIconName(L"netherquartz")->setDescriptionId(IDS_ITEM_NETHER_QUARTZ)->setUseDescriptionId(IDS_DESC_NETHER_QUARTZ); - Item::minecart_tnt = (new MinecartItem(151, Minecart::TYPE_TNT)) ->setIconName(L"minecart_tnt")->setDescriptionId(IDS_ITEM_MINECART_TNT)->setUseDescriptionId(IDS_DESC_MINECART_TNT); - Item::minecart_hopper = (new MinecartItem(152, Minecart::TYPE_HOPPER)) ->setIconName(L"minecart_hopper")->setDescriptionId(IDS_ITEM_MINECART_HOPPER)->setUseDescriptionId(IDS_DESC_MINECART_HOPPER); + Item::carrotOnAStick = (new CarrotOnAStickItem(142)); + Item::carrotOnAStick->setBaseItemTypeAndMaterial(eBaseItemType_rod, eMaterial_carrot); + Item::carrotOnAStick->setIconName(L"carrotOnAStick"); + Item::carrotOnAStick->setDescriptionId(IDS_ITEM_CARROT_ON_A_STICK); + Item::carrotOnAStick->setUseDescriptionId(IDS_DESC_CARROT_ON_A_STICK); - Item::horseArmorMetal = (new Item(161)) ->setIconName(L"iron_horse_armor")->setMaxStackSize(1)->setDescriptionId(IDS_ITEM_IRON_HORSE_ARMOR)->setUseDescriptionId(IDS_DESC_IRON_HORSE_ARMOR); - Item::horseArmorGold = (new Item(162)) ->setIconName(L"gold_horse_armor")->setMaxStackSize(1)->setDescriptionId(IDS_ITEM_GOLD_HORSE_ARMOR)->setUseDescriptionId(IDS_DESC_GOLD_HORSE_ARMOR); - Item::horseArmorDiamond = (new Item(163)) ->setIconName(L"diamond_horse_armor")->setMaxStackSize(1)->setDescriptionId(IDS_ITEM_DIAMOND_HORSE_ARMOR)->setUseDescriptionId(IDS_DESC_DIAMOND_HORSE_ARMOR); - Item::lead = (new LeashItem(164)) ->setBaseItemTypeAndMaterial(eBaseItemType_pockettool, eMaterial_undefined)->setIconName(L"lead")->setDescriptionId(IDS_ITEM_LEAD)->setUseDescriptionId(IDS_DESC_LEAD); - Item::nameTag = (new NameTagItem(165)) ->setIconName(L"name_tag")->setDescriptionId(IDS_ITEM_NAME_TAG)->setUseDescriptionId(IDS_DESC_NAME_TAG);} + Item::netherStar = (new SimpleFoiledItem(143)); + Item::netherStar->setIconName(L"nether_star"); + Item::netherStar->setDescriptionId(IDS_NETHER_STAR); + Item::netherStar->setUseDescriptionId(IDS_DESC_NETHER_STAR); + + Item::pumpkinPie = (new FoodItem(144, 8, FoodConstants::FOOD_SATURATION_LOW, false)); + Item::pumpkinPie->setIconName(L"pumpkinPie"); + Item::pumpkinPie->setDescriptionId(IDS_ITEM_PUMPKIN_PIE); + Item::pumpkinPie->setUseDescriptionId(IDS_DESC_PUMPKIN_PIE); + + Item::fireworks = (new FireworksItem(145)); + Item::fireworks->setBaseItemTypeAndMaterial(Item::eBaseItemType_fireworks, Item::eMaterial_undefined); + Item::fireworks->setIconName(L"fireworks"); + Item::fireworks->setDescriptionId(IDS_FIREWORKS); + Item::fireworks->setUseDescriptionId(IDS_DESC_FIREWORKS); + + Item::fireworksCharge = (new FireworksChargeItem(146)); + Item::fireworksCharge->setBaseItemTypeAndMaterial(Item::eBaseItemType_fireworks, Item::eMaterial_undefined); + Item::fireworksCharge->setIconName(L"fireworks_charge"); + Item::fireworksCharge->setDescriptionId(IDS_FIREWORKS_CHARGE); + Item::fireworksCharge->setUseDescriptionId(IDS_DESC_FIREWORKS_CHARGE); + + EnchantedBookItem::enchantedBook = (EnchantedBookItem *)(new EnchantedBookItem(147)); + EnchantedBookItem::enchantedBook->setMaxStackSize(1); + EnchantedBookItem::enchantedBook->setIconName(L"enchantedBook"); + EnchantedBookItem::enchantedBook->setDescriptionId(IDS_ITEM_ENCHANTED_BOOK); + EnchantedBookItem::enchantedBook->setUseDescriptionId(IDS_DESC_ENCHANTED_BOOK); + + Item::comparator = (new TilePlanterItem(148, Tile::comparator_off)); + Item::comparator->setIconName(L"comparator"); + Item::comparator->setDescriptionId(IDS_ITEM_COMPARATOR); + Item::comparator->setUseDescriptionId(IDS_DESC_COMPARATOR); + + Item::netherbrick = (new Item(149)); + Item::netherbrick->setIconName(L"netherbrick"); + Item::netherbrick->setDescriptionId(IDS_ITEM_NETHERBRICK); + Item::netherbrick->setUseDescriptionId(IDS_DESC_ITEM_NETHERBRICK); + + Item::netherQuartz = (new Item(150)); + Item::netherQuartz->setIconName(L"netherquartz"); + Item::netherQuartz->setDescriptionId(IDS_ITEM_NETHER_QUARTZ); + Item::netherQuartz->setUseDescriptionId(IDS_DESC_NETHER_QUARTZ); + + Item::minecart_tnt = (new MinecartItem(151, Minecart::TYPE_TNT)); + Item::minecart_tnt->setIconName(L"minecart_tnt"); + Item::minecart_tnt->setDescriptionId(IDS_ITEM_MINECART_TNT); + Item::minecart_tnt->setUseDescriptionId(IDS_DESC_MINECART_TNT); + + Item::minecart_hopper = (new MinecartItem(152, Minecart::TYPE_HOPPER)); + Item::minecart_hopper->setIconName(L"minecart_hopper"); + Item::minecart_hopper->setDescriptionId(IDS_ITEM_MINECART_HOPPER); + Item::minecart_hopper->setUseDescriptionId(IDS_DESC_MINECART_HOPPER); + + Item::horseArmorMetal = (new Item(161)); + Item::horseArmorMetal->setIconName(L"iron_horse_armor"); + Item::horseArmorMetal->setMaxStackSize(1); + Item::horseArmorMetal->setDescriptionId(IDS_ITEM_IRON_HORSE_ARMOR); + Item::horseArmorMetal->setUseDescriptionId(IDS_DESC_IRON_HORSE_ARMOR); + + Item::horseArmorGold = (new Item(162)); + Item::horseArmorGold->setIconName(L"gold_horse_armor"); + Item::horseArmorGold->setMaxStackSize(1); + Item::horseArmorGold->setDescriptionId(IDS_ITEM_GOLD_HORSE_ARMOR); + Item::horseArmorGold->setUseDescriptionId(IDS_DESC_GOLD_HORSE_ARMOR); + + Item::horseArmorDiamond = (new Item(163)); + Item::horseArmorDiamond->setIconName(L"diamond_horse_armor"); + Item::horseArmorDiamond->setMaxStackSize(1); + Item::horseArmorDiamond->setDescriptionId(IDS_ITEM_DIAMOND_HORSE_ARMOR); + Item::horseArmorDiamond->setUseDescriptionId(IDS_DESC_DIAMOND_HORSE_ARMOR); + + Item::lead = (new LeashItem(164)); + Item::lead->setBaseItemTypeAndMaterial(eBaseItemType_pockettool, eMaterial_undefined); + Item::lead->setIconName(L"lead"); + Item::lead->setDescriptionId(IDS_ITEM_LEAD); + Item::lead->setUseDescriptionId(IDS_DESC_LEAD); + + Item::nameTag = (new NameTagItem(165)); + Item::nameTag->setIconName(L"name_tag"); + Item::nameTag->setDescriptionId(IDS_ITEM_NAME_TAG); + Item::nameTag->setUseDescriptionId(IDS_DESC_NAME_TAG);} // 4J Stu - We need to do this after the staticCtor AND after staticCtors for other class diff --git a/Minecraft.World/ItemInstance.cpp b/Minecraft.World/ItemInstance.cpp index 2e6be408..1c11d45e 100644 --- a/Minecraft.World/ItemInstance.cpp +++ b/Minecraft.World/ItemInstance.cpp @@ -110,12 +110,22 @@ Item *ItemInstance::getItem() const Icon *ItemInstance::getIcon() { - return getItem()->getIcon(shared_from_this()); + Item *item = getItem(); + if(item != NULL) + { + return item->getIcon(shared_from_this()); + } + return NULL; } int ItemInstance::getIconType() { - return getItem()->getIconType(); + Item *item = getItem(); + if(item != NULL) + { + return item->getIconType(); + } + return 0; } bool ItemInstance::useOn(shared_ptr player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly) @@ -555,6 +565,7 @@ vector *ItemInstance::getHoverText(shared_ptr player, bool a { vector *lines = new vector(); Item *item = Item::items[id]; + HtmlString title = HtmlString(getHoverName()); if (hasCustomHoverName()) @@ -562,38 +573,12 @@ vector *ItemInstance::getHoverText(shared_ptr player, bool a title.italics = true; } - // 4J: This is for showing aux values, not useful in console version - /* - if (advanced) - { - wstring suffix = L""; - - if (title.length() > 0) - { - title += L" ("; - suffix = L")"; - } - - if (isStackedByData()) - { - title += String.format("#%04d/%d%s", id, auxValue, suffix); - } - else - { - title += String.format("#%04d%s", id, suffix); - } - } - else if (!hasCustomHoverName() && id == Item::map_Id) - */ - - /*if (!hasCustomHoverName() && id == Item::map_Id) - { - title.text += L" #" + _toString(auxValue); - }*/ - lines->push_back(title); - item->appendHoverText(shared_from_this(), player, lines, advanced); + if(item != NULL) + { + item->appendHoverText(shared_from_this(), player, lines, advanced); + } if (hasTag()) { @@ -688,7 +673,10 @@ vector *ItemInstance::getHoverTextOnly(shared_ptr player, bo vector *lines = new vector(); Item *item = Item::items[id]; - item->appendHoverText(shared_from_this(), player, lines, advanced); + if(item != NULL) + { + item->appendHoverText(shared_from_this(), player, lines, advanced); + } if (hasTag()) { @@ -718,12 +706,19 @@ bool ItemInstance::isFoil() const Rarity *ItemInstance::getRarity() { - return getItem()->getRarity(shared_from_this()); + Item *item = getItem(); + if(item != NULL) + { + return item->getRarity(shared_from_this()); + } + return Rarity::common; } bool ItemInstance::isEnchantable() { - if (!getItem()->isEnchantable(shared_from_this())) return false; + Item *item = getItem(); + if(item == NULL) return false; + if (!item->isEnchantable(shared_from_this())) return false; if (isEnchanted()) return false; return true; } @@ -816,7 +811,15 @@ attrAttrModMap *ItemInstance::getAttributeModifiers() } else { - result = getItem()->getDefaultAttributeModifiers(); + Item *item = getItem(); + if(item != NULL) + { + result = item->getDefaultAttributeModifiers(); + } + else + { + result = new attrAttrModMap(); + } } return result; diff --git a/Minecraft.World/Minecraft.World.vcxproj b/Minecraft.World/Minecraft.World.vcxproj index 4169c2d7..a599401f 100644 --- a/Minecraft.World/Minecraft.World.vcxproj +++ b/Minecraft.World/Minecraft.World.vcxproj @@ -884,8 +884,7 @@ false $(OutDir)$(ProjectName).pch MultiThreaded - _DEBUG_MENUS_ENABLED;NDEBUG;_XBOX;_LIB;%(PreprocessorDefinitions);PROFILE - Disabled + _ITERATOR_DEBUG_LEVEL=0;NDEBUG;_XBOX;_LIB;%(PreprocessorDefinitions) true false false @@ -910,8 +909,7 @@ false $(OutDir)$(ProjectName).pch MultiThreaded - _DEBUG_MENUS_ENABLED;NDEBUG;_XBOX;_LIB;%(PreprocessorDefinitions);PROFILE - Disabled + _DEBUG_MENUS_ENABLED;NDEBUG;_XBOX;_LIB;%(PreprocessorDefinitions) true false false diff --git a/Minecraft.World/MobEffect.cpp b/Minecraft.World/MobEffect.cpp index 18b20da4..186d4f38 100644 --- a/Minecraft.World/MobEffect.cpp +++ b/Minecraft.World/MobEffect.cpp @@ -62,14 +62,48 @@ void MobEffect::staticCtor() waterBreathing = (new MobEffect(13, false, eMinecraftColour_Effect_WaterBreathing)) ->setDescriptionId(IDS_POTION_WATERBREATHING) ->setPostfixDescriptionId(IDS_POTION_WATERBREATHING_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_WaterBreathing); //->setIcon(0, 2); invisibility = (new MobEffect(14, false, eMinecraftColour_Effect_Invisiblity)) ->setDescriptionId(IDS_POTION_INVISIBILITY) ->setPostfixDescriptionId(IDS_POTION_INVISIBILITY_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_Invisiblity); //->setIcon(0, 1); blindness = (new MobEffect(15, true, eMinecraftColour_Effect_Blindness)) ->setDescriptionId(IDS_POTION_BLINDNESS) ->setPostfixDescriptionId(IDS_POTION_BLINDNESS_POSTFIX)->setDurationModifier(.25)->setIcon(MobEffect::e_MobEffectIcon_Blindness); //->setIcon(5, 1); - nightVision = (new MobEffect(16, false, eMinecraftColour_Effect_NightVision)) ->setDescriptionId(IDS_POTION_NIGHTVISION) ->setPostfixDescriptionId(IDS_POTION_NIGHTVISION_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_NightVision); //->setIcon(4, 1); - hunger = (new MobEffect(17, true, eMinecraftColour_Effect_Hunger)) ->setDescriptionId(IDS_POTION_HUNGER) ->setPostfixDescriptionId(IDS_POTION_HUNGER_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_Hunger); //->setIcon(1, 1); - weakness = (new AttackDamageMobEffect(18, true, eMinecraftColour_Effect_Weakness)) ->setDescriptionId(IDS_POTION_WEAKNESS) ->setPostfixDescriptionId(IDS_POTION_WEAKNESS_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_Weakness)->addAttributeModifier(SharedMonsterAttributes::ATTACK_DAMAGE, eModifierId_POTION_WEAKNESS, 2, AttributeModifier::OPERATION_ADDITION); //->setIcon(5, 0); - poison = (new MobEffect(19, true, eMinecraftColour_Effect_Poison)) ->setDescriptionId(IDS_POTION_POISON) ->setPostfixDescriptionId(IDS_POTION_POISON_POSTFIX)->setDurationModifier(.25)->setIcon(MobEffect::e_MobEffectIcon_Poison); //->setIcon(6, 0); - wither = (new MobEffect(20, true, eMinecraftColour_Effect_Wither)) ->setDescriptionId(IDS_POTION_WITHER) ->setPostfixDescriptionId(IDS_POTION_WITHER_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_Wither)->setDurationModifier(.25); - healthBoost = (new HealthBoostMobEffect(21, false, eMinecraftColour_Effect_HealthBoost)) ->setDescriptionId(IDS_POTION_HEALTHBOOST) ->setPostfixDescriptionId(IDS_POTION_HEALTHBOOST_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_HealthBoost)->addAttributeModifier(SharedMonsterAttributes::MAX_HEALTH, eModifierId_POTION_HEALTHBOOST, 4, AttributeModifier::OPERATION_ADDITION); - absorption = (new AbsoptionMobEffect(22, false, eMinecraftColour_Effect_Absoprtion)) ->setDescriptionId(IDS_POTION_ABSORPTION) ->setPostfixDescriptionId(IDS_POTION_ABSORPTION_POSTFIX)->setIcon(MobEffect::e_MobEffectIcon_Absorption); - saturation = (new InstantenousMobEffect(23, false, eMinecraftColour_Effect_Saturation)) ->setDescriptionId(IDS_POTION_SATURATION) ->setPostfixDescriptionId(IDS_POTION_SATURATION_POSTFIX); + nightVision = (new MobEffect(16, false, eMinecraftColour_Effect_NightVision)); + nightVision->setDescriptionId(IDS_POTION_NIGHTVISION); + nightVision->setPostfixDescriptionId(IDS_POTION_NIGHTVISION_POSTFIX); + nightVision->setIcon(MobEffect::e_MobEffectIcon_NightVision); + + hunger = (new MobEffect(17, true, eMinecraftColour_Effect_Hunger)); + hunger->setDescriptionId(IDS_POTION_HUNGER); + hunger->setPostfixDescriptionId(IDS_POTION_HUNGER_POSTFIX); + hunger->setIcon(MobEffect::e_MobEffectIcon_Hunger); + + weakness = (new AttackDamageMobEffect(18, true, eMinecraftColour_Effect_Weakness)); + weakness->setDescriptionId(IDS_POTION_WEAKNESS); + weakness->setPostfixDescriptionId(IDS_POTION_WEAKNESS_POSTFIX); + weakness->setIcon(MobEffect::e_MobEffectIcon_Weakness); + weakness->addAttributeModifier(SharedMonsterAttributes::ATTACK_DAMAGE, eModifierId_POTION_WEAKNESS, 2, AttributeModifier::OPERATION_ADDITION); + + poison = (new MobEffect(19, true, eMinecraftColour_Effect_Poison)); + poison->setDescriptionId(IDS_POTION_POISON); + poison->setPostfixDescriptionId(IDS_POTION_POISON_POSTFIX); + poison->setDurationModifier(.25); + poison->setIcon(MobEffect::e_MobEffectIcon_Poison); + + wither = (new MobEffect(20, true, eMinecraftColour_Effect_Wither)); + wither->setDescriptionId(IDS_POTION_WITHER); + wither->setPostfixDescriptionId(IDS_POTION_WITHER_POSTFIX); + wither->setIcon(MobEffect::e_MobEffectIcon_Wither); + wither->setDurationModifier(.25); + + healthBoost = (new HealthBoostMobEffect(21, false, eMinecraftColour_Effect_HealthBoost)); + healthBoost->setDescriptionId(IDS_POTION_HEALTHBOOST); + healthBoost->setPostfixDescriptionId(IDS_POTION_HEALTHBOOST_POSTFIX); + healthBoost->setIcon(MobEffect::e_MobEffectIcon_HealthBoost); + healthBoost->addAttributeModifier(SharedMonsterAttributes::MAX_HEALTH, eModifierId_POTION_HEALTHBOOST, 4, AttributeModifier::OPERATION_ADDITION); + + absorption = (new AbsoptionMobEffect(22, false, eMinecraftColour_Effect_Absoprtion)); + absorption->setDescriptionId(IDS_POTION_ABSORPTION); + absorption->setPostfixDescriptionId(IDS_POTION_ABSORPTION_POSTFIX); + absorption->setIcon(MobEffect::e_MobEffectIcon_Absorption); + + saturation = (new InstantenousMobEffect(23, false, eMinecraftColour_Effect_Saturation)); + saturation->setDescriptionId(IDS_POTION_SATURATION); + saturation->setPostfixDescriptionId(IDS_POTION_SATURATION_POSTFIX); reserved_24 = NULL; reserved_25 = NULL; reserved_26 = NULL; diff --git a/Minecraft.World/Tile.cpp b/Minecraft.World/Tile.cpp index c401fc8f..27ea69fd 100644 --- a/Minecraft.World/Tile.cpp +++ b/Minecraft.World/Tile.cpp @@ -358,35 +358,213 @@ void Tile::staticCtor() Tile::glowstone = (new Glowstonetile(89, Material::glass)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_torch, Item::eMaterial_glowstone)->setDestroyTime(0.3f)->setSoundType(Tile::SOUND_GLASS)->setLightEmission(1.0f)->setIconName(L"glowstone")->setDescriptionId(IDS_TILE_LIGHT_GEM)->setUseDescriptionId(IDS_DESC_GLOWSTONE); Tile::portalTile = (PortalTile *) ((new PortalTile(90)) ->setDestroyTime(-1)->setSoundType(Tile::SOUND_GLASS)->setLightEmission(0.75f))->setIconName(L"portal")->setDescriptionId(IDS_TILE_PORTAL)->setUseDescriptionId(IDS_DESC_PORTAL); - Tile::litPumpkin = (new PumpkinTile(91, true)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_torch, Item::eMaterial_pumpkin)->setDestroyTime(1.0f)->setSoundType(Tile::SOUND_WOOD)->setLightEmission(1.0f)->setIconName(L"pumpkin")->setDescriptionId(IDS_TILE_LIT_PUMPKIN)->sendTileData()->setUseDescriptionId(IDS_DESC_JACKOLANTERN); - Tile::cake = (new CakeTile(92)) ->setDestroyTime(0.5f)->setSoundType(Tile::SOUND_CLOTH)->setIconName(L"cake")->setDescriptionId(IDS_TILE_CAKE)->setNotCollectStatistics()->sendTileData()->setUseDescriptionId(IDS_DESC_CAKE); - Tile::diode_off = (RepeaterTile *)(new RepeaterTile(93, false)) ->setDestroyTime(0.0f)->setSoundType(Tile::SOUND_WOOD)->setIconName(L"repeater_off")->setDescriptionId(IDS_ITEM_DIODE)->setNotCollectStatistics()->sendTileData()->setUseDescriptionId(IDS_DESC_REDSTONEREPEATER)->disableMipmap(); - Tile::diode_on = (RepeaterTile *)(new RepeaterTile(94, true)) ->setDestroyTime(0.0f)->setLightEmission(10 / 16.0f)->setSoundType(Tile::SOUND_WOOD)->setIconName(L"repeater_on")->setDescriptionId(IDS_ITEM_DIODE)->setNotCollectStatistics()->sendTileData()->setUseDescriptionId(IDS_DESC_REDSTONEREPEATER)->disableMipmap(); - Tile::stained_glass = (new StainedGlassBlock(95, Material::glass))->setBaseItemTypeAndMaterial(Item::eBaseItemType_glass, Item::eMaterial_glass)->setDestroyTime(0.3f)->setSoundType(SOUND_GLASS)->setIconName(L"glass")->setDescriptionId(IDS_TILE_STAINED_GLASS)->setUseDescriptionId(IDS_DESC_STAINED_GLASS); - Tile::trapdoor = (new TrapDoorTile(96, Material::wood)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_door, Item::eMaterial_trap)->setDestroyTime(3.0f)->setSoundType(Tile::SOUND_WOOD)->setIconName(L"trapdoor")->setDescriptionId(IDS_TILE_TRAPDOOR)->setNotCollectStatistics()->sendTileData()->setUseDescriptionId(IDS_DESC_TRAPDOOR); - Tile::monsterStoneEgg = (new StoneMonsterTile(97)) ->setDestroyTime(0.75f)->setIconName(L"monsterStoneEgg")->setDescriptionId(IDS_TILE_STONE_SILVERFISH)->setUseDescriptionId(IDS_DESC_STONE_SILVERFISH); - Tile::stoneBrick = (new SmoothStoneBrickTile(98)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_stoneSmooth)->setDestroyTime(1.5f)->setExplodeable(10)->setSoundType(SOUND_STONE)->setIconName(L"stonebrick")->setDescriptionId(IDS_TILE_STONE_BRICK_SMOOTH)->setUseDescriptionId(IDS_DESC_STONE_BRICK_SMOOTH); - Tile::hugeMushroom_brown = (new HugeMushroomTile(99, Material::wood, HugeMushroomTile::MUSHROOM_TYPE_BROWN)) ->setDestroyTime(0.2f)->setSoundType(SOUND_WOOD)->setIconName(L"mushroom_block")->setDescriptionId(IDS_TILE_HUGE_MUSHROOM_1)->setUseDescriptionId(IDS_DESC_MUSHROOM)->sendTileData(); - Tile::hugeMushroom_red = (new HugeMushroomTile(100, Material::wood, HugeMushroomTile::MUSHROOM_TYPE_RED)) ->setDestroyTime(0.2f)->setSoundType(SOUND_WOOD)->setIconName(L"mushroom_block")->setDescriptionId(IDS_TILE_HUGE_MUSHROOM_2)->setUseDescriptionId(IDS_DESC_MUSHROOM)->sendTileData(); + Tile::litPumpkin = (new PumpkinTile(91, true)); + Tile::litPumpkin->setBaseItemTypeAndMaterial(Item::eBaseItemType_torch, Item::eMaterial_pumpkin); + Tile::litPumpkin->setDestroyTime(1.0f); + Tile::litPumpkin->setSoundType(Tile::SOUND_WOOD); + Tile::litPumpkin->setLightEmission(1.0f); + Tile::litPumpkin->setIconName(L"pumpkin"); + Tile::litPumpkin->setDescriptionId(IDS_TILE_LIT_PUMPKIN); + Tile::litPumpkin->sendTileData(); + Tile::litPumpkin->setUseDescriptionId(IDS_DESC_JACKOLANTERN); + + Tile::cake = (new CakeTile(92)); + Tile::cake->setDestroyTime(0.5f); + Tile::cake->setSoundType(Tile::SOUND_CLOTH); + Tile::cake->setIconName(L"cake"); + Tile::cake->setDescriptionId(IDS_TILE_CAKE); + Tile::cake->setNotCollectStatistics(); + Tile::cake->sendTileData(); + Tile::cake->setUseDescriptionId(IDS_DESC_CAKE); + + Tile::diode_off = (RepeaterTile *)(new RepeaterTile(93, false)); + Tile::diode_off->setDestroyTime(0.0f); + Tile::diode_off->setSoundType(Tile::SOUND_WOOD); + Tile::diode_off->setIconName(L"repeater_off"); + Tile::diode_off->setDescriptionId(IDS_ITEM_DIODE); + Tile::diode_off->setNotCollectStatistics(); + Tile::diode_off->sendTileData(); + Tile::diode_off->setUseDescriptionId(IDS_DESC_REDSTONEREPEATER); + Tile::diode_off->disableMipmap(); + + Tile::diode_on = (RepeaterTile *)(new RepeaterTile(94, true)); + Tile::diode_on->setDestroyTime(0.0f); + Tile::diode_on->setLightEmission(10 / 16.0f); + Tile::diode_on->setSoundType(Tile::SOUND_WOOD); + Tile::diode_on->setIconName(L"repeater_on"); + Tile::diode_on->setDescriptionId(IDS_ITEM_DIODE); + Tile::diode_on->setNotCollectStatistics(); + Tile::diode_on->sendTileData(); + Tile::diode_on->setUseDescriptionId(IDS_DESC_REDSTONEREPEATER); + Tile::diode_on->disableMipmap(); + + Tile::stained_glass = (new StainedGlassBlock(95, Material::glass)); + Tile::stained_glass->setBaseItemTypeAndMaterial(Item::eBaseItemType_glass, Item::eMaterial_glass); + Tile::stained_glass->setDestroyTime(0.3f); + Tile::stained_glass->setSoundType(SOUND_GLASS); + Tile::stained_glass->setIconName(L"glass"); + Tile::stained_glass->setDescriptionId(IDS_TILE_STAINED_GLASS); + Tile::stained_glass->setUseDescriptionId(IDS_DESC_STAINED_GLASS); + + Tile::trapdoor = (new TrapDoorTile(96, Material::wood)); + Tile::trapdoor->setBaseItemTypeAndMaterial(Item::eBaseItemType_door, Item::eMaterial_trap); + Tile::trapdoor->setDestroyTime(3.0f); + Tile::trapdoor->setSoundType(Tile::SOUND_WOOD); + Tile::trapdoor->setIconName(L"trapdoor"); + Tile::trapdoor->setDescriptionId(IDS_TILE_TRAPDOOR); + Tile::trapdoor->setNotCollectStatistics(); + Tile::trapdoor->sendTileData(); + Tile::trapdoor->setUseDescriptionId(IDS_DESC_TRAPDOOR); + + Tile::monsterStoneEgg = (new StoneMonsterTile(97)); + Tile::monsterStoneEgg->setDestroyTime(0.75f); + Tile::monsterStoneEgg->setIconName(L"monsterStoneEgg"); + Tile::monsterStoneEgg->setDescriptionId(IDS_TILE_STONE_SILVERFISH); + Tile::monsterStoneEgg->setUseDescriptionId(IDS_DESC_STONE_SILVERFISH); + + Tile::stoneBrick = (new SmoothStoneBrickTile(98)); + Tile::stoneBrick->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_stoneSmooth); + Tile::stoneBrick->setDestroyTime(1.5f); + Tile::stoneBrick->setExplodeable(10); + Tile::stoneBrick->setSoundType(SOUND_STONE); + Tile::stoneBrick->setIconName(L"stonebrick"); + Tile::stoneBrick->setDescriptionId(IDS_TILE_STONE_BRICK_SMOOTH); + Tile::stoneBrick->setUseDescriptionId(IDS_DESC_STONE_BRICK_SMOOTH); + + Tile::hugeMushroom_brown = (new HugeMushroomTile(99, Material::wood, HugeMushroomTile::MUSHROOM_TYPE_BROWN)); + Tile::hugeMushroom_brown->setDestroyTime(0.2f); + Tile::hugeMushroom_brown->setSoundType(SOUND_WOOD); + Tile::hugeMushroom_brown->setIconName(L"mushroom_block"); + Tile::hugeMushroom_brown->setDescriptionId(IDS_TILE_HUGE_MUSHROOM_1); + Tile::hugeMushroom_brown->setUseDescriptionId(IDS_DESC_MUSHROOM); + Tile::hugeMushroom_brown->sendTileData(); + + Tile::hugeMushroom_red = (new HugeMushroomTile(100, Material::wood, HugeMushroomTile::MUSHROOM_TYPE_RED)); + Tile::hugeMushroom_red->setDestroyTime(0.2f); + Tile::hugeMushroom_red->setSoundType(SOUND_WOOD); + Tile::hugeMushroom_red->setIconName(L"mushroom_block"); + Tile::hugeMushroom_red->setDescriptionId(IDS_TILE_HUGE_MUSHROOM_2); + Tile::hugeMushroom_red->setUseDescriptionId(IDS_DESC_MUSHROOM); + Tile::hugeMushroom_red->sendTileData(); - Tile::ironFence = (new ThinFenceTile(101, L"iron_bars", L"iron_bars", Material::metal, true)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_iron)->setDestroyTime(5.0f)->setExplodeable(10)->setSoundType(SOUND_METAL)->setDescriptionId(IDS_TILE_IRON_FENCE)->setUseDescriptionId(IDS_DESC_IRON_FENCE); - Tile::thinGlass = (new ThinFenceTile(102, L"glass", L"glass_pane_top", Material::glass, false)) ->setDestroyTime(0.3f)->setSoundType(SOUND_GLASS)->setDescriptionId(IDS_TILE_THIN_GLASS)->setUseDescriptionId(IDS_DESC_THIN_GLASS); - Tile::melon = (new MelonTile(103)) ->setDestroyTime(1.0f)->setSoundType(SOUND_WOOD)->setIconName(L"melon")->setDescriptionId(IDS_TILE_MELON)->setUseDescriptionId(IDS_DESC_MELON_BLOCK); - Tile::pumpkinStem = (new StemTile(104, Tile::pumpkin)) ->setDestroyTime(0.0f)->setSoundType(SOUND_WOOD)->setIconName(L"pumpkin_stem")->setDescriptionId(IDS_TILE_PUMPKIN_STEM)->sendTileData(); - Tile::melonStem = (new StemTile(105, Tile::melon)) ->setDestroyTime(0.0f)->setSoundType(SOUND_WOOD)->setIconName(L"melon_stem")->setDescriptionId(IDS_TILE_MELON_STEM)->sendTileData(); - Tile::vine = (new VineTile(106))->setDestroyTime(0.2f) ->setSoundType(SOUND_GRASS)->setIconName(L"vine")->setDescriptionId(IDS_TILE_VINE)->setUseDescriptionId(IDS_DESC_VINE)->sendTileData(); - Tile::fenceGate = (new FenceGateTile(107)) ->setDestroyTime(2.0f)->setExplodeable(5)->setSoundType(SOUND_WOOD)->setIconName(L"fenceGate")->setDescriptionId(IDS_TILE_FENCE_GATE)->sendTileData()->setUseDescriptionId(IDS_DESC_FENCE_GATE); - Tile::stairs_bricks = (new StairTile(108, Tile::redBrick,0)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_brick) ->setIconName(L"stairsBrick")->setDescriptionId(IDS_TILE_STAIRS_BRICKS) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::stairs_stoneBrickSmooth = (new StairTile(109, Tile::stoneBrick,0)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_stoneSmooth)->setIconName(L"stairsStoneBrickSmooth")->setDescriptionId(IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::mycel = (MycelTile *)(new MycelTile(110)) ->setDestroyTime(0.6f)->setSoundType(SOUND_GRASS)->setIconName(L"mycelium")->setDescriptionId(IDS_TILE_MYCEL)->setUseDescriptionId(IDS_DESC_MYCEL); + Tile::ironFence = (new ThinFenceTile(101, L"iron_bars", L"iron_bars", Material::metal, true)); + Tile::ironFence->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_iron); + Tile::ironFence->setDestroyTime(5.0f); + Tile::ironFence->setExplodeable(10); + Tile::ironFence->setSoundType(SOUND_METAL); + Tile::ironFence->setDescriptionId(IDS_TILE_IRON_FENCE); + Tile::ironFence->setUseDescriptionId(IDS_DESC_IRON_FENCE); - Tile::waterLily = (new WaterlilyTile(111)) ->setDestroyTime(0.0f)->setSoundType(SOUND_GRASS)->setIconName(L"waterlily")->setDescriptionId(IDS_TILE_WATERLILY)->setUseDescriptionId(IDS_DESC_WATERLILY); - Tile::netherBrick = (new Tile(112, Material::stone)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_netherbrick)->setDestroyTime(2.0f)->setExplodeable(10)->setSoundType(SOUND_STONE)->setIconName(L"nether_brick")->setDescriptionId(IDS_TILE_NETHERBRICK)->setUseDescriptionId(IDS_DESC_NETHERBRICK); - Tile::netherFence = (new FenceTile(113, L"nether_brick", Material::stone)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_netherbrick)->setDestroyTime(2.0f)->setExplodeable(10)->setSoundType(SOUND_STONE)->setDescriptionId(IDS_TILE_NETHERFENCE)->setUseDescriptionId(IDS_DESC_NETHERFENCE); - Tile::stairs_netherBricks = (new StairTile(114, Tile::netherBrick,0)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_netherbrick)->setIconName(L"stairsNetherBrick")->setDescriptionId(IDS_TILE_STAIRS_NETHERBRICK) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::netherStalk = (new NetherWartTile(115)) ->setIconName(L"nether_wart")->setDescriptionId(IDS_TILE_NETHERSTALK)->sendTileData()->setUseDescriptionId(IDS_DESC_NETHERSTALK); - Tile::enchantTable = (new EnchantmentTableTile(116)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_device, Item::eMaterial_magic)->setDestroyTime(5.0f)->setExplodeable(2000)->setIconName(L"enchanting_table")->setDescriptionId(IDS_TILE_ENCHANTMENTTABLE)->setUseDescriptionId(IDS_DESC_ENCHANTMENTTABLE); + Tile::thinGlass = (new ThinFenceTile(102, L"glass", L"glass_pane_top", Material::glass, false)); + Tile::thinGlass->setDestroyTime(0.3f); + Tile::thinGlass->setSoundType(SOUND_GLASS); + Tile::thinGlass->setDescriptionId(IDS_TILE_THIN_GLASS); + Tile::thinGlass->setUseDescriptionId(IDS_DESC_THIN_GLASS); + + Tile::melon = (new MelonTile(103)); + Tile::melon->setDestroyTime(1.0f); + Tile::melon->setSoundType(SOUND_WOOD); + Tile::melon->setIconName(L"melon"); + Tile::melon->setDescriptionId(IDS_TILE_MELON); + Tile::melon->setUseDescriptionId(IDS_DESC_MELON_BLOCK); + + Tile::pumpkinStem = (new StemTile(104, Tile::pumpkin)); + Tile::pumpkinStem->setDestroyTime(0.0f); + Tile::pumpkinStem->setSoundType(SOUND_WOOD); + Tile::pumpkinStem->setIconName(L"pumpkin_stem"); + Tile::pumpkinStem->setDescriptionId(IDS_TILE_PUMPKIN_STEM); + Tile::pumpkinStem->sendTileData(); + + Tile::melonStem = (new StemTile(105, Tile::melon)); + Tile::melonStem->setDestroyTime(0.0f); + Tile::melonStem->setSoundType(SOUND_WOOD); + Tile::melonStem->setIconName(L"melon_stem"); + Tile::melonStem->setDescriptionId(IDS_TILE_MELON_STEM); + Tile::melonStem->sendTileData(); + + Tile::vine = (new VineTile(106)); + Tile::vine->setDestroyTime(0.2f); + Tile::vine->setSoundType(SOUND_GRASS); + Tile::vine->setIconName(L"vine"); + Tile::vine->setDescriptionId(IDS_TILE_VINE); + Tile::vine->setUseDescriptionId(IDS_DESC_VINE); + Tile::vine->sendTileData(); + + Tile::fenceGate = (new FenceGateTile(107)); + Tile::fenceGate->setDestroyTime(2.0f); + Tile::fenceGate->setExplodeable(5); + Tile::fenceGate->setSoundType(SOUND_WOOD); + Tile::fenceGate->setIconName(L"fenceGate"); + Tile::fenceGate->setDescriptionId(IDS_TILE_FENCE_GATE); + Tile::fenceGate->sendTileData(); + Tile::fenceGate->setUseDescriptionId(IDS_DESC_FENCE_GATE); + + Tile::stairs_bricks = (new StairTile(108, Tile::redBrick,0)); + Tile::stairs_bricks->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_brick); + Tile::stairs_bricks->setIconName(L"stairsBrick"); + Tile::stairs_bricks->setDescriptionId(IDS_TILE_STAIRS_BRICKS); + Tile::stairs_bricks->sendTileData(); + Tile::stairs_bricks->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::stairs_stoneBrickSmooth = (new StairTile(109, Tile::stoneBrick,0)); + Tile::stairs_stoneBrickSmooth->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_stoneSmooth); + Tile::stairs_stoneBrickSmooth->setIconName(L"stairsStoneBrickSmooth"); + Tile::stairs_stoneBrickSmooth->setDescriptionId(IDS_TILE_STAIRS_STONE_BRICKS_SMOOTH); + Tile::stairs_stoneBrickSmooth->sendTileData(); + Tile::stairs_stoneBrickSmooth->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::mycel = (MycelTile *)(new MycelTile(110)); + Tile::mycel->setDestroyTime(0.6f); + Tile::mycel->setSoundType(SOUND_GRASS); + Tile::mycel->setIconName(L"mycelium"); + Tile::mycel->setDescriptionId(IDS_TILE_MYCEL); + Tile::mycel->setUseDescriptionId(IDS_DESC_MYCEL); + + Tile::waterLily = (new WaterlilyTile(111)); + Tile::waterLily->setDestroyTime(0.0f); + Tile::waterLily->setSoundType(SOUND_GRASS); + Tile::waterLily->setIconName(L"waterlily"); + Tile::waterLily->setDescriptionId(IDS_TILE_WATERLILY); + Tile::waterLily->setUseDescriptionId(IDS_DESC_WATERLILY); + + Tile::netherBrick = (new Tile(112, Material::stone)); + Tile::netherBrick->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_netherbrick); + Tile::netherBrick->setDestroyTime(2.0f); + Tile::netherBrick->setExplodeable(10); + Tile::netherBrick->setSoundType(SOUND_STONE); + Tile::netherBrick->setIconName(L"nether_brick"); + Tile::netherBrick->setDescriptionId(IDS_TILE_NETHERBRICK); + Tile::netherBrick->setUseDescriptionId(IDS_DESC_NETHERBRICK); + + Tile::netherFence = (new FenceTile(113, L"nether_brick", Material::stone)); + Tile::netherFence->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_netherbrick); + Tile::netherFence->setDestroyTime(2.0f); + Tile::netherFence->setExplodeable(10); + Tile::netherFence->setSoundType(SOUND_STONE); + Tile::netherFence->setDescriptionId(IDS_TILE_NETHERFENCE); + Tile::netherFence->setUseDescriptionId(IDS_DESC_NETHERFENCE); + + Tile::stairs_netherBricks = (new StairTile(114, Tile::netherBrick,0)); + Tile::stairs_netherBricks->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_netherbrick); + Tile::stairs_netherBricks->setIconName(L"stairsNetherBrick"); + Tile::stairs_netherBricks->setDescriptionId(IDS_TILE_STAIRS_NETHERBRICK); + Tile::stairs_netherBricks->sendTileData(); + Tile::stairs_netherBricks->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::netherStalk = (new NetherWartTile(115)); + Tile::netherStalk->setIconName(L"nether_wart"); + Tile::netherStalk->setDescriptionId(IDS_TILE_NETHERSTALK); + Tile::netherStalk->sendTileData(); + Tile::netherStalk->setUseDescriptionId(IDS_DESC_NETHERSTALK); + + Tile::enchantTable = (new EnchantmentTableTile(116)); + Tile::enchantTable->setBaseItemTypeAndMaterial(Item::eBaseItemType_device, Item::eMaterial_magic); + Tile::enchantTable->setDestroyTime(5.0f); + Tile::enchantTable->setExplodeable(2000); + Tile::enchantTable->setIconName(L"enchanting_table"); + Tile::enchantTable->setDescriptionId(IDS_TILE_ENCHANTMENTTABLE); + Tile::enchantTable->setUseDescriptionId(IDS_DESC_ENCHANTMENTTABLE); Tile::brewingStand = (new BrewingStandTile(117)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_device, Item::eMaterial_blaze)->setDestroyTime(0.5f)->setLightEmission(2 / 16.0f)->setIconName(L"brewing_stand")->setDescriptionId(IDS_TILE_BREWINGSTAND)->sendTileData()->setUseDescriptionId(IDS_DESC_BREWING_STAND); Tile::cauldron = (CauldronTile *)(new CauldronTile(118)) ->setDestroyTime(2.0f)->setIconName(L"cauldron")->setDescriptionId(IDS_TILE_CAULDRON)->sendTileData()->setUseDescriptionId(IDS_DESC_CAULDRON); Tile::endPortalTile = (new TheEndPortal(119, Material::portal)) ->setDestroyTime(INDESTRUCTIBLE_DESTROY_TIME)->setExplodeable(6000000)->setDescriptionId(IDS_TILE_END_PORTAL)->setUseDescriptionId(IDS_DESC_END_PORTAL); @@ -404,64 +582,352 @@ void Tile::staticCtor() Tile::enderChest = (new EnderChestTile(130)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_chest, Item::eMaterial_ender)->setDestroyTime(22.5f)->setExplodeable(1000)->setSoundType(SOUND_STONE)->setIconName(L"enderChest")->sendTileData()->setLightEmission(.5f)->setDescriptionId(IDS_TILE_ENDERCHEST)->setUseDescriptionId(IDS_DESC_ENDERCHEST); - Tile::tripWireSource = (TripWireSourceTile *)( new TripWireSourceTile(131) ) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_lever, Item::eMaterial_undefined)->setIconName(L"trip_wire_source")->sendTileData()->setDescriptionId(IDS_TILE_TRIPWIRE_SOURCE)->setUseDescriptionId(IDS_DESC_TRIPWIRE_SOURCE); - Tile::tripWire = (new TripWireTile(132)) ->setIconName(L"trip_wire")->sendTileData()->setDescriptionId(IDS_TILE_TRIPWIRE)->setUseDescriptionId(IDS_DESC_TRIPWIRE); - Tile::emeraldBlock = (new MetalTile(133)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_emerald)->setDestroyTime(5.0f)->setExplodeable(10)->setSoundType(SOUND_METAL)->setIconName(L"emerald_block")->setDescriptionId(IDS_TILE_EMERALDBLOCK)->setUseDescriptionId(IDS_DESC_EMERALDBLOCK); - Tile::woodStairsDark = (new StairTile(134, Tile::wood, TreeTile::DARK_TRUNK)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_sprucewood)->setIconName(L"stairsWoodSpruce")->setDescriptionId(IDS_TILE_STAIRS_SPRUCEWOOD) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::woodStairsBirch = (new StairTile(135, Tile::wood, TreeTile::BIRCH_TRUNK)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_birchwood)->setIconName(L"stairsWoodBirch")->setDescriptionId(IDS_TILE_STAIRS_BIRCHWOOD) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::woodStairsJungle =(new StairTile(136, Tile::wood, TreeTile::JUNGLE_TRUNK))->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_junglewood)->setIconName(L"stairsWoodJungle")->setDescriptionId(IDS_TILE_STAIRS_JUNGLEWOOD) ->sendTileData()->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::commandBlock = (new CommandBlock(137)) ->setIndestructible()->setExplodeable(6000000)->setIconName(L"command_block")->setDescriptionId(IDS_TILE_COMMAND_BLOCK)->setUseDescriptionId(IDS_DESC_COMMAND_BLOCK); - Tile::beacon = (BeaconTile *) (new BeaconTile(138)) ->setLightEmission(1.0f)->setIconName(L"beacon")->setDescriptionId(IDS_TILE_BEACON)->setUseDescriptionId(IDS_DESC_BEACON); - Tile::cobbleWall = (new WallTile(139, Tile::stoneBrick)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_stone)->setIconName(L"cobbleWall")->setDescriptionId(IDS_TILE_COBBLESTONE_WALL)->setUseDescriptionId(IDS_DESC_COBBLESTONE_WALL); - Tile::flowerPot = (new FlowerPotTile(140)) ->setDestroyTime(0.0f)->setSoundType(SOUND_NORMAL)->setIconName(L"flower_pot")->setDescriptionId(IDS_TILE_FLOWERPOT)->setUseDescriptionId(IDS_DESC_FLOWERPOT); + Tile::tripWireSource = (TripWireSourceTile *)( new TripWireSourceTile(131) ); + Tile::tripWireSource->setBaseItemTypeAndMaterial(Item::eBaseItemType_lever, Item::eMaterial_undefined); + Tile::tripWireSource->setIconName(L"trip_wire_source"); + Tile::tripWireSource->sendTileData(); + Tile::tripWireSource->setDescriptionId(IDS_TILE_TRIPWIRE_SOURCE); + Tile::tripWireSource->setUseDescriptionId(IDS_DESC_TRIPWIRE_SOURCE); - Tile::carrots = (new CarrotTile(141)) ->setIconName(L"carrots")->setDescriptionId(IDS_TILE_CARROTS)->setUseDescriptionId(IDS_DESC_CARROTS)->disableMipmap(); - Tile::potatoes = (new PotatoTile(142)) ->setIconName(L"potatoes")->setDescriptionId(IDS_TILE_POTATOES)->setUseDescriptionId(IDS_DESC_POTATO)->disableMipmap(); - Tile::button_wood = (new WoodButtonTile(143)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_button, Item::eMaterial_wood)->setDestroyTime(0.5f)->setSoundType(Tile::SOUND_WOOD)->setIconName(L"button")->setDescriptionId(IDS_TILE_BUTTON)->sendTileData()->setUseDescriptionId(IDS_DESC_BUTTON); - Tile::skull = (new SkullTile(144)) ->setDestroyTime(1.0f)->setSoundType(SOUND_STONE)->setIconName(L"skull")->setDescriptionId(IDS_TILE_SKULL)->setUseDescriptionId(IDS_DESC_SKULL); - Tile::anvil = (new AnvilTile(145)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_device, Item::eMaterial_iron)->setDestroyTime(5.0f)->setSoundType(SOUND_ANVIL)->setExplodeable(2000)->setIconName(L"anvil")->sendTileData()->setDescriptionId(IDS_TILE_ANVIL)->setUseDescriptionId(IDS_DESC_ANVIL); - Tile::chest_trap = (new ChestTile(146, ChestTile::TYPE_TRAP)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_chest, Item::eMaterial_trap)->setDestroyTime(2.5f)->setSoundType(SOUND_WOOD)->setDescriptionId(IDS_TILE_CHEST_TRAP)->setUseDescriptionId(IDS_DESC_CHEST_TRAP); - Tile::weightedPlate_light = (new WeightedPressurePlateTile(147, L"gold_block", Material::metal, Redstone::SIGNAL_MAX)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_pressureplate, Item::eMaterial_gold)->setDestroyTime(0.5f)->setSoundType(SOUND_WOOD)->setDescriptionId(IDS_TILE_WEIGHTED_PLATE_LIGHT)->setUseDescriptionId(IDS_DESC_WEIGHTED_PLATE_LIGHT); - Tile::weightedPlate_heavy = (new WeightedPressurePlateTile(148, L"iron_block", Material::metal, Redstone::SIGNAL_MAX * 10))->setBaseItemTypeAndMaterial(Item::eBaseItemType_pressureplate, Item::eMaterial_iron)->setDestroyTime(0.5f)->setSoundType(SOUND_WOOD)->setDescriptionId(IDS_TILE_WEIGHTED_PLATE_HEAVY)->setUseDescriptionId(IDS_DESC_WEIGHTED_PLATE_HEAVY); - Tile::comparator_off = (ComparatorTile *) (new ComparatorTile(149, false)) ->setDestroyTime(0.0f)->setSoundType(SOUND_WOOD)->setIconName(L"comparator_off")->setDescriptionId(IDS_TILE_COMPARATOR)->setUseDescriptionId(IDS_DESC_COMPARATOR); - Tile::comparator_on = (ComparatorTile *) (new ComparatorTile(150, true)) ->setDestroyTime(0.0f)->setLightEmission(10 / 16.0f)->setSoundType(SOUND_WOOD)->setIconName(L"comparator_on")->setDescriptionId(IDS_TILE_COMPARATOR)->setUseDescriptionId(IDS_DESC_COMPARATOR); + Tile::tripWire = (new TripWireTile(132)); + Tile::tripWire->setIconName(L"trip_wire"); + Tile::tripWire->sendTileData(); + Tile::tripWire->setDescriptionId(IDS_TILE_TRIPWIRE); + Tile::tripWire->setUseDescriptionId(IDS_DESC_TRIPWIRE); - Tile::daylightDetector = (DaylightDetectorTile *) (new DaylightDetectorTile(151))->setDestroyTime(0.2f)->setSoundType(SOUND_WOOD)->setIconName(L"daylight_detector")->setDescriptionId(IDS_TILE_DAYLIGHT_DETECTOR)->setUseDescriptionId(IDS_DESC_DAYLIGHT_DETECTOR); - Tile::redstoneBlock = (new PoweredMetalTile(152)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_redstone)->setDestroyTime(5.0f)->setExplodeable(10)->setSoundType(SOUND_METAL)->setIconName(L"redstone_block")->setDescriptionId(IDS_TILE_REDSTONE_BLOCK)->setUseDescriptionId(IDS_DESC_REDSTONE_BLOCK); - Tile::netherQuartz = (new OreTile(153)) ->setDestroyTime(3.0f)->setExplodeable(5)->setSoundType(SOUND_STONE)->setIconName(L"quartz_ore")->setDescriptionId(IDS_TILE_NETHER_QUARTZ)->setUseDescriptionId(IDS_DESC_NETHER_QUARTZ_ORE); - Tile::hopper = (HopperTile *)(new HopperTile(154)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_redstoneContainer, Item::eMaterial_undefined)->setDestroyTime(3.0f)->setExplodeable(8)->setSoundType(SOUND_WOOD)->setIconName(L"hopper")->setDescriptionId(IDS_TILE_HOPPER)->setUseDescriptionId(IDS_DESC_HOPPER); - Tile::quartzBlock = (new QuartzBlockTile(155)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_quartz)->setSoundType(SOUND_STONE)->setDestroyTime(0.8f)->setIconName(L"quartz_block")->setDescriptionId(IDS_TILE_QUARTZ_BLOCK)->setUseDescriptionId(IDS_DESC_QUARTZ_BLOCK); - Tile::stairs_quartz = (new StairTile(156, Tile::quartzBlock, QuartzBlockTile::TYPE_DEFAULT)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_quartz)->setIconName(L"stairsQuartz")->setDescriptionId(IDS_TILE_STAIRS_QUARTZ)->setUseDescriptionId(IDS_DESC_STAIRS); - Tile::activatorRail = (new PoweredRailTile(157)) ->setDestroyTime(0.7f)->setSoundType(SOUND_METAL)->setIconName(L"rail_activator")->setDescriptionId(IDS_TILE_ACTIVATOR_RAIL)->setUseDescriptionId(IDS_DESC_ACTIVATOR_RAIL); - Tile::dropper = (new DropperTile(158)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_redstoneContainer, Item::eMaterial_undefined)->setDestroyTime(3.5f)->setSoundType(SOUND_STONE)->setIconName(L"dropper")->setDescriptionId(IDS_TILE_DROPPER)->setUseDescriptionId(IDS_DESC_DROPPER); - Tile::clayHardened_colored = (new ColoredTile(159, Material::stone)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_clay, Item::eMaterial_clay)->setDestroyTime(1.25f)->setExplodeable(7)->setSoundType(SOUND_STONE)->setIconName(L"hardened_clay_stained")->setDescriptionId(IDS_TILE_STAINED_CLAY)->setUseDescriptionId(IDS_DESC_STAINED_CLAY); - Tile::stained_glass_pane = (new StainedGlassPaneBlock(160)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_glass, Item::eMaterial_glass)->setDestroyTime(0.3f)->setSoundType(SOUND_GLASS)->setIconName(L"glass")->setDescriptionId(IDS_TILE_STAINED_GLASS_PANE)->setUseDescriptionId(IDS_DESC_STAINED_GLASS_PANE); + Tile::emeraldBlock = (new MetalTile(133)); + Tile::emeraldBlock->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_emerald); + Tile::emeraldBlock->setDestroyTime(5.0f); + Tile::emeraldBlock->setExplodeable(10); + Tile::emeraldBlock->setSoundType(SOUND_METAL); + Tile::emeraldBlock->setIconName(L"emerald_block"); + Tile::emeraldBlock->setDescriptionId(IDS_TILE_EMERALDBLOCK); + Tile::emeraldBlock->setUseDescriptionId(IDS_DESC_EMERALDBLOCK); - Tile::hayBlock = (new HayBlockTile(170)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_wheat)->setDestroyTime(0.5f)->setSoundType(SOUND_GRASS)->setIconName(L"hay_block")->setDescriptionId(IDS_TILE_HAY)->setUseDescriptionId(IDS_DESC_HAY); - Tile::woolCarpet = (new WoolCarpetTile(171)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_carpet, Item::eMaterial_cloth)->setDestroyTime(0.1f)->setSoundType(SOUND_CLOTH)->setIconName(L"woolCarpet")->setLightBlock(0)->setDescriptionId(IDS_TILE_CARPET)->setUseDescriptionId(IDS_DESC_CARPET); - Tile::clayHardened = (new Tile(172, Material::stone)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_clay, Item::eMaterial_clay)->setDestroyTime(1.25f)->setExplodeable(7)->setSoundType(SOUND_STONE)->setIconName(L"hardened_clay")->setDescriptionId(IDS_TILE_HARDENED_CLAY)->setUseDescriptionId(IDS_DESC_HARDENED_CLAY); - Tile::coalBlock = (new Tile(173, Material::stone)) ->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_coal)->setDestroyTime(5.0f)->setExplodeable(10)->setSoundType(SOUND_STONE)->setIconName(L"coal_block")->setDescriptionId(IDS_TILE_COAL)->setUseDescriptionId(IDS_DESC_COAL_BLOCK); + Tile::woodStairsDark = (new StairTile(134, Tile::wood, TreeTile::DARK_TRUNK)); + Tile::woodStairsDark->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_sprucewood); + Tile::woodStairsDark->setIconName(L"stairsWoodSpruce"); + Tile::woodStairsDark->setDescriptionId(IDS_TILE_STAIRS_SPRUCEWOOD); + Tile::woodStairsDark->sendTileData(); + Tile::woodStairsDark->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::woodStairsBirch = (new StairTile(135, Tile::wood, TreeTile::BIRCH_TRUNK)); + Tile::woodStairsBirch->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_birchwood); + Tile::woodStairsBirch->setIconName(L"stairsWoodBirch"); + Tile::woodStairsBirch->setDescriptionId(IDS_TILE_STAIRS_BIRCHWOOD); + Tile::woodStairsBirch->sendTileData(); + Tile::woodStairsBirch->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::woodStairsJungle = (new StairTile(136, Tile::wood, TreeTile::JUNGLE_TRUNK)); + Tile::woodStairsJungle->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_junglewood); + Tile::woodStairsJungle->setIconName(L"stairsWoodJungle"); + Tile::woodStairsJungle->setDescriptionId(IDS_TILE_STAIRS_JUNGLEWOOD); + Tile::woodStairsJungle->sendTileData(); + Tile::woodStairsJungle->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::commandBlock = (new CommandBlock(137)); + Tile::commandBlock->setIndestructible(); + Tile::commandBlock->setExplodeable(6000000); + Tile::commandBlock->setIconName(L"command_block"); + Tile::commandBlock->setDescriptionId(IDS_TILE_COMMAND_BLOCK); + Tile::commandBlock->setUseDescriptionId(IDS_DESC_COMMAND_BLOCK); + + Tile::beacon = (BeaconTile *) (new BeaconTile(138)); + Tile::beacon->setLightEmission(1.0f); + Tile::beacon->setIconName(L"beacon"); + Tile::beacon->setDescriptionId(IDS_TILE_BEACON); + Tile::beacon->setUseDescriptionId(IDS_DESC_BEACON); + + Tile::cobbleWall = (new WallTile(139, Tile::stoneBrick)); + Tile::cobbleWall->setBaseItemTypeAndMaterial(Item::eBaseItemType_fence, Item::eMaterial_stone); + Tile::cobbleWall->setIconName(L"cobbleWall"); + Tile::cobbleWall->setDescriptionId(IDS_TILE_COBBLESTONE_WALL); + Tile::cobbleWall->setUseDescriptionId(IDS_DESC_COBBLESTONE_WALL); + + Tile::flowerPot = (new FlowerPotTile(140)); + Tile::flowerPot->setDestroyTime(0.0f); + Tile::flowerPot->setSoundType(SOUND_NORMAL); + Tile::flowerPot->setIconName(L"flower_pot"); + Tile::flowerPot->setDescriptionId(IDS_TILE_FLOWERPOT); + Tile::flowerPot->setUseDescriptionId(IDS_DESC_FLOWERPOT); + + Tile::carrots = (new CarrotTile(141)); + Tile::carrots->setIconName(L"carrots"); + Tile::carrots->setDescriptionId(IDS_TILE_CARROTS); + Tile::carrots->setUseDescriptionId(IDS_DESC_CARROTS); + Tile::carrots->disableMipmap(); + + Tile::potatoes = (new PotatoTile(142)); + Tile::potatoes->setIconName(L"potatoes"); + Tile::potatoes->setDescriptionId(IDS_TILE_POTATOES); + Tile::potatoes->setUseDescriptionId(IDS_DESC_POTATO); + Tile::potatoes->disableMipmap(); + + Tile::button_wood = (new WoodButtonTile(143)); + Tile::button_wood->setBaseItemTypeAndMaterial(Item::eBaseItemType_button, Item::eMaterial_wood); + Tile::button_wood->setDestroyTime(0.5f); + Tile::button_wood->setSoundType(Tile::SOUND_WOOD); + Tile::button_wood->setIconName(L"button"); + Tile::button_wood->setDescriptionId(IDS_TILE_BUTTON); + Tile::button_wood->sendTileData(); + Tile::button_wood->setUseDescriptionId(IDS_DESC_BUTTON); + + Tile::skull = (new SkullTile(144)); + Tile::skull->setDestroyTime(1.0f); + Tile::skull->setSoundType(SOUND_STONE); + Tile::skull->setIconName(L"skull"); + Tile::skull->setDescriptionId(IDS_TILE_SKULL); + Tile::skull->setUseDescriptionId(IDS_DESC_SKULL); + + Tile::anvil = (new AnvilTile(145)); + Tile::anvil->setBaseItemTypeAndMaterial(Item::eBaseItemType_device, Item::eMaterial_iron); + Tile::anvil->setDestroyTime(5.0f); + Tile::anvil->setSoundType(SOUND_ANVIL); + Tile::anvil->setExplodeable(2000); + Tile::anvil->setIconName(L"anvil"); + Tile::anvil->sendTileData(); + Tile::anvil->setDescriptionId(IDS_TILE_ANVIL); + Tile::anvil->setUseDescriptionId(IDS_DESC_ANVIL); + + Tile::chest_trap = (new ChestTile(146, ChestTile::TYPE_TRAP)); + Tile::chest_trap->setBaseItemTypeAndMaterial(Item::eBaseItemType_chest, Item::eMaterial_trap); + Tile::chest_trap->setDestroyTime(2.5f); + Tile::chest_trap->setSoundType(SOUND_WOOD); + Tile::chest_trap->setDescriptionId(IDS_TILE_CHEST_TRAP); + Tile::chest_trap->setUseDescriptionId(IDS_DESC_CHEST_TRAP); + + Tile::weightedPlate_light = (new WeightedPressurePlateTile(147, L"gold_block", Material::metal, Redstone::SIGNAL_MAX)); + Tile::weightedPlate_light->setBaseItemTypeAndMaterial(Item::eBaseItemType_pressureplate, Item::eMaterial_gold); + Tile::weightedPlate_light->setDestroyTime(0.5f); + Tile::weightedPlate_light->setSoundType(SOUND_WOOD); + Tile::weightedPlate_light->setDescriptionId(IDS_TILE_WEIGHTED_PLATE_LIGHT); + Tile::weightedPlate_light->setUseDescriptionId(IDS_DESC_WEIGHTED_PLATE_LIGHT); + + Tile::weightedPlate_heavy = (new WeightedPressurePlateTile(148, L"iron_block", Material::metal, Redstone::SIGNAL_MAX * 10)); + Tile::weightedPlate_heavy->setBaseItemTypeAndMaterial(Item::eBaseItemType_pressureplate, Item::eMaterial_iron); + Tile::weightedPlate_heavy->setDestroyTime(0.5f); + Tile::weightedPlate_heavy->setSoundType(SOUND_WOOD); + Tile::weightedPlate_heavy->setDescriptionId(IDS_TILE_WEIGHTED_PLATE_HEAVY); + Tile::weightedPlate_heavy->setUseDescriptionId(IDS_DESC_WEIGHTED_PLATE_HEAVY); + + Tile::comparator_off = (ComparatorTile *) (new ComparatorTile(149, false)); + Tile::comparator_off->setDestroyTime(0.0f); + Tile::comparator_off->setSoundType(SOUND_WOOD); + Tile::comparator_off->setIconName(L"comparator_off"); + Tile::comparator_off->setDescriptionId(IDS_TILE_COMPARATOR); + Tile::comparator_off->setUseDescriptionId(IDS_DESC_COMPARATOR); + + Tile::comparator_on = (ComparatorTile *) (new ComparatorTile(150, true)); + Tile::comparator_on->setDestroyTime(0.0f); + Tile::comparator_on->setLightEmission(10 / 16.0f); + Tile::comparator_on->setSoundType(SOUND_WOOD); + Tile::comparator_on->setIconName(L"comparator_on"); + Tile::comparator_on->setDescriptionId(IDS_TILE_COMPARATOR); + Tile::comparator_on->setUseDescriptionId(IDS_DESC_COMPARATOR); + + Tile::daylightDetector = (DaylightDetectorTile *) (new DaylightDetectorTile(151)); + Tile::daylightDetector->setDestroyTime(0.2f); + Tile::daylightDetector->setSoundType(SOUND_WOOD); + Tile::daylightDetector->setIconName(L"daylight_detector"); + Tile::daylightDetector->setDescriptionId(IDS_TILE_DAYLIGHT_DETECTOR); + Tile::daylightDetector->setUseDescriptionId(IDS_DESC_DAYLIGHT_DETECTOR); + + Tile::redstoneBlock = (new PoweredMetalTile(152)); + Tile::redstoneBlock->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_redstone); + Tile::redstoneBlock->setDestroyTime(5.0f); + Tile::redstoneBlock->setExplodeable(10); + Tile::redstoneBlock->setSoundType(SOUND_METAL); + Tile::redstoneBlock->setIconName(L"redstone_block"); + Tile::redstoneBlock->setDescriptionId(IDS_TILE_REDSTONE_BLOCK); + Tile::redstoneBlock->setUseDescriptionId(IDS_DESC_REDSTONE_BLOCK); + + Tile::netherQuartz = (new OreTile(153)); + Tile::netherQuartz->setDestroyTime(3.0f); + Tile::netherQuartz->setExplodeable(5); + Tile::netherQuartz->setSoundType(SOUND_STONE); + Tile::netherQuartz->setIconName(L"quartz_ore"); + Tile::netherQuartz->setDescriptionId(IDS_TILE_NETHER_QUARTZ); + Tile::netherQuartz->setUseDescriptionId(IDS_DESC_NETHER_QUARTZ_ORE); + + Tile::hopper = (HopperTile *)(new HopperTile(154)); + Tile::hopper->setBaseItemTypeAndMaterial(Item::eBaseItemType_redstoneContainer, Item::eMaterial_undefined); + Tile::hopper->setDestroyTime(3.0f); + Tile::hopper->setExplodeable(8); + Tile::hopper->setSoundType(SOUND_WOOD); + Tile::hopper->setIconName(L"hopper"); + Tile::hopper->setDescriptionId(IDS_TILE_HOPPER); + Tile::hopper->setUseDescriptionId(IDS_DESC_HOPPER); + + Tile::quartzBlock = (new QuartzBlockTile(155)); + Tile::quartzBlock->setBaseItemTypeAndMaterial(Item::eBaseItemType_structblock, Item::eMaterial_quartz); + Tile::quartzBlock->setSoundType(SOUND_STONE); + Tile::quartzBlock->setDestroyTime(0.8f); + Tile::quartzBlock->setIconName(L"quartz_block"); + Tile::quartzBlock->setDescriptionId(IDS_TILE_QUARTZ_BLOCK); + Tile::quartzBlock->setUseDescriptionId(IDS_DESC_QUARTZ_BLOCK); + + Tile::stairs_quartz = (new StairTile(156, Tile::quartzBlock, QuartzBlockTile::TYPE_DEFAULT)); + Tile::stairs_quartz->setBaseItemTypeAndMaterial(Item::eBaseItemType_stairs, Item::eMaterial_quartz); + Tile::stairs_quartz->setIconName(L"stairsQuartz"); + Tile::stairs_quartz->setDescriptionId(IDS_TILE_STAIRS_QUARTZ); + Tile::stairs_quartz->setUseDescriptionId(IDS_DESC_STAIRS); + + Tile::activatorRail = (new PoweredRailTile(157)); + Tile::activatorRail->setDestroyTime(0.7f); + Tile::activatorRail->setSoundType(SOUND_METAL); + Tile::activatorRail->setIconName(L"rail_activator"); + Tile::activatorRail->setDescriptionId(IDS_TILE_ACTIVATOR_RAIL); + Tile::activatorRail->setUseDescriptionId(IDS_DESC_ACTIVATOR_RAIL); + + Tile::dropper = (new DropperTile(158)); + Tile::dropper->setBaseItemTypeAndMaterial(Item::eBaseItemType_redstoneContainer, Item::eMaterial_undefined); + Tile::dropper->setDestroyTime(3.5f); + Tile::dropper->setSoundType(SOUND_STONE); + Tile::dropper->setIconName(L"dropper"); + Tile::dropper->setDescriptionId(IDS_TILE_DROPPER); + Tile::dropper->setUseDescriptionId(IDS_DESC_DROPPER); + + Tile::clayHardened_colored = (new ColoredTile(159, Material::stone)); + Tile::clayHardened_colored->setBaseItemTypeAndMaterial(Item::eBaseItemType_clay, Item::eMaterial_clay); + Tile::clayHardened_colored->setDestroyTime(1.25f); + Tile::clayHardened_colored->setExplodeable(7); + Tile::clayHardened_colored->setSoundType(SOUND_STONE); + Tile::clayHardened_colored->setIconName(L"hardened_clay_stained"); + Tile::clayHardened_colored->setDescriptionId(IDS_TILE_STAINED_CLAY); + Tile::clayHardened_colored->setUseDescriptionId(IDS_DESC_STAINED_CLAY); + + Tile::stained_glass_pane = (new StainedGlassPaneBlock(160)); + Tile::stained_glass_pane->setBaseItemTypeAndMaterial(Item::eBaseItemType_glass, Item::eMaterial_glass); + Tile::stained_glass_pane->setDestroyTime(0.3f); + Tile::stained_glass_pane->setSoundType(SOUND_GLASS); + Tile::stained_glass_pane->setIconName(L"glass"); + Tile::stained_glass_pane->setDescriptionId(IDS_TILE_STAINED_GLASS_PANE); + Tile::stained_glass_pane->setUseDescriptionId(IDS_DESC_STAINED_GLASS_PANE); + + Tile::hayBlock = (new HayBlockTile(170)); + Tile::hayBlock->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_wheat); + Tile::hayBlock->setDestroyTime(0.5f); + Tile::hayBlock->setSoundType(SOUND_GRASS); + Tile::hayBlock->setIconName(L"hay_block"); + Tile::hayBlock->setDescriptionId(IDS_TILE_HAY); + Tile::hayBlock->setUseDescriptionId(IDS_DESC_HAY); + + Tile::woolCarpet = (new WoolCarpetTile(171)); + Tile::woolCarpet->setBaseItemTypeAndMaterial(Item::eBaseItemType_carpet, Item::eMaterial_cloth); + Tile::woolCarpet->setDestroyTime(0.1f); + Tile::woolCarpet->setSoundType(SOUND_CLOTH); + Tile::woolCarpet->setIconName(L"woolCarpet"); + Tile::woolCarpet->setLightBlock(0); + Tile::woolCarpet->setDescriptionId(IDS_TILE_CARPET); + Tile::woolCarpet->setUseDescriptionId(IDS_DESC_CARPET); + + Tile::clayHardened = (new Tile(172, Material::stone)); + Tile::clayHardened->setBaseItemTypeAndMaterial(Item::eBaseItemType_clay, Item::eMaterial_clay); + Tile::clayHardened->setDestroyTime(1.25f); + Tile::clayHardened->setExplodeable(7); + Tile::clayHardened->setSoundType(SOUND_STONE); + Tile::clayHardened->setIconName(L"hardened_clay"); + Tile::clayHardened->setDescriptionId(IDS_TILE_HARDENED_CLAY); + Tile::clayHardened->setUseDescriptionId(IDS_DESC_HARDENED_CLAY); + + Tile::coalBlock = (new Tile(173, Material::stone)); + Tile::coalBlock->setBaseItemTypeAndMaterial(Item::eBaseItemType_block, Item::eMaterial_coal); + Tile::coalBlock->setDestroyTime(5.0f); + Tile::coalBlock->setExplodeable(10); + Tile::coalBlock->setSoundType(SOUND_STONE); + Tile::coalBlock->setIconName(L"coal_block"); + Tile::coalBlock->setDescriptionId(IDS_TILE_COAL); + Tile::coalBlock->setUseDescriptionId(IDS_DESC_COAL_BLOCK); // Special cases for certain items since they can have different icons - Item::items[wool_Id] = ( new WoolTileItem(Tile::wool_Id- 256) )->setIconName(L"cloth")->setDescriptionId(IDS_TILE_CLOTH)->setUseDescriptionId(IDS_DESC_WOOL); - Item::items[clayHardened_colored_Id]= ( new WoolTileItem(Tile::clayHardened_colored_Id - 256))->setIconName(L"clayHardenedStained")->setDescriptionId(IDS_TILE_STAINED_CLAY)->setUseDescriptionId(IDS_DESC_STAINED_CLAY); - Item::items[stained_glass_Id] = ( new WoolTileItem(Tile::stained_glass_Id - 256))->setIconName(L"stainedGlass")->setDescriptionId(IDS_TILE_STAINED_GLASS)->setUseDescriptionId(IDS_DESC_STAINED_GLASS); - Item::items[stained_glass_pane_Id] = ( new WoolTileItem(Tile::stained_glass_pane_Id - 256))->setIconName(L"stainedGlassPane")->setDescriptionId(IDS_TILE_STAINED_GLASS_PANE)->setUseDescriptionId(IDS_DESC_STAINED_GLASS_PANE); - Item::items[woolCarpet_Id] = ( new WoolTileItem(Tile::woolCarpet_Id - 256))->setIconName(L"woolCarpet")->setDescriptionId(IDS_TILE_CARPET)->setUseDescriptionId(IDS_DESC_CARPET); - Item::items[treeTrunk_Id] = ( new MultiTextureTileItem(Tile::treeTrunk_Id - 256, treeTrunk, (int *)TreeTile::TREE_NAMES, 4) )->setIconName(L"log")->setDescriptionId(IDS_TILE_LOG)->setUseDescriptionId(IDS_DESC_LOG); - Item::items[wood_Id] = ( new MultiTextureTileItem(Tile::wood_Id - 256, Tile::wood, (int *)WoodTile::WOOD_NAMES, 4, IDS_TILE_PLANKS))->setIconName(L"wood")->setDescriptionId(IDS_TILE_OAKWOOD_PLANKS)->setUseDescriptionId(IDS_DESC_LOG); // <- TODO - Item::items[monsterStoneEgg_Id] = ( new MultiTextureTileItem(Tile::monsterStoneEgg_Id - 256, monsterStoneEgg, (int *)StoneMonsterTile::STONE_MONSTER_NAMES, 3))->setIconName(L"monsterStoneEgg")->setDescriptionId(IDS_TILE_STONE_SILVERFISH)->setUseDescriptionId(IDS_DESC_STONE_SILVERFISH); // 4J - Brought forward from post-1.2 to fix stacking problem - Item::items[stoneBrick_Id] = ( new MultiTextureTileItem(Tile::stoneBrick_Id - 256, stoneBrick,(int *)SmoothStoneBrickTile::SMOOTH_STONE_BRICK_NAMES, 4))->setIconName(L"stonebricksmooth")->setDescriptionId(IDS_TILE_STONE_BRICK_SMOOTH); - Item::items[sandStone_Id] = ( new MultiTextureTileItem(sandStone_Id - 256, sandStone, SandStoneTile::SANDSTONE_NAMES, SandStoneTile::SANDSTONE_BLOCK_NAMES) )->setIconName(L"sandStone")->setDescriptionId(IDS_TILE_SANDSTONE)->setUseDescriptionId(IDS_DESC_SANDSTONE); - Item::items[quartzBlock_Id] = ( new MultiTextureTileItem(quartzBlock_Id - 256, quartzBlock, QuartzBlockTile::BLOCK_NAMES, QuartzBlockTile::QUARTZ_BLOCK_NAMES) )->setIconName(L"quartzBlock")->setDescriptionId(IDS_TILE_QUARTZ_BLOCK)->setUseDescriptionId(IDS_DESC_QUARTZ_BLOCK); - Item::items[stoneSlabHalf_Id] = ( new StoneSlabTileItem(Tile::stoneSlabHalf_Id - 256, Tile::stoneSlabHalf, Tile::stoneSlab, false) )->setIconName(L"stoneSlab")->setDescriptionId(IDS_TILE_STONESLAB)->setUseDescriptionId(IDS_DESC_HALFSLAB); - Item::items[stoneSlab_Id] = ( new StoneSlabTileItem(Tile::stoneSlab_Id - 256, Tile::stoneSlabHalf, Tile::stoneSlab, true))->setIconName(L"stoneSlab")->setDescriptionId(IDS_DESC_STONESLAB)->setUseDescriptionId(IDS_DESC_SLAB); - Item::items[woodSlabHalf_Id] = ( new StoneSlabTileItem(Tile::woodSlabHalf_Id - 256, Tile::woodSlabHalf, Tile::woodSlab, false))->setIconName(L"woodSlab")->setDescriptionId(IDS_DESC_WOODSLAB)->setUseDescriptionId(IDS_DESC_WOODSLAB); - Item::items[woodSlab_Id] = ( new StoneSlabTileItem(Tile::woodSlab_Id - 256, Tile::woodSlabHalf, Tile::woodSlab, true))->setIconName(L"woodSlab")->setDescriptionId(IDS_DESC_WOODSLAB)->setUseDescriptionId(IDS_DESC_WOODSLAB); - Item::items[sapling_Id] = ( new MultiTextureTileItem(Tile::sapling_Id - 256, Tile::sapling, Sapling::SAPLING_NAMES, 4) )->setIconName(L"sapling")->setDescriptionId(IDS_TILE_SAPLING)->setUseDescriptionId(IDS_DESC_SAPLING); - Item::items[leaves_Id] = ( new LeafTileItem(Tile::leaves_Id - 256) )->setIconName(L"leaves")->setDescriptionId(IDS_TILE_LEAVES)->setUseDescriptionId(IDS_DESC_LEAVES); - Item::items[vine_Id] = ( new ColoredTileItem(Tile::vine_Id - 256, false))->setDescriptionId(IDS_TILE_VINE)->setUseDescriptionId(IDS_DESC_VINE); + Item::items[wool_Id] = ( new WoolTileItem(Tile::wool_Id- 256) ); + Item::items[wool_Id]->setIconName(L"cloth"); + Item::items[wool_Id]->setDescriptionId(IDS_TILE_CLOTH); + Item::items[wool_Id]->setUseDescriptionId(IDS_DESC_WOOL); + + Item::items[clayHardened_colored_Id] = ( new WoolTileItem(Tile::clayHardened_colored_Id - 256)); + Item::items[clayHardened_colored_Id]->setIconName(L"clayHardenedStained"); + Item::items[clayHardened_colored_Id]->setDescriptionId(IDS_TILE_STAINED_CLAY); + Item::items[clayHardened_colored_Id]->setUseDescriptionId(IDS_DESC_STAINED_CLAY); + + Item::items[stained_glass_Id] = ( new WoolTileItem(Tile::stained_glass_Id - 256)); + Item::items[stained_glass_Id]->setIconName(L"stainedGlass"); + Item::items[stained_glass_Id]->setDescriptionId(IDS_TILE_STAINED_GLASS); + Item::items[stained_glass_Id]->setUseDescriptionId(IDS_DESC_STAINED_GLASS); + + Item::items[stained_glass_pane_Id] = ( new WoolTileItem(Tile::stained_glass_pane_Id - 256)); + Item::items[stained_glass_pane_Id]->setIconName(L"stainedGlassPane"); + Item::items[stained_glass_pane_Id]->setDescriptionId(IDS_TILE_STAINED_GLASS_PANE); + Item::items[stained_glass_pane_Id]->setUseDescriptionId(IDS_DESC_STAINED_GLASS_PANE); + + Item::items[woolCarpet_Id] = ( new WoolTileItem(Tile::woolCarpet_Id - 256)); + Item::items[woolCarpet_Id]->setIconName(L"woolCarpet"); + Item::items[woolCarpet_Id]->setDescriptionId(IDS_TILE_CARPET); + Item::items[woolCarpet_Id]->setUseDescriptionId(IDS_DESC_CARPET); + + Item::items[treeTrunk_Id] = ( new MultiTextureTileItem(Tile::treeTrunk_Id - 256, treeTrunk, (int *)TreeTile::TREE_NAMES, 4) ); + Item::items[treeTrunk_Id]->setIconName(L"log"); + Item::items[treeTrunk_Id]->setDescriptionId(IDS_TILE_LOG); + Item::items[treeTrunk_Id]->setUseDescriptionId(IDS_DESC_LOG); + + Item::items[wood_Id] = ( new MultiTextureTileItem(Tile::wood_Id - 256, Tile::wood, (int *)WoodTile::WOOD_NAMES, 4, IDS_TILE_PLANKS)); + Item::items[wood_Id]->setIconName(L"wood"); + Item::items[wood_Id]->setDescriptionId(IDS_TILE_OAKWOOD_PLANKS); + Item::items[wood_Id]->setUseDescriptionId(IDS_DESC_LOG); + + Item::items[monsterStoneEgg_Id] = ( new MultiTextureTileItem(Tile::monsterStoneEgg_Id - 256, monsterStoneEgg, (int *)StoneMonsterTile::STONE_MONSTER_NAMES, 3)); + Item::items[monsterStoneEgg_Id]->setIconName(L"monsterStoneEgg"); + Item::items[monsterStoneEgg_Id]->setDescriptionId(IDS_TILE_STONE_SILVERFISH); + Item::items[monsterStoneEgg_Id]->setUseDescriptionId(IDS_DESC_STONE_SILVERFISH); + + Item::items[stoneBrick_Id] = ( new MultiTextureTileItem(Tile::stoneBrick_Id - 256, stoneBrick,(int *)SmoothStoneBrickTile::SMOOTH_STONE_BRICK_NAMES, 4)); + Item::items[stoneBrick_Id]->setIconName(L"stonebricksmooth"); + Item::items[stoneBrick_Id]->setDescriptionId(IDS_TILE_STONE_BRICK_SMOOTH); + + Item::items[sandStone_Id] = ( new MultiTextureTileItem(sandStone_Id - 256, sandStone, SandStoneTile::SANDSTONE_NAMES, SandStoneTile::SANDSTONE_BLOCK_NAMES) ); + Item::items[sandStone_Id]->setIconName(L"sandStone"); + Item::items[sandStone_Id]->setDescriptionId(IDS_TILE_SANDSTONE); + Item::items[sandStone_Id]->setUseDescriptionId(IDS_DESC_SANDSTONE); + + Item::items[quartzBlock_Id] = ( new MultiTextureTileItem(quartzBlock_Id - 256, quartzBlock, QuartzBlockTile::BLOCK_NAMES, QuartzBlockTile::QUARTZ_BLOCK_NAMES) ); + Item::items[quartzBlock_Id]->setIconName(L"quartzBlock"); + Item::items[quartzBlock_Id]->setDescriptionId(IDS_TILE_QUARTZ_BLOCK); + Item::items[quartzBlock_Id]->setUseDescriptionId(IDS_DESC_QUARTZ_BLOCK); + + Item::items[stoneSlabHalf_Id] = ( new StoneSlabTileItem(Tile::stoneSlabHalf_Id - 256, Tile::stoneSlabHalf, Tile::stoneSlab, false) ); + Item::items[stoneSlabHalf_Id]->setIconName(L"stoneSlab"); + Item::items[stoneSlabHalf_Id]->setDescriptionId(IDS_TILE_STONESLAB); + Item::items[stoneSlabHalf_Id]->setUseDescriptionId(IDS_DESC_HALFSLAB); + + Item::items[stoneSlab_Id] = ( new StoneSlabTileItem(Tile::stoneSlab_Id - 256, Tile::stoneSlabHalf, Tile::stoneSlab, true)); + Item::items[stoneSlab_Id]->setIconName(L"stoneSlab"); + Item::items[stoneSlab_Id]->setDescriptionId(IDS_DESC_STONESLAB); + Item::items[stoneSlab_Id]->setUseDescriptionId(IDS_DESC_SLAB); + + Item::items[woodSlabHalf_Id] = ( new StoneSlabTileItem(Tile::woodSlabHalf_Id - 256, Tile::woodSlabHalf, Tile::woodSlab, false)); + Item::items[woodSlabHalf_Id]->setIconName(L"woodSlab"); + Item::items[woodSlabHalf_Id]->setDescriptionId(IDS_DESC_WOODSLAB); + Item::items[woodSlabHalf_Id]->setUseDescriptionId(IDS_DESC_WOODSLAB); + + Item::items[woodSlab_Id] = ( new StoneSlabTileItem(Tile::woodSlab_Id - 256, Tile::woodSlabHalf, Tile::woodSlab, true)); + Item::items[woodSlab_Id]->setIconName(L"woodSlab"); + Item::items[woodSlab_Id]->setDescriptionId(IDS_DESC_WOODSLAB); + Item::items[woodSlab_Id]->setUseDescriptionId(IDS_DESC_WOODSLAB); + + Item::items[sapling_Id] = ( new MultiTextureTileItem(Tile::sapling_Id - 256, Tile::sapling, Sapling::SAPLING_NAMES, 4) ); + Item::items[sapling_Id]->setIconName(L"sapling"); + Item::items[sapling_Id]->setDescriptionId(IDS_TILE_SAPLING); + Item::items[sapling_Id]->setUseDescriptionId(IDS_DESC_SAPLING); + + Item::items[leaves_Id] = ( new LeafTileItem(Tile::leaves_Id - 256) ); + Item::items[leaves_Id]->setIconName(L"leaves"); + Item::items[leaves_Id]->setDescriptionId(IDS_TILE_LEAVES); + Item::items[leaves_Id]->setUseDescriptionId(IDS_DESC_LEAVES); + + Item::items[vine_Id] = ( new ColoredTileItem(Tile::vine_Id - 256, false)); + Item::items[vine_Id]->setDescriptionId(IDS_TILE_VINE); + Item::items[vine_Id]->setUseDescriptionId(IDS_DESC_VINE); int idsData[3] = {IDS_TILE_SHRUB, IDS_TILE_TALL_GRASS, IDS_TILE_FERN}; intArray ids = intArray(idsData, 3); Item::items[tallgrass_Id] = ( (ColoredTileItem *)(new ColoredTileItem(Tile::tallgrass_Id - 256, true))->setDescriptionId(IDS_TILE_TALL_GRASS))->setDescriptionPostfixes(ids); diff --git a/MinecraftConsoles.sln b/MinecraftConsoles.sln index 13f786ce..d48afb24 100644 --- a/MinecraftConsoles.sln +++ b/MinecraftConsoles.sln @@ -76,8 +76,8 @@ Global {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|PS3 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.ActiveCfg = Debug|ORBIS {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.Build.0 = Debug|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|PS3 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|Xbox 360 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.ActiveCfg = Debug|Win32 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64 @@ -128,8 +128,8 @@ Global {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|PS3 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.ActiveCfg = Debug|ORBIS {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.Build.0 = Debug|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|PS3 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|Xbox 360 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.ActiveCfg = Debug|Win32 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64 From 961a1b8f31f6fc96537081d329ed402c5b1d42f7 Mon Sep 17 00:00:00 2001 From: qloak Date: Fri, 31 Jul 2026 15:36:02 -0700 Subject: [PATCH 13/13] whoops :o --- MinecraftConsoles.sln | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MinecraftConsoles.sln b/MinecraftConsoles.sln index d48afb24..13f786ce 100644 --- a/MinecraftConsoles.sln +++ b/MinecraftConsoles.sln @@ -76,8 +76,8 @@ Global {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Durango.ActiveCfg = Debug|PS3 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.ActiveCfg = Debug|ORBIS {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|ORBIS.Build.0 = Debug|ORBIS - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|Xbox 360 - {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|Xbox 360 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.ActiveCfg = Debug|PS3 + {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PS3.Build.0 = Debug|PS3 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|PSVita.ActiveCfg = Debug|Win32 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.ActiveCfg = Debug|x64 {F046C3CE-9749-4823-B32B-D9CC10B1A2C8}.Debug|Windows64.Build.0 = Debug|x64 @@ -128,8 +128,8 @@ Global {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Durango.ActiveCfg = Debug|PS3 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.ActiveCfg = Debug|ORBIS {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|ORBIS.Build.0 = Debug|ORBIS - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|Xbox 360 - {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|Xbox 360 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.ActiveCfg = Debug|PS3 + {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PS3.Build.0 = Debug|PS3 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|PSVita.ActiveCfg = Debug|Win32 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.ActiveCfg = Debug|x64 {1B9A8C38-DD48-448C-AA24-E1A35E0089A3}.Debug|Windows64.Build.0 = Debug|x64