diff --git a/.github/scripts/steps/build/1_get_info.ps1 b/.github/scripts/steps/build/1_get_info.ps1 new file mode 100644 index 0000000..3a8e58e --- /dev/null +++ b/.github/scripts/steps/build/1_get_info.ps1 @@ -0,0 +1,41 @@ +# 获取Git信息 + +$GIT_BRANCH = $env:GITHUB_REF -replace "refs/heads/", "" +$VERSION_REGEXP = "^v?\d+\.\d+\.\d+(\.\d+)?(-pre)?$" +$VERSION_RELEASE_REGEXP = "^v?\d+\.\d+\.\d+(\.\d+)?$" +$VERSION_PRE_REGEXP = "^v?\d+\.\d+\.\d+(\.\d+)?-pre$" +echo "VERSION_REGEXP=$VERSION_REGEXP" >> $env:GITHUB_ENV +echo "VERSION_RELEASE_REGEXP=$VERSION_RELEASE_REGEXP" >> $env:GITHUB_ENV +echo "VERSION_PRE_REGEXP=$VERSION_PRE_REGEXP" >> $env:GITHUB_ENV +$GIT_BRANCH = $env:GITHUB_REF -replace "refs/heads/", "" +echo "GIT_BRANCH=$GIT_BRANCH" >> $env:GITHUB_ENV +echo "Current Branch: $GIT_BRANCH" + +$SHORT_SHA = ${env:GITHUB_SHA}.Substring(0, 7) +echo "SHORT_SHA=$SHORT_SHA" >> $env:GITHUB_ENV +echo "Current commit hash id: ${env:GITHUB_SHA} ($SHORT_SHA)" + +$GIT_TAG_RELEASE_VERSION = git tag -l | where { $_ -match $VERSION_RELEASE_REGEXP } | sort -Descending -Top 1 +$preTagList = $( git tag -l | where { $_ -match $VERSION_PRE_REGEXP } ) +for($i = 0; $i -lt $preTagList.Length; $i++) { + $preTagList[$i] = $preTagList[$i].Replace("-pre", "").Replace("v", "") +} +$GIT_TAG_PRE_VERSION = $preTagList | sort -Property { [version]$_ } -Descending -Top 1 + +$GIT_TAG_PRE_LATEST = "v${GIT_TAG_PRE_VERSION}-pre" +$GIT_TAG_RELEASE_LATEST = $GIT_TAG_RELEASE_VERSION +$GIT_TAG_RELEASE_VERSION = $GIT_TAG_RELEASE_VERSION.Replace("v", "") +if ($GIT_TAG_PRE_VERSION -eq $GIT_TAG_RELEASE_VERSION) +{ + $GIT_TAG_LATEST = $GIT_TAG_RELEASE_VERSION +} +else +{ + $GIT_TAG_LATEST = @("v${GIT_TAG_RELEASE_VERSION}", "v${GIT_TAG_PRE_VERSION}-pre") | sort -Descending -Top 1 +} +echo "GIT_TAG_PRE_LATEST=$GIT_TAG_PRE_LATEST" >> $env:GITHUB_ENV +echo "GIT_TAG_RELEASE_LATEST=$GIT_TAG_RELEASE_LATEST" >> $env:GITHUB_ENV +echo "GIT_TAG_LATEST=$GIT_TAG_LATEST" >> $env:GITHUB_ENV +echo "Latest Tag: $GIT_TAG_LATEST" + +echo "::set-output name=git-branch::$GIT_BRANCH" diff --git a/.github/scripts/steps/build/2_configuration.ps1 b/.github/scripts/steps/build/2_configuration.ps1 new file mode 100644 index 0000000..a728e66 --- /dev/null +++ b/.github/scripts/steps/build/2_configuration.ps1 @@ -0,0 +1,14 @@ +# 配置构建信息 + +$BUILD_PATH = "$pwd\build" +$PUBLISH_PATH = "$BUILD_PATH\publish" +echo "BUILD_PATH=$BUILD_PATH" >> $Env:GITHUB_ENV +echo "PUBLISH_PATH=$PUBLISH_PATH" >> $Env:GITHUB_ENV + +$BUILD_VERSION = (cat .\versioninfo.json | jq -r ".StringFileInfo.ProductVersion") +echo "BUILD_VERSION=$BUILD_VERSION" >> $Env:GITHUB_ENV +echo "Build Version: v$BUILD_VERSION" +$GIT_TAG = "v$BUILD_VERSION$( ${env:GIT_BRANCH} -ne 'release' ? '-pre' : '' )" +echo "GIT_TAG=$GIT_TAG" >> $Env:GITHUB_ENV +echo "Current Tag: $GIT_TAG" +echo "::set-output name=git-tag::$GIT_TAG" diff --git a/.github/scripts/steps/build/3_checks.ps1 b/.github/scripts/steps/build/3_checks.ps1 new file mode 100644 index 0000000..a9f317f --- /dev/null +++ b/.github/scripts/steps/build/3_checks.ps1 @@ -0,0 +1,73 @@ +# 构建前检查 + +$NOT_PASSED = 0 +echo "Build Version: v${Env:BUILD_VERSION}`nCurrent Tag: ${Env:GIT_TAG}" +echo "Latest Tag: ${Env:GIT_TAG_LATEST}`nLatest Release Tag: ${Env:GIT_TAG_RELEASE_LATEST}`nLatest Pre Tag: ${Env:GIT_TAG_PRE_LATEST}" + +if (!(${Env:GIT_TAG} -match ${Env:VERSION_REGEXP}) -or ${Env:GIT_TAG} -eq "") +{ + $NOT_PASSED = 1 + echo "::error file=scripts/steps/build/3_checks.ps1,line=10,col=1::Cannot get the version information or it's incorrect." +} +if ($NOT_PASSED -eq 0) +{ + $INTERNAL_VERSION_REGEXP = "^(\d+\.\d+\.\d+)(\.\d+)?$" + $fileVersion = (cat .\versioninfo.json | jq -r ".FixedFileInfo.FileVersion") + $fileVersion = (echo $fileVersion | jq -r ".Major, .Minor, .Patch, .Build") -join "." + $tmpVer = [regex]::Match($fileVersion, $INTERNAL_VERSION_REGEXP) + if (!$tmpVer.success) + { + $NOT_PASSED = 1 + } + else + { + $fileVersion = $tmpVer.Groups[1].Value + if ($tmpVer.Groups[2].Value -ne ".0") + { + $fileVersion += $tmpVer.Groups[2].Value + } + } + + if ($NOT_PASSED -eq 0) + { + $productVersion = (cat .\versioninfo.json | jq -r ".FixedFileInfo.ProductVersion") + $productVersion = (echo $productVersion | jq -r ".Major, .Minor, .Patch, .Build") -join "." + $tmpVer = [regex]::Match($productVersion, $INTERNAL_VERSION_REGEXP) + if (!$tmpVer.success) + { + $NOT_PASSED = 1 + } + else + { + $productVersion = $tmpVer.Groups[1].Value + if ($tmpVer.Groups[2].Value -ne ".0") + { + $productVersion += $tmpVer.Groups[2].Value + } + } + } +} + +if (($NOT_PASSED -eq 0) -and (($productVersion -ne $fileVersion) -or (${Env:BUILD_VERSION} -ne $productVersion))) +{ + $NOT_PASSED = 1 + echo "::error file=scripts/steps/build/3_checks.ps1,line=54,col=1::The version information has some differences.`nPlease check `"versioninfo.json`"" +} +(git tag -l | where { $_ -eq "v0.1.3.21-pre" }).Count + +if (($NOT_PASSED -eq 0) -and (((git tag -l | where { $_ -eq ${Env:GIT_TAG} }).Count) -gt 0 -or + (${Env:GIT_TAG_RELEASE_LATEST} -ne "" -and ${Env:GIT_TAG} -eq ${Env:GIT_TAG_RELEASE_LATEST}) -or + (${Env:GIT_TAG_PRE_LATEST} -ne "" -and ${Env:GIT_TAG} -eq ${Env:GIT_TAG_PRE_LATEST}) -or + (${Env:GIT_TAG_LATEST} -ne "" -and (${Env:GIT_TAG}.replace("-pre", "") -lt ${Env:GIT_TAG_LATEST}.replace("-pre", "") -or + (${Env:GIT_TAG}.replace("-pre", "") -eq ${Env:GIT_TAG_LATEST}.replace("-pre", "") -and + (${Env:GIT_TAG}.contains("-pre") -or !${Env:GIT_TAG_LATEST}.contains("-pre")))) + ))) +{ + $NOT_PASSED = 1 + echo "::error file=scripts/steps/build/3_checks.ps1,line=67,col=1::A newer or the current version already exists." +} +if ($NOT_PASSED -ne 0) +{ + echo "::error file=scripts/steps/build/3_checks.ps1,line=71,col=1::Check the version information is not passed." + exit 1 +} diff --git a/.github/scripts/steps/build/4_prepare_pre.ps1 b/.github/scripts/steps/build/4_prepare_pre.ps1 new file mode 100644 index 0000000..8db3c17 --- /dev/null +++ b/.github/scripts/steps/build/4_prepare_pre.ps1 @@ -0,0 +1,11 @@ +# 准备发布PreRelease文件 + +cd $env:BUILD_PATH +mkdir -Force $env:PUBLISH_PATH +$BUILD_X64_FILENAME = "Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_x64.exe" +$BUILD_X86_FILENAME = "Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_x86.exe" +echo "BUILD_X64_FILENAME=$BUILD_X64_FILENAME" >> $env:GITHUB_ENV +echo "BUILD_X86_FILENAME=$BUILD_X86_FILENAME" >> $env:GITHUB_ENV +cp .\Clash.Mini_*.exe $env:PUBLISH_PATH\ +echo "Ready to upload the following file(s):" +ls $env:PUBLISH_PATH diff --git a/.github/scripts/steps/build/4_prepare_upload_dev.ps1 b/.github/scripts/steps/build/4_prepare_upload_dev.ps1 new file mode 100644 index 0000000..412391b --- /dev/null +++ b/.github/scripts/steps/build/4_prepare_upload_dev.ps1 @@ -0,0 +1,16 @@ +# 准备上传Artifact文件 + +cd $env:BUILD_PATH +mkdir -Force $env:PUBLISH_PATH +$BUILD_X64_FILENAME = "Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_${env:SHORT_SHA}_x64.exe" +$BUILD_X86_FILENAME = "Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_${env:SHORT_SHA}_x86.exe" +echo "BUILD_X64_FILENAME=$BUILD_X64_FILENAME" >> $env:GITHUB_ENV +echo "BUILD_X86_FILENAME=$BUILD_X86_FILENAME" >> $env:GITHUB_ENV +cp .\Clash.Mini_dev_x64.exe $env:PUBLISH_PATH\$BUILD_X64_FILENAME +cp .\Clash.Mini_dev_x86.exe $env:PUBLISH_PATH\$BUILD_X86_FILENAME + +echo "Ready to upload the following file(s):" +ls $env:PUBLISH_PATH + +echo "::set-output name=build-x64-filename::$BUILD_X64_FILENAME" +echo "::set-output name=build-x86-filename::$BUILD_X86_FILENAME" diff --git a/.github/scripts/steps/build/5_prepare_release.ps1 b/.github/scripts/steps/build/5_prepare_release.ps1 new file mode 100644 index 0000000..50ae0e2 --- /dev/null +++ b/.github/scripts/steps/build/5_prepare_release.ps1 @@ -0,0 +1,6 @@ +# 准备发布Release文件 + +cd $Env:BUILD_PATH +cp .\Clash.Mini_*.exe ${Env:PUBLISH_PATH}\ +echo "Ready to upload the following file(s):" +ls ${Env:PUBLISH_PATH} \ No newline at end of file diff --git a/.github/scripts/steps/build/6_prepare_compress.ps1 b/.github/scripts/steps/build/6_prepare_compress.ps1 new file mode 100644 index 0000000..566f0df --- /dev/null +++ b/.github/scripts/steps/build/6_prepare_compress.ps1 @@ -0,0 +1,36 @@ +# 准备压缩 + +cd $env:BUILD_PATH +mkdir -Force ($PUBLISH_PATH_X64 = "${env:PUBLISH_PATH}\x64") +mkdir -Force ($PUBLISH_PATH_X86 = "${env:PUBLISH_PATH}\x86") +echo "PUBLISH_PATH_X64=$PUBLISH_PATH_X64" >> $env:GITHUB_ENV +echo "PUBLISH_PATH_X86=$PUBLISH_PATH_X86" >> $env:GITHUB_ENV +mkdir -Force .\profile + +$packageFiles = @(".\profile", "..\config.yaml", "..\Country.mmdb") + +mv ${env:PUBLISH_PATH}\Clash.Mini*64.exe $PUBLISH_PATH_X64\Clash.Mini.exe +$filesX64 = $packageFiles +foreach ($file in $filesX64) +{ + cp $file $PUBLISH_PATH_X64\ +} + +mv ${env:PUBLISH_PATH}\Clash.Mini*86.exe $PUBLISH_PATH_X86\Clash.Mini.exe +$filesX86 = $packageFiles +foreach ($file in $filesX86) +{ + cp $file $PUBLISH_PATH_X86\ +} + +mkdir -Force ($RELEASE_PATH = "${env:PUBLISH_PATH}\releases") +echo "RELEASE_PATH=$RELEASE_PATH" >> $env:GITHUB_ENV +$RELEASE_PKG_X64 = "$RELEASE_PATH\Clash.Mini_${env:GIT_TAG}_x64.7z" +$RELEASE_PKG_X86 = "$RELEASE_PATH\Clash.Mini_${env:GIT_TAG}_x86.7z" +echo "RELEASE_PKG_X64=$RELEASE_PKG_X64" >> $env:GITHUB_ENV +echo "RELEASE_PKG_X86=$RELEASE_PKG_X86" >> $env:GITHUB_ENV + +$RELEASE_PKG_X64 = $RELEASE_PKG_X64.Substring($RELEASE_PKG_X64.LastIndexOf("\") + 1) +$RELEASE_PKG_X86 = $RELEASE_PKG_X86.Substring($RELEASE_PKG_X86.LastIndexOf("\") + 1) +echo "::set-output name=release-pkg-x64::$RELEASE_PKG_X64" +echo "::set-output name=release-pkg-x86::$RELEASE_PKG_X86" diff --git a/.github/scripts/steps/notification/1_push_broadcast_tg.sh b/.github/scripts/steps/notification/1_push_broadcast_tg.sh new file mode 100644 index 0000000..c80aa9a --- /dev/null +++ b/.github/scripts/steps/notification/1_push_broadcast_tg.sh @@ -0,0 +1,19 @@ +# 推送到TG + +if [ -f "./RELEASELOG_NOTIFY.md" ]; then + RELEASE_LOG="./RELEASELOG_NOTIFY.md" +else + RELEASE_LOG="./RELEASELOG.md" +fi +RLT=$(curl --location --request POST https://api.telegram.org/bot${TG_BOT_TOKEN}/sendMessage -s --form-string chat_id=${CHAT_ID} --form-string text="$(perl -lne 'print;' $RELEASE_LOG)" --form-string parse_mode="Markdown" --form-string disable_web_page_preview="true" --form-string allow_sending_without_reply="true" --form-string reply_markup="{\"inline_keyboard\":[[{\"text\":\"📦下载\",\"url\":\"https://github.com/Clash-Mini/Clash.Mini/releases/tag/${GIT_TAG}\"},{\"text\":\"⭐点个Star吧\",\"url\":\"https://github.com/Clash-Mini/Clash.Mini\"}]]}") +IS_OK=$(echo $RLT | jq ".ok") +echo $RLT | jq . +if $IS_OK; then + MSG_ID=$(echo $RLT | jq ".result.message_id") + echo "::set-output name=push-msg-id::$MSG_ID" +else + echo "::error file=scripts/steps/notification/1_push_broadcast_tg.sh,line=15,col=1::push to channel failed." + echo "Response: " + echo "$RLT" | jq . + exit 1 +fi diff --git a/.github/scripts/steps/notification/2_push_files_tg.sh b/.github/scripts/steps/notification/2_push_files_tg.sh new file mode 100644 index 0000000..c2eb0f6 --- /dev/null +++ b/.github/scripts/steps/notification/2_push_files_tg.sh @@ -0,0 +1,30 @@ +# 推送到TG + +DT_STR=$(date "+%Y%m%d%H%M%S") +PART_X64=$(echo "${DT_STR}_Clash.Mini_X64_${GITHUB_SHA}" | base64 | tr -s "=" 2) +PART_X86=$(echo "${DT_STR}_Clash.Mini_X86_${GITHUB_SHA}" | base64 | tr -s "=" 2) + +RELEASE_URL="https://github.com/Clash-Mini/Clash.Mini/releases/download/${GIT_TAG}" +echo "$RELEASE_URL" +RELEASE_PATH="$(pwd)/releases" +mkdir -p "$RELEASE_PATH" +echo "${RELEASE_URL}/${RELEASE_PKG_X64}" +echo "${RELEASE_URL}/${RELEASE_PKG_X86}" +echo "${RELEASE_URL}/${RELEASE_PKG_X64}.sha256" +echo "${RELEASE_URL}/${RELEASE_PKG_X86}.sha256" +curl -L -o "${RELEASE_PATH}/${RELEASE_PKG_X64}" "${RELEASE_URL}/${RELEASE_PKG_X64}" +curl -L -o "${RELEASE_PATH}/${RELEASE_PKG_X86}" "${RELEASE_URL}/${RELEASE_PKG_X86}" +curl -L -o "${RELEASE_PATH}/${RELEASE_PKG_X64}.sha256" "${RELEASE_URL}/${RELEASE_PKG_X64}.sha256" +curl -L -o "${RELEASE_PATH}/${RELEASE_PKG_X86}.sha256" "${RELEASE_URL}/${RELEASE_PKG_X86}.sha256" +ls -lahR "$RELEASE_PATH" + +RELEASE_X64_SHA256=$(cat "${RELEASE_PATH}/${RELEASE_PKG_X64}.sha256" | tr -d "\n") +RELEASE_X86_SHA256=$(cat "${RELEASE_PATH}/${RELEASE_PKG_X86}.sha256" | tr -d "\n") +RLT=$(curl --location --request POST https://api.telegram.org/bot${TG_BOT_TOKEN}/sendMediaGroup -s --form-string chat_id=${CHAT_ID} --form-string reply_to_message_id=$PUSH_MSG_ID --form $PART_X64=@"${RELEASE_PATH}/${RELEASE_PKG_X64}" --form $PART_X86=@"${RELEASE_PATH}/${RELEASE_PKG_X86}" --form-string media="[{\"type\": \"document\",\"media\": \"attach://$PART_X64\",\"caption\": \"SHA256: ${RELEASE_X64_SHA256}\",\"parse_mode\": \"Markdown\"},{\"type\": \"document\",\"media\": \"attach://$PART_X86\",\"caption\": \"SHA256: ${RELEASE_X86_SHA256}\",\"parse_mode\": \"Markdown\"}]") +IS_OK=$(echo "$RLT" | jq ".ok") +if ! $IS_OK; then + echo "::error file=scripts/steps/notification/2_push_files_tg.sh,line=26,col=1::pushing files to channel failed." + echo "Response: " + echo "$RLT" | jq . + exit 1 +fi diff --git a/.github/scripts/steps/notification/2_push_files_tg_dev.sh b/.github/scripts/steps/notification/2_push_files_tg_dev.sh new file mode 100644 index 0000000..302a294 --- /dev/null +++ b/.github/scripts/steps/notification/2_push_files_tg_dev.sh @@ -0,0 +1,23 @@ +# 推送到TG + +DT_STR=$(date "+%Y%m%d%H%M%S") +PART_X64=$(echo "${DT_STR}_Clash.Mini_X64_${GITHUB_SHA}" | base64 | tr -s "=" 2) +PART_X86=$(echo "${DT_STR}_Clash.Mini_X86_${GITHUB_SHA}" | base64 | tr -s "=" 2) + +RUNNER_URL="https://github.com/JyCyunMe/Clash.Mini/actions/runs/${GITHUB_RUN_ID}" +echo "$RUNNER_URL" +ls -lahR "$ARTIFACTS_PATH" +ARTIFACT_X64="${ARTIFACTS_PATH}/${BUILD_X64_FILENAME}" +ARTIFACT_X86="${ARTIFACTS_PATH}/${BUILD_X86_FILENAME}" + +ARTIFACT_X64_SHA256=$(cat "${ARTIFACT_X64}.sha256/${BUILD_X64_FILENAME}.sha256" | tr -d "\n") +ARTIFACT_X86_SHA256=$(cat "${ARTIFACT_X86}.sha256/${BUILD_X86_FILENAME}.sha256" | tr -d "\n") +RLT=$(curl --location --request POST https://api.telegram.org/bot${TG_BOT_TOKEN}/sendMediaGroup -s --form-string chat_id=${UPLOAD_CHAT_ID} --form "$PART_X64=@\"${ARTIFACT_X64}/${BUILD_X64_FILENAME}\"" --form "$PART_X86=@\"${ARTIFACT_X86}/${BUILD_X86_FILENAME}\"" --form-string media="[{\"type\": \"document\",\"media\": \"attach://$PART_X64\",\"caption\": \"SHA256: ${ARTIFACT_X64_SHA256}\",\"parse_mode\": \"MarkdownV2\"},{\"type\": \"document\",\"media\": \"attach://$PART_X86\",\"caption\": \"SHA256: ${ARTIFACT_X86_SHA256}\n\n_[${GITHUB_WORKFLOW} \\\\#${GITHUB_RUN_NUMBER}](${RUNNER_URL})_\",\"parse_mode\": \"MarkdownV2\"}]") +IS_OK=$(echo $RLT | jq ".ok") +echo $RLT | jq . +if ! $IS_OK; then + echo "::error file=scripts/steps/notification/2_push_files_tg_dev.sh,line=19,col=1::pushing files to channel failed." + echo "Response: " + echo $RLT | jq . + exit 1 +fi diff --git a/.github/workflows/build_dev_windows.yml b/.github/workflows/build_dev_windows.yml new file mode 100644 index 0000000..d24647e --- /dev/null +++ b/.github/workflows/build_dev_windows.yml @@ -0,0 +1,227 @@ +name: Dev Windows +on: + push: + branches: + - develop + pull_request: + branches: + - develop + +env: + go-version: "^1.16.4" + go-stable: "true" + artifact-retention-days: 5 + +jobs: + build-dev-windows: + name: Build Dev Windows + environment: Dev + runs-on: windows-latest + if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }} + outputs: + git-branch: ${{ steps.get-git-info.outputs.git-branch }} + git-tag: ${{ steps.configurate-build-inforamtion.outputs.git-tag }} + build-x64-filename: ${{ steps.prepare-to-upload.outputs.build-x64-filename }} + build-x86-filename: ${{ steps.prepare-to-upload.outputs.build-x86-filename }} + steps: + # 拉取项目代码 + - name: Checkout 🔀 + uses: actions/checkout@v2 + with: + persist-credentials: false + fetch-depth: 0 + + # # Shell Check + # - name: Run ShellCheck + # uses: ludeeus/action-shellcheck@master + # with: + # scandir: './.github/scripts' + + # 获取Git信息 + - id: get-git-info + name: Get Git Info 💡 + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/1_get_info.ps1 + + # 配置构建信息 + - id: configurate-build-inforamtion + name: Configurate Build Information 🖨 + if: success() + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/2_configuration.ps1 + + # 配置Golang环境 + - name: Setup Go Environment 📍 + uses: actions/setup-go@v2 + if: success() + with: + go-version: ${{ env.go-version }} + stable: ${{ env.go-stable }} + + # 获取依赖包 + - name: Get Go Modules 📟 + if: success() + shell: pwsh + run: | + go version + go env + go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo + go get github.com/go-bindata/go-bindata/v3/go-bindata@v3.1.3 + go mod vendor -v + go generate -x -v ./main.go + go generate -x -v ./static/handler.go + mkdir -p ${env:BUILD_PATH} + + # 运行Golang测试 + # - name: Golang Test ✅ + # run: | + + # 构建64位应用 + - name: Build x64 Application 🛠 + if: success() + shell: pwsh + run: | + $env:GOOS="windows" + $env:GOARCH="amd64" + go build -ldflags "-H=windowsgui -s -w" -o ${env:BUILD_PATH}/Clash.Mini_dev_x64.exe + + # 构建32位应用 + - name: Build x86 Application 🛠 + if: success() + shell: pwsh + run: | + $env:GOOS="windows" + $env:GOARCH="386" + go build -a -v -x -ldflags "-H=windowsgui -s -w" -o ${env:BUILD_PATH}/Clash.Mini_dev_x86.exe + + # 准备上传Artifact文件 + - id: prepare-to-upload + name: Prepare to Upload 🕹 + if: success() + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/4_prepare_upload_dev.ps1 + + # 生成Artifacts Hash + - name: Hash Artifacts ⌨ + if: success() + shell: pwsh + run: | + ls $env:PUBLISH_PATH -Include "*.exe" -Recurse | foreach { echo (Get-FileHash $_.FullName -Algorithm SHA256).Hash > "$($_.FullName).sha256" } + + # 上传64位应用到Actions Artifacts + - name: Upload x64 Application to Artifacts 📤 + if: success() + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X64_FILENAME }} + path: ${{ env.PUBLISH_PATH }}/*_x64.exe + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + # 上传32位应用到Actions Artifacts + - name: Upload x86 Application to Artifacts 📤 + if: success() + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X86_FILENAME }} + path: ${{ env.PUBLISH_PATH }}/*_x86.exe + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + # 上传64位应用Hash到Actions Artifacts + - name: Upload x64 Hash to Artifacts 📤 + if: success() + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X64_FILENAME }}.sha256 + path: ${{ env.PUBLISH_PATH }}/*_x64.exe.sha256 + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + # 上传32位应用Hash到Actions Artifacts + - name: Upload x86 Hash to Artifacts 📤 + if: success() + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X86_FILENAME }}.sha256 + path: ${{ env.PUBLISH_PATH }}/*_x86.exe.sha256 + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + notifaction: + name: Notification + environment: Dev + runs-on: ubuntu-latest + needs: build-dev-windows + steps: + # 拉取项目代码 + - name: Checkout 🔀 + uses: actions/checkout@v2 + with: + persist-credentials: false + fetch-depth: 1 + + # 下载Artifacts + - id: download-artifacts + name: Download Artifacts 🔀 + uses: actions/download-artifact@v2 + if: success() + with: + path: ./build/artifacts + + # 校验Artifacts + - name: Verify Artifacts 📟 + if: success() + shell: bash + run: | + ARTIFACTS_PATH="${{ steps.download-artifacts.outputs.download-path }}" + ls -lha $ARTIFACTS_PATH + + # 推送到TG + - name: Push to TG 📰 + if: ${{ success() && !contains(github.event.head_commit.message, '[Skip Upload]') }} + shell: bash + run: bash ./.github/scripts/steps/notification/2_push_files_tg_dev.sh + env: + TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }} + UPLOAD_CHAT_ID: ${{ secrets.UPLOAD_CHAT_ID }} + GIT_BRANCH: ${{ needs.build-dev-windows.outputs.git-branch }} + GIT_TAG: ${{ needs.build-dev-windows.outputs.git-tag }} + ARTIFACTS_PATH: ${{ steps.download-artifacts.outputs.download-path }} + BUILD_X64_FILENAME: ${{ needs.build-dev-windows.outputs.build-x64-filename }} + BUILD_X86_FILENAME: ${{ needs.build-dev-windows.outputs.build-x86-filename }} + +# # 缓存Build文件 +# - name: Cache node modules +# uses: actions/cache@v2 +# env: +# cache-name: cache-build-release +# with: +# path: ${{ env.PUBLISH_PATH }} +# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} +# restore-keys: | +# ${{ runner.os }}-build-${{ env.cache-name }}- +# ${{ runner.os }}-build- +# ${{ runner.os }}- +# +# notifaction: +# name: Notification +# runs-on: ubuntu-latest +# needs: build-release-windows +# steps: +# - name: Download Release 📦 +# uses: Legion2/download-release-action@v2.1.0 +# with: +# repository: JyCyunMe/Clash.Mini +# tag: ${{ jobs.build-release-windows.env.GIT_TAG }} +# path: ./release +# token: ${{ secrets.ACTION_ACCESS_TOKEN }} +# +# - name: Send to TG 💡 +# uses: appleboy/telegram-action@master +# with: +# to: JyCyun +# token: ${{ secrets.TG_BOT_TOKEN }} +# message: "test release \nSee full in https://github.com/JyCyunMe/Clash.Mini/releases/tag/${{ env.GIT_TAG }}" +# disable_web_page_preview: true +# document: ./release/Clash.Mini* diff --git a/.github/workflows/build_release_windows.yml b/.github/workflows/build_release_windows.yml new file mode 100644 index 0000000..4adc47a --- /dev/null +++ b/.github/workflows/build_release_windows.yml @@ -0,0 +1,243 @@ +name: Release Windows +on: + push: + branches: + - release + - pre-release + pull_request: + branches: + - release + - pre-release +# tags: +# - "v*.*.*" + +env: + go-version: '^1.16.4' + go-stable: 'true' + artifact-retention-days: 5 + +jobs: + build-release-windows: + name: Build (Pre)Release Windows + environment: (Pre)Release + runs-on: windows-latest + if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }} + outputs: + git-tag: ${{ steps.configurate-build-inforamtion.outputs.git-tag }} + release-pkg-x64: ${{ steps.prepare-to-compression.outputs.release-pkg-x64 }} + release-pkg-x86: ${{ steps.prepare-to-compression.outputs.release-pkg-x86 }} + steps: + # 拉取项目代码 + - name: Checkout 🔀 + uses: actions/checkout@v2 + with: + persist-credentials: false + fetch-depth: 0 + + # # Shell Check + # - name: Run ShellCheck + # uses: ludeeus/action-shellcheck@master + # with: + # scandir: './.github/scripts' + + # 获取Git信息 + - name: Get Git Info 💡 + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/1_get_info.ps1 + + # 配置构建信息 + - id: configurate-build-inforamtion + name: Configurate Build Information 🖨 + if: success() + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/2_configuration.ps1 + + # 构建前检查 + - name: Check on Failures ❌ + if: success() + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/3_checks.ps1 + + # 配置Golang环境 + - name: Setup Go Environment 📍 + uses: actions/setup-go@v2 + if: success() + with: + go-version: ${{ env.go-version }} + stable: ${{ env.go-stable }} + + # 获取依赖包 + - name: Get Go Modules 📟 + if: success() + shell: pwsh + run: | + go version + go env + go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo + go get github.com/go-bindata/go-bindata/v3/go-bindata@v3.1.3 + go mod vendor -v + go generate -x -v ./main.go + go generate -x -v ./static/handler.go + mkdir -p ${env:BUILD_PATH} + + # 运行Golang测试 + # - name: Golang Test ✅ + # run: | + + # 构建64位应用 + - name: Build x64 Application 🛠 + if: success() + shell: pwsh + run: | + $env:GOOS="windows" + $env:GOARCH="amd64" + go build -ldflags "-H=windowsgui -s -w" -o ${env:BUILD_PATH}/Clash.Mini_x64.exe + + # 构建32位应用 + - name: Build x86 Application 🛠 + if: success() + shell: pwsh + run: | + $env:GOOS="windows" + $env:GOARCH="386" + go build -a -v -x -ldflags "-H=windowsgui -s -w" -o ${env:BUILD_PATH}/Clash.Mini_x86.exe + + # 准备发布PreRelease文件 + - id: prepare-pre-release + name: Prepare to Publish PreRelease 🕹 + if: ${{ env.GIT_BRANCH != 'release' && success() }} + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/4_prepare_pre.ps1 + + # 上传64位应用到Actions Artifacts + - name: Upload x64 Application to Artifacts 📤 + if: ${{ steps.prepare-pre-release.outcome == 'success' }} + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X64_FILENAME }} + path: ${{ env.PUBLISH_PATH }}/*_x64.exe + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + # 上传32位应用到Actions Artifacts + - name: Upload x86 Application to Artifacts 📤 + if: ${{ steps.prepare-pre-release.outcome == 'success' && success() }} + uses: actions/upload-artifact@v2 + with: + name: ${{ env.BUILD_X86_FILENAME }} + path: ${{ env.PUBLISH_PATH }}/*_x86.exe + if-no-files-found: error + retention-days: ${{ env.artifact-retention-days }} + + # 准备发布Release文件 + - name: Prepare to Publish Release 🕹 + if: ${{ env.GIT_BRANCH == 'release' && success() }} + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/5_prepare_release.ps1 + + # 准备压缩 + - id: prepare-to-compression + name: Prepare to Compression 🕹 + if: success() + shell: pwsh + run: pwsh -f ./.github/scripts/steps/build/6_prepare_compress.ps1 + + # 压缩打包 + - name: Compression x64 📦 + if: success() + shell: pwsh + run: | + 7z a -t7z -mx=9 ${env:RELEASE_PKG_X64} ${env:PUBLISH_PATH_X64}/* + 7z a -t7z -mx=9 ${env:RELEASE_PKG_X86} ${env:PUBLISH_PATH_X86}/* + ls $env:RELEASE_PATH + + # 生成Release Hash + - name: Hash Releases ⌨ + if: success() + shell: pwsh + run: | + echo (Get-FileHash ${env:RELEASE_PKG_X64} -Algorithm SHA256).Hash > "${env:RELEASE_PKG_X64}.sha256" + echo (Get-FileHash ${env:RELEASE_PKG_X86} -Algorithm SHA256).Hash > "${env:RELEASE_PKG_X86}.sha256" + ls $env:RELEASE_PATH + + # 发布到Releases + - name: Publish to Releases 💸 + if: success() + uses: ncipollo/release-action@v1 + with: + prerelease: ${{ env.GIT_BRANCH != 'release' }} + tag: ${{ env.GIT_TAG }} + artifacts: ${{ env.RELEASE_PATH }}/Clash.Mini* + # bodyFile: ./CHANGELOG.md + bodyFile: ./RELEASELOG.md + token: ${{ secrets.ACTION_ACCESS_TOKEN }} + + notifaction: + name: Notification + environment: (Pre)Release + runs-on: ubuntu-latest + needs: build-release-windows + env: + TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }} + CHAT_ID: ${{ secrets.CHAT_ID }} + UPLOAD_CHAT_ID: ${{ secrets.UPLOAD_CHAT_ID }} + GIT_TAG: ${{ needs.build-release-windows.outputs.git-tag }} + RELEASE_PKG_X64: ${{ needs.build-release-windows.outputs.release-pkg-x64 }} + RELEASE_PKG_X86: ${{ needs.build-release-windows.outputs.release-pkg-x86 }} + steps: + # 拉取项目代码 + - name: Checkout 🔀 + uses: actions/checkout@v2 + with: + persist-credentials: false + fetch-depth: 1 + + # 推送发行公告到TG + - id: push-broadcast-to-tg + name: Push Broadcast to TG 📰 + if: ${{ success() && !contains(github.event.head_commit.message, '[Skip Push]') }} + shell: bash + run: bash ./.github/scripts/steps/notification/1_push_broadcast_tg.sh + + # 推送文件到TG + - name: Push Files to TG 📰 + if: ${{ success() && contains(github.event.head_commit.message, '[Push Upload]') }} + shell: bash + run: bash ./.github/scripts/steps/notification/2_push_files_tg.sh + env: + PUSH_MSG_ID: ${{ steps.push-broadcast-to-tg.outputs.push-msg-id }} + +# # 缓存Build文件 +# - name: Cache node modules +# uses: actions/cache@v2 +# env: +# cache-name: cache-build-release +# with: +# path: ${{ env.PUBLISH_PATH }} +# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} +# restore-keys: | +# ${{ runner.os }}-build-${{ env.cache-name }}- +# ${{ runner.os }}-build- +# ${{ runner.os }}- +# +# notifaction: +# name: Notification +# runs-on: ubuntu-latest +# needs: build-release-windows +# steps: +# - name: Download Release 📦 +# uses: Legion2/download-release-action@v2.1.0 +# with: +# repository: JyCyunMe/Clash.Mini +# tag: ${{ jobs.build-release-windows.env.GIT_TAG }} +# path: ./release +# token: ${{ secrets.ACTION_ACCESS_TOKEN }} +# +# - name: Send to TG 💡 +# uses: appleboy/telegram-action@master +# with: +# to: JyCyun +# token: ${{ secrets.TG_BOT_TOKEN }} +# message: "test release \nSee full in https://github.com/JyCyunMe/Clash.Mini/releases/tag/${{ env.GIT_TAG }}" +# disable_web_page_preview: true +# document: ./release/Clash.Mini* diff --git a/.github/workflows/github_build_dev_windows.yml b/.github/workflows/github_build_dev_windows.yml deleted file mode 100644 index 9e3a1c7..0000000 --- a/.github/workflows/github_build_dev_windows.yml +++ /dev/null @@ -1,143 +0,0 @@ -name: Build Dev Windows -on: - push: - branches: - - develop - pull_request: - branches: - - develop - -env: - go-version: '^1.16.4' - go-stable: 'true' - artifact-retention-days: 5 - -jobs: - build-and-upload: - name: Build & Upload Dev Windows - runs-on: windows-latest - if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }} - steps: - # 拉取项目代码 - - name: Checkout 🔀 - uses: actions/checkout@v2 - with: - persist-credentials: false - fetch-depth: 0 - - # 获取Git信息 - - name: Get Git Info 💡 - shell: pwsh - run: | - $VERSION_REGEXP='^v?\d+\.\d+\.\d+(\.\d+)?-pre$' - echo "VERSION_REGEXP=$VERSION_REGEXP" >> $env:GITHUB_ENV - $GIT_BRANCH=$env:GITHUB_REF -replace 'refs/heads/', '' - echo "GIT_BRANCH=$GIT_BRANCH" >> $env:GITHUB_ENV - echo "Current Branch: $GIT_BRANCH" - - $SHORT_SHA=${env:GITHUB_SHA}.Substring(0,7) - echo "SHORT_SHA=$SHORT_SHA" >> $env:GITHUB_ENV - echo "Current commit hash id: ${env:GITHUB_SHA} ($SHORT_SHA)" - - $GIT_TAG_VERSION=git tag -l | where { $_ -match $VERSION_REGEXP } | sort -descending -top 1 - $GIT_TAG_PRE_VERSION=git tag -l | where { $_ -match $VERSION_REGEXP } | sort -descending -top 1 - if ($GIT_TAG_PRE_VERSION -eq $GIT_TAG_VERSION + '-pre') { $GIT_TAG_LATEST=$GIT_TAG_VERSION } - else { $GIT_TAG_LATEST=@($GIT_TAG_VERSION, $GIT_TAG_PRE_VERSION) | sort -descending -top 1 } - echo "GIT_TAG_LATEST=$GIT_TAG_LATEST" >> $env:GITHUB_ENV - echo "Latest Tag: $GIT_TAG_LATEST" - - # 配置构建信息 - - name: Configurate Build Information 🖨 - if: success() - shell: pwsh - run: | - $BUILD_PATH="$pwd\build" - echo "BUILD_PATH=$BUILD_PATH" >> $env:GITHUB_ENV - $BUILD_VERSION=cat .\versioninfo.json | jq -r '.StringFileInfo.ProductVersion' - echo "BUILD_VERSION=$BUILD_VERSION" >> $env:GITHUB_ENV - echo "Build Version: v$BUILD_VERSION" - $GIT_TAG="v$BUILD_VERSION$(${env:GIT_BRANCH} -ne 'release' ? '-pre' : '')" - echo "GIT_TAG=$GIT_TAG" >> $env:GITHUB_ENV - echo "Current Tag: $GIT_TAG" - - # # 构建前检查 - # - name: Check on Failures ❌ - # if: success() - # shell: pwsh - # run: | - - # 配置Golang环境 - - name: Setup Go Environment 📍 - uses: actions/setup-go@v2 - if: success() - with: - go-version: ${{ env.go-version }} - stable: ${{ env.go-stable }} - - # 获取依赖包 - - name: Get Go Modules 📟 - if: success() - shell: pwsh - run: | - go version - go env - go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo - go generate -x - mkdir -p .\build - - # 运行Golang测试 - # - name: Golang Test ✅ - # run: | - - # 构建64位应用 - - name: Build x64 Application 🛠 - if: success() - shell: pwsh - run: | - $env:GOOS="windows" - $env:GOARCH="amd64" - go build -ldflags "-H=windowsgui -s -w" -o .\build\Clash.Mini_dev_x64.exe - - # 构建32位应用 - - name: Build x86 Application 🛠 - if: success() - shell: pwsh - run: | - $env:GOOS="windows" - $env:GOARCH="386" - go build -a -v -x -ldflags "-H=windowsgui -s -w" -o .\build\Clash.Mini_dev_x86.exe - - # 准备上传Artifact文件 - - name: Prepare to Upload 🕹 - if: success() - shell: pwsh - run: | - cd $env:BUILD_PATH - mkdir -p .\publish - $BUILD_X64_FILENAME="Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_${env:SHORT_SHA}_x64.exe" - $BUILD_X86_FILENAME="Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_${env:SHORT_SHA}_x86.exe" - echo "BUILD_X64_FILENAME=$BUILD_X64_FILENAME" >> $env:GITHUB_ENV - echo "BUILD_X86_FILENAME=$BUILD_X86_FILENAME" >> $env:GITHUB_ENV - cp .\Clash.Mini_dev_*.exe .\publish\ - echo "Ready to upload the following file(s):" - ls .\publish - - # 上传64位应用到Actions Artifacts - - name: Upload x64 Application to Artifacts 📤 - if: success() - uses: actions/upload-artifact@v2 - with: - name: ${{ env.BUILD_X64_FILENAME }} - path: ${{ env.BUILD_PATH }}\publish\*_x64.exe - if-no-files-found: error - retention-days: ${{ env.artifact-retention-days }} - - # 上传32位应用到Actions Artifacts - - name: Upload x86 Application to Artifacts 📤 - if: success() - uses: actions/upload-artifact@v2 - with: - name: ${{ env.BUILD_X86_FILENAME }} - path: ${{ env.BUILD_PATH }}\publish\*_x86.exe - if-no-files-found: error - retention-days: ${{ env.artifact-retention-days }} diff --git a/.github/workflows/github_build_release_windows.yml b/.github/workflows/github_build_release_windows.yml deleted file mode 100644 index 3704654..0000000 --- a/.github/workflows/github_build_release_windows.yml +++ /dev/null @@ -1,245 +0,0 @@ -name: Build Release Windows -on: - push: - branches: - - release - - pre-release - pull_request: - branches: - - release - - pre-release -# tags: -# - 'v*.*.*' - -env: - go-version: '^1.16.4' - go-stable: 'true' - artifact-retention-days: 5 - -jobs: - build-and-publish: - name: Build & Publish (Pre)Release Windows - runs-on: windows-latest - if: ${{ !contains(github.event.head_commit.message, '[Skip CI]') }} - steps: - # 拉取项目代码 - - name: Checkout 🔀 - uses: actions/checkout@v2 - with: - persist-credentials: false - fetch-depth: 0 - - # 获取Git信息 - - name: Get Git Info 💡 - shell: pwsh - run: | - $VERSION_REGEXP='v?\d+\.\d+\.\d+(\.\d+)?(-pre)?$' - echo "VERSION_REGEXP=$VERSION_REGEXP" >> $env:GITHUB_ENV - $GIT_BRANCH=$env:GITHUB_REF -replace 'refs/heads/', '' - echo "GIT_BRANCH=$GIT_BRANCH" >> $env:GITHUB_ENV - echo "Current Branch: $GIT_BRANCH" - - $SHORT_SHA=${env:GITHUB_SHA}.Substring(0,7) - echo "SHORT_SHA=$SHORT_SHA" >> $env:GITHUB_ENV - echo "Current commit hash id: ${env:GITHUB_SHA} ($SHORT_SHA)" - - $GIT_TAG_VERSION=git tag -l | where { $_ -match $VERSION_REGEXP } | sort -descending -top 1 - $GIT_TAG_PRE_VERSION=git tag -l | where { $_ -match $VERSION_REGEXP } | sort -descending -top 1 - if ($GIT_TAG_PRE_VERSION -eq $GIT_TAG_VERSION + '-pre') { $GIT_TAG_LATEST=$GIT_TAG_VERSION } - else { $GIT_TAG_LATEST=@($GIT_TAG_VERSION, $GIT_TAG_PRE_VERSION) | sort -descending -top 1 } - echo "GIT_TAG_LATEST=$GIT_TAG_LATEST" >> $env:GITHUB_ENV - echo "Latest Tag: $GIT_TAG_LATEST" - - # 配置构建信息 - - name: Configurate Build Information 🖨 - if: success() - shell: pwsh - run: | - $BUILD_PATH="$pwd\build" - echo "BUILD_PATH=$BUILD_PATH" >> $env:GITHUB_ENV - $BUILD_VERSION=cat .\versioninfo.json | jq -r '.StringFileInfo.ProductVersion' - echo "BUILD_VERSION=$BUILD_VERSION" >> $env:GITHUB_ENV - echo "Build Version: v$BUILD_VERSION" - $GIT_TAG="v$BUILD_VERSION$(${env:GIT_BRANCH} -ne 'release' ? '-pre' : '')" - echo "GIT_TAG=$GIT_TAG" >> $env:GITHUB_ENV - echo "Current Tag: $GIT_TAG" - - # 构建前检查 - - name: Check on Failures ❌ - if: success() - shell: pwsh - run: | - $NOT_PASSED=0 - echo "Build Version: v${env:BUILD_VERSION}`nCurrent Tag: ${env:GIT_TAG}`nLatest Tag: ${env:GIT_TAG_LATEST}`n" - if (!(${env:GIT_TAG} -match ${env:VERSION_REGEXP}) -or ${env:GIT_TAG} -eq '') { - $NOT_PASSED=1 - echo "Cannot get the version information or it's incorrect." - } - - if ($NOT_PASSED -eq 0) { - $INTERNAL_VERSION_REGEXP='^(\d+\.\d+\.\d+)(\.\d+)?$' - $fileVersion=cat .\versioninfo.json | jq -r '.FixedFileInfo.FileVersion' - $fileVersion=(echo $fileVersion | jq -r '.Major, .Minor, .Patch, .Build') -join '.' - $tmpVer=[regex]::Match($fileVersion, $INTERNAL_VERSION_REGEXP) - if (!$tmpVer.success) { - $NOT_PASSED=1 - } else { - $fileVersion=$tmpVer.Groups[1].Value - if ($tmpVer.Groups[2].Value -ne '.0') { $fileVersion+=$tmpVer.Groups[2].Value} - } - - if ($NOT_PASSED -eq 0) { - $productVersion=cat .\versioninfo.json | jq -r '.FixedFileInfo.ProductVersion' - $productVersion=(echo $productVersion | jq -r '.Major, .Minor, .Patch, .Build') -join '.' - $tmpVer=[regex]::Match($productVersion, $INTERNAL_VERSION_REGEXP) - if (!$tmpVer.success) { - $NOT_PASSED=1 - } else { - $productVersion=$tmpVer.Groups[1].Value - if ($tmpVer.Groups[2].Value -ne '.0') { $productVersion+=$tmpVer.Groups[2].Value} - } - } - } - - if (($NOT_PASSED -eq 0) -and (($productVersion -ne $fileVersion) -or (${env:BUILD_VERSION} -ne $productVersion))) { - $NOT_PASSED=1 - echo "The version information has some differences.`nPlease check `"versioninfo.json`"" - } - - if (($NOT_PASSED -eq 0) -and ((${env:GIT_TAG_LATEST} -ne '' -and ${env:GIT_TAG}.replace('-pre', '') -lt ${env:GIT_TAG_LATEST}.replace('-pre', '') -or - (${env:GIT_TAG}.replace('-pre', '') -eq ${env:GIT_TAG_LATEST}.replace('-pre', '') -and (${env:GIT_TAG}.contains('-pre') -or !${env:GIT_TAG_LATEST}.contains('-pre')))))) { - $NOT_PASSED=1 - echo "A newer or the current version already exists." - } - if ($NOT_PASSED -ne 0) { - echo "Check the version information is not passed." - echo "This build has been aborted." - exit 1 - } - - # 配置Golang环境 - - name: Setup Go Environment 📍 - uses: actions/setup-go@v2 - if: success() - with: - go-version: ${{ env.go-version }} - stable: ${{ env.go-stable }} - - # 获取依赖包 - - name: Get Go Modules 📟 - if: success() - shell: pwsh - run: | - go version - go env - go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo - go generate -x - mkdir -p .\build - - # 运行Golang测试 - # - name: Golang Test ✅ - # run: | - - # 构建64位应用 - - name: Build x64 Application 🛠 - if: success() - shell: pwsh - run: | - $env:GOOS="windows" - $env:GOARCH="amd64" - go build -ldflags "-H=windowsgui -s -w" -o .\build\Clash.Mini_x64.exe - - # 构建32位应用 - - name: Build x86 Application 🛠 - if: success() - shell: pwsh - run: | - $env:GOOS="windows" - $env:GOARCH="386" - go build -a -v -x -ldflags "-H=windowsgui -s -w" -o .\build\Clash.Mini_x86.exe - - # 准备发布PreRelease文件 - - id: prepare-pre-release - name: Prepare to Publish PreRelease 🕹 - if: ${{ env.GIT_BRANCH != 'release' && success() }} - shell: pwsh - run: | - cd $env:BUILD_PATH - mkdir -p .\publish - $BUILD_X64_FILENAME="Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_x64.exe" - $BUILD_X86_FILENAME="Clash.Mini_${env:GIT_BRANCH}_v${env:BUILD_VERSION}_x86.exe" - echo "BUILD_X64_FILENAME=$BUILD_X64_FILENAME" >> $env:GITHUB_ENV - echo "BUILD_X86_FILENAME=$BUILD_X86_FILENAME" >> $env:GITHUB_ENV - cp .\Clash.Mini_*.exe .\publish\ - echo "Ready to upload the following file(s):" - ls .\publish - - # 上传64位应用到Actions Artifacts - - name: Upload x64 Application to Artifacts 📤 - if: ${{ steps.prepare-pre-release.outcome == 'success' }} - uses: actions/upload-artifact@v2 - with: - name: ${{ env.BUILD_X64_FILENAME }} - path: ${{ env.BUILD_PATH }}\publish\*_x64.exe - if-no-files-found: error - retention-days: ${{ env.artifact-retention-days }} - - # 上传32位应用到Actions Artifacts - - name: Upload x86 Application to Artifacts 📤 - if: ${{ steps.prepare-pre-release.outcome == 'success' && success() }} - uses: actions/upload-artifact@v2 - with: - name: ${{ env.BUILD_X86_FILENAME }} - path: ${{ env.BUILD_PATH }}\publish\*_x86.exe - if-no-files-found: error - retention-days: ${{ env.artifact-retention-days }} - - # 准备发布Release文件 - - name: Prepare to Publish Release 🕹 - if: ${{ env.GIT_BRANCH == 'release' && success() }} - shell: pwsh - run: | - cd $env:BUILD_PATH - mkdir -p .\publish - cp .\Clash.Mini_*.exe .\publish\ - echo "Ready to upload the following file(s):" - ls .\publish - - # 准备压缩 - - name: Prepare to Compression 🕹 - if: success() - shell: pwsh - run: | - cd $env:BUILD_PATH - mkdir -p ($PUBLISH_PATH_X64="${env:BUILD_PATH}\publish\x64") - mkdir -p ($PUBLISH_PATH_X86="${env:BUILD_PATH}\publish\x86") - echo "PUBLISH_PATH_X64=$PUBLISH_PATH_X64" >> $env:GITHUB_ENV - echo "PUBLISH_PATH_X86=$PUBLISH_PATH_X86" >> $env:GITHUB_ENV - mkdir -p .\Profile - $packageFiles=@(".\Profile", "..\config.yaml", "..\Country.mmdb") - mv .\publish\Clash.Mini*64.exe $PUBLISH_PATH_X64\Clash.Mini.exe - $filesX64=$packageFiles - foreach ($file in $filesX64) { cp $file $PUBLISH_PATH_X64\ } - mv .\publish\Clash.Mini*86.exe $PUBLISH_PATH_X86\Clash.Mini.exe - $filesX86=$packageFiles - foreach ($file in $filesX86) { cp $file $PUBLISH_PATH_X86\ } - - # 压缩打包 - - name: Compression x64 📦 - if: success() - shell: pwsh - run: | - 7z a -t7z -mx=9 ${env:BUILD_PATH}\publish\Clash.Mini.${{ env.GIT_TAG }}.x64.7z ${env:PUBLISH_PATH_X64}\* - 7z a -t7z -mx=9 ${env:BUILD_PATH}\publish\Clash.Mini.${{ env.GIT_TAG }}.x86.7z ${env:PUBLISH_PATH_X86}\* - - # 发布到Releases - - name: Publish to Releases 💸 - if: success() - uses: ncipollo/release-action@v1 - with: - prerelease: ${{ env.GIT_BRANCH != 'release' }} - tag: ${{ env.GIT_TAG }} - artifacts: ${{ env.BUILD_PATH }}\publish\Clash.Mini*.7z - # bodyFile: .\CHANGELOG.md - bodyFile: .\RELEASELOG.md - token: ${{ secrets.ACTION_ACCESS_TOKEN }} diff --git a/RELEASELOG.md b/RELEASELOG.md index 30c0cde..472713b 100644 --- a/RELEASELOG.md +++ b/RELEASELOG.md @@ -1,11 +1,35 @@ ## Release Log -### **v0.1.2-pre** +### `v0.1.3-pre` -Release on *2021-05-29 23:30* +Release on _**2021-06-06 02:50**_ 👏 **Features** -1. Part of the code has been refactored -2. Fixed an encoding problem of the generated schtasks file -3. GitHub Actions has been configured +1. Supported switch proxy on tray menu ([#8](https://github.com/Clash-Mini/Clash.Mini/issues/8)) +2. Add caching function for multiple configuration files +3. Supported correct DPI on high screen resolution (HiDPI) +4. Optimized some performance + +**Fixes** + +1. Fixed some problems about Tasksch +2. Set the default value when the Regedit value cannot be obtained + +--- + +### `v0.1.3-pre` + +发布于 _**2021-06-06 02:50**_ 👏 + +🎉**特性** + +1. 支持在托盘菜单切换代理 ([#8](https://github.com/Clash-Mini/Clash.Mini/issues/8)) +2. 增加多配置文件缓存 +3. 支持高分屏HiDPI +4. 优化了一些性能 + +🎇**修复** + +1. 修复任务计划的问题 +2. 无法读取到注册表值时自动设置默认值 diff --git a/RELEASELOG_NOTIFY.md b/RELEASELOG_NOTIFY.md new file mode 100644 index 0000000..04945eb --- /dev/null +++ b/RELEASELOG_NOTIFY.md @@ -0,0 +1,17 @@ +*发行日志* + +`v0.1.3-pre` + +发布于 _2021-06-06 02:50_ 👏 + +🎉*特性* + +1. 支持在托盘菜单切换代理 ([#8](https://github.com/Clash-Mini/Clash.Mini/issues/8)) +2. 增加多配置文件缓存 +3. 支持高分屏HiDPI +4. 优化了一些性能 + +🎇*修复* + +1. 修复任务计划的问题 +2. 无法读取到注册表值时自动设置默认值 diff --git a/cmd/auto/auto.go b/cmd/auto/auto.go new file mode 100644 index 0000000..382af11 --- /dev/null +++ b/cmd/auto/auto.go @@ -0,0 +1,58 @@ +package auto + +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) + +type Type int8 + +const ( + ON Type = iota + 35 + OFF + + Invalid = -1 +) + +var ( + typeMap = map[Type]string{ + ON: cmd.OnName, + OFF: cmd.OffName, + } +) + +// String implements cmd.GeneralType +func (t Type) String() string { + return typeMap[t] +} + +// GetCommandType implements cmd.GeneralType +func (t Type) GetCommandType() cmd.CommandType { + return cmd.Sys +} + +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return OFF +} + +func ParseType(s string) Type { + for typeEnum, typeName := range typeMap { + if s == typeName { + return typeEnum + } + } + return Invalid +} + +func (t Type) IsValid() bool { + return t != Invalid +} + +func IsValid(s string) bool { + return ParseType(s).IsValid() +} + +// IsON implements cmd.GeneralType +func (t Type) IsON() bool { + return t == ON +} diff --git a/cmd/cmd.go b/cmd/cmd.go index 1ddb8dc..6cae8da 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -3,14 +3,28 @@ package cmd type CommandType string const ( - Task CommandType = "Task" - Sys = "Sys" - MMDB = "MMDB" + Task CommandType = "Task" + Sys = "Sys" + MMDB = "MMDB" + Cron = "Cron" + Proxy = "Proxy" + Startup = "Startup" + Auto = "Auto" + + OnName = "ON" + OffName = "OFF" + + // TODO: extract general value + + ON Type = 0 + OFF Type = 1 + Invalid Type = -1 ) type GeneralType interface { String() string GetCommandType() CommandType + GetDefault() GeneralType IsON() bool } diff --git a/cmd/cron/cron.go b/cmd/cron/cron.go new file mode 100644 index 0000000..99cd8b5 --- /dev/null +++ b/cmd/cron/cron.go @@ -0,0 +1,58 @@ +package cron + +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) + +type Type int8 + +const ( + ON Type = iota + 20 + OFF + + Invalid = -1 +) + +var ( + typeMap = map[Type]string{ + ON: cmd.OnName, + OFF: cmd.OffName, + } +) + +// String implements cmd.GeneralType +func (t Type) String() string { + return typeMap[t] +} + +// GetCommandType implements cmd.GeneralType +func (t Type) GetCommandType() cmd.CommandType { + return cmd.Cron +} + +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return OFF +} + +func ParseType(s string) Type { + for typeEnum, typeName := range typeMap { + if s == typeName { + return typeEnum + } + } + return Invalid +} + +func (t Type) IsValid() bool { + return t != Invalid +} + +func IsValid(s string) bool { + return ParseType(s).IsValid() +} + +// IsON implements cmd.GeneralType +func (t Type) IsON() bool { + return t == ON +} diff --git a/cmd/mmdb/mmdb.go b/cmd/mmdb/mmdb.go index 9ddb352..ab4607d 100644 --- a/cmd/mmdb/mmdb.go +++ b/cmd/mmdb/mmdb.go @@ -1,11 +1,13 @@ package mmdb -import "github.com/Clash-Mini/Clash.Mini/cmd" +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) type Type int8 const ( - Lite Type = iota + Lite Type = iota + 15 Max Invalid = -1 @@ -18,14 +20,21 @@ var ( } ) +// String implements cmd.GeneralType func (t Type) String() string { return typeMap[t] } +// GetCommandType implements cmd.GeneralType func (t Type) GetCommandType() cmd.CommandType { return cmd.MMDB } +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return Max +} + func ParseType(s string) Type { for typeEnum, typeName := range typeMap { if s == typeName { @@ -43,6 +52,7 @@ func IsValid(s string) bool { return ParseType(s).IsValid() } +// IsON implements cmd.GeneralType func (t Type) IsON() bool { return t == Lite } diff --git a/cmd/parser/parser.go b/cmd/parser/parser.go new file mode 100644 index 0000000..14dad44 --- /dev/null +++ b/cmd/parser/parser.go @@ -0,0 +1,43 @@ +package parser + +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" + "github.com/Clash-Mini/Clash.Mini/cmd/auto" + "github.com/Clash-Mini/Clash.Mini/cmd/cron" + "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" + "github.com/Clash-Mini/Clash.Mini/cmd/proxy" + "github.com/Clash-Mini/Clash.Mini/cmd/startup" + "github.com/Clash-Mini/Clash.Mini/cmd/sys" + "github.com/Clash-Mini/Clash.Mini/cmd/task" + "github.com/Clash-Mini/Clash.Mini/log" +) + +func GetCmdDefaultValue(command cmd.CommandType, value string) (defaultValue cmd.GeneralType) { + defaultValue = GetCmdValue(command, value) + if defaultValue != cmd.Invalid { + defaultValue = defaultValue.GetDefault() + } + return +} + +func GetCmdValue(command cmd.CommandType, value string) cmd.GeneralType { + switch command { + case cmd.Task: + return task.ParseType(value) + case cmd.Sys: + return sys.ParseType(value) + case cmd.MMDB: + return mmdb.ParseType(value) + case cmd.Cron: + return cron.ParseType(value) + case cmd.Proxy: + return proxy.ParseType(value) + case cmd.Startup: + return startup.ParseType(value) + case cmd.Auto: + return auto.ParseType(value) + default: + log.Errorln("command \"%s\" is not support\n", command) + return cmd.Invalid + } +} diff --git a/cmd/proxy/proxy.go b/cmd/proxy/proxy.go new file mode 100644 index 0000000..2ab5fd2 --- /dev/null +++ b/cmd/proxy/proxy.go @@ -0,0 +1,60 @@ +package proxy + +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) + +type Type int8 + +const ( + Direct Type = iota + 30 + Rule + Global + + Invalid = -1 +) + +var ( + typeMap = map[Type]string{ + Direct: "Direct", + Rule: "Rule", + Global: "Global", + } +) + +// String implements cmd.GeneralType +func (t Type) String() string { + return typeMap[t] +} + +// GetCommandType implements cmd.GeneralType +func (t Type) GetCommandType() cmd.CommandType { + return cmd.Sys +} + +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return Rule +} + +func ParseType(s string) Type { + for typeEnum, typeName := range typeMap { + if s == typeName { + return typeEnum + } + } + return Invalid +} + +func (t Type) IsValid() bool { + return t != Invalid +} + +func IsValid(s string) bool { + return ParseType(s).IsValid() +} + +// IsON implements cmd.GeneralType +func (t Type) IsON() bool { + return t == Rule || t == Global +} diff --git a/cmd/startup/startup.go b/cmd/startup/startup.go new file mode 100644 index 0000000..b330c2d --- /dev/null +++ b/cmd/startup/startup.go @@ -0,0 +1,58 @@ +package startup + +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) + +type Type int8 + +const ( + ON Type = iota + 25 + OFF + + Invalid = -1 +) + +var ( + typeMap = map[Type]string{ + ON: cmd.OnName, + OFF: cmd.OffName, + } +) + +// String implements cmd.GeneralType +func (t Type) String() string { + return typeMap[t] +} + +// GetCommandType implements cmd.GeneralType +func (t Type) GetCommandType() cmd.CommandType { + return cmd.Sys +} + +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return OFF +} + +func ParseType(s string) Type { + for typeEnum, typeName := range typeMap { + if s == typeName { + return typeEnum + } + } + return Invalid +} + +func (t Type) IsValid() bool { + return t != Invalid +} + +func IsValid(s string) bool { + return ParseType(s).IsValid() +} + +// IsON implements cmd.GeneralType +func (t Type) IsON() bool { + return t == ON +} diff --git a/cmd/sys/sys.go b/cmd/sys/sys.go index fe6fde4..f05494e 100644 --- a/cmd/sys/sys.go +++ b/cmd/sys/sys.go @@ -1,11 +1,13 @@ package sys -import "github.com/Clash-Mini/Clash.Mini/cmd" +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) type Type int8 const ( - ON Type = 1 + iota + ON Type = iota + 5 OFF Invalid = -1 @@ -13,19 +15,26 @@ const ( var ( typeMap = map[Type]string{ - ON: "ON", - OFF: "OFF", + ON: cmd.OnName, + OFF: cmd.OffName, } ) +// String implements cmd.GeneralType func (t Type) String() string { return typeMap[t] } +// GetCommandType implements cmd.GeneralType func (t Type) GetCommandType() cmd.CommandType { return cmd.Sys } +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return OFF +} + func ParseType(s string) Type { for typeEnum, typeName := range typeMap { if s == typeName { @@ -43,6 +52,7 @@ func IsValid(s string) bool { return ParseType(s).IsValid() } +// IsON implements cmd.GeneralType func (t Type) IsON() bool { return t == ON } diff --git a/cmd/task/task.go b/cmd/task/task.go index be30eec..43e6964 100644 --- a/cmd/task/task.go +++ b/cmd/task/task.go @@ -1,11 +1,13 @@ package task -import "github.com/Clash-Mini/Clash.Mini/cmd" +import ( + "github.com/Clash-Mini/Clash.Mini/cmd" +) type Type int8 const ( - ON Type = iota + ON Type = iota + 10 OFF Invalid = -1 @@ -13,19 +15,26 @@ const ( var ( typeMap = map[Type]string{ - ON: "ON", - OFF: "OFF", + ON: cmd.OnName, + OFF: cmd.OffName, } ) +// String implements cmd.GeneralType func (t Type) String() string { return typeMap[t] } +// GetCommandType implements cmd.GeneralType func (t Type) GetCommandType() cmd.CommandType { return cmd.Task } +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() cmd.GeneralType { + return OFF +} + func ParseType(s string) Type { for typeEnum, typeName := range typeMap { if s == typeName { @@ -43,6 +52,7 @@ func IsValid(s string) bool { return ParseType(s).IsValid() } +// IsON implements cmd.GeneralType func (t Type) IsON() bool { return t == ON } diff --git a/cmd/type.go b/cmd/type.go new file mode 100644 index 0000000..43d9eb3 --- /dev/null +++ b/cmd/type.go @@ -0,0 +1,34 @@ +package cmd + +type Type int8 + +var ( + typeMap = map[Type]string{ + ON: OnName, + OFF: OffName, + } +) + +// String implements cmd.GeneralType +func (t Type) String() string { + return typeMap[t] +} + +// GetCommandType implements cmd.GeneralType +func (t Type) GetCommandType() CommandType { + return Sys +} + +// GetDefault implements cmd.GeneralType +func (t Type) GetDefault() GeneralType { + return OFF +} + +func (t Type) IsValid() bool { + return t != Invalid +} + +// IsON implements cmd.GeneralType +func (t Type) IsON() bool { + return t == ON +} diff --git a/config.yaml b/config.yaml index 7f64427..aec9b7a 100644 --- a/config.yaml +++ b/config.yaml @@ -1,5 +1,6 @@ -# "http://127.0.0.1:25500/getprofile?name=profiles/own.ini&token=123456" -mixed-port: 7890 +# Yaml : Mini.yaml +# Clash.Mini : http://127.0.0.1:25500/getprofile?name=profiles/own.ini&token=123456 +mixed-port: 7890 allow-lan: true mode: Rule log-level: info diff --git a/constant/constant.go b/constant/constant.go new file mode 100644 index 0000000..8b1cde6 --- /dev/null +++ b/constant/constant.go @@ -0,0 +1,66 @@ +package constant + +import ( + "os" + path "path/filepath" + "runtime" + "time" + + "github.com/Clash-Mini/Clash.Mini/log" +) + +const ( + ConfigFile = "config.yaml" + ConfigSuffix = ".yaml" + CacheFile = ".cache" + + Localhost = "127.0.0.1" + ControllerPort = "9090" + DashboardPort = "8070" + + NotifyDelay = 2 * time.Second + + GitHubCDN = "https://cdn.jsdelivr.net/gh/" + MMDBSuffix = "@release/Country.mmdb" + + UIConfigMsgTitle = "配置提示" + + SubConverterUrl = "https://id9.cc" +) + +var ( + PWD string + ConfigDir = "profile" + CacheDir = "cache" + + osWindows bool +) + +func init() { + var err error + PWD, err = os.Getwd() + if err != nil { + panic(err) + } + ConfigDir = path.Join(PWD, ConfigDir) + CacheDir = path.Join(PWD, CacheDir) + osWindows = runtime.GOOS == "windows" + if _, err := os.Stat(ConfigDir); err != nil { + if os.IsNotExist(err) { + if err = os.Mkdir(ConfigDir, 0666); err != nil { + log.Fatalln("cannot create config dir: %v", err) + } + } + } + if _, err := os.Stat(CacheDir); err != nil { + if os.IsNotExist(err) { + if err = os.Mkdir(CacheDir, 0666); err != nil { + log.Fatalln("cannot create cache dir: %v", err) + } + } + } +} + +func IsWindows() bool { + return osWindows +} diff --git a/controller/add_config.go b/controller/add_config.go index c4acff8..5bd157c 100644 --- a/controller/add_config.go +++ b/controller/add_config.go @@ -1,17 +1,22 @@ package controller import ( - "bytes" "fmt" - "github.com/lxn/walk" - . "github.com/lxn/walk/declarative" "io" "io/ioutil" "net/http" "os" - "path/filepath" + path "path/filepath" "regexp" "strings" + "time" + + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/util" + + "github.com/lxn/walk" + . "github.com/lxn/walk/declarative" ) func AddConfig() { @@ -21,9 +26,14 @@ func AddConfig() { err := MainWindow{ Visible: false, AssignTo: &AddMenuConfig, - Title: "添加配置 - Clash.Mini", + Name: "AddConfig", + Title: util.GetSubTitle("添加配置"), Icon: appIcon, - Layout: VBox{}, //布局 + Font: Font{ + Family: "Microsoft YaHei", + PointSize: 9, + }, + Layout: VBox{Alignment: AlignHCenterVCenter}, //布局 Children: []Widget{ //不动态添加控件的话,在此布局或者QT设计器设计UI文件,然后加载。 Composite{ Layout: VBox{}, @@ -49,40 +59,60 @@ func AddConfig() { PushButton{ Text: "添加", OnClicked: func() { - if oUrlName != nil && oUrl != nil && strings.HasPrefix(oUrl.Text(), "http") { - client := &http.Client{} - res, _ := http.NewRequest(http.MethodGet, oUrl.Text(), nil) - res.Header.Add("User-Agent", "clash") - resp, err := client.Do(res) - defer resp.Body.Close() - if err != nil { - walk.MsgBox(AddMenuConfig, "配置提示", "请检查订阅链接是否正确!", walk.MsgBoxIconError) - return + urlMatched, _ := regexp.MatchString("^https?://(\\w.+.)?(\\w.+\\.\\w.+)", oUrl.Text()) + if oUrlName != nil && oUrl != nil && urlMatched { + client := &http.Client{Timeout: 10 * time.Second} + req, _ := http.NewRequest(http.MethodGet, oUrl.Text(), nil) + req.Header.Add("User-Agent", "clash") + rsp, err := client.Do(req) + defer rsp.Body.Close() + var rspBody string + if rsp != nil { + rspBody = string(util.IgnoreErrorBytes(ioutil.ReadAll(rsp.Body))) + } + if err != nil || (rsp != nil && rsp.StatusCode != http.StatusOK) { + log.Warnln("AddConfig Do error: %v, request url: %s, response: [%s] %s", + err, req.URL.String(), rsp.StatusCode, rspBody) + var errMsg string + if err == http.ErrHandlerTimeout || + (rsp != nil && rsp.StatusCode == http.StatusInternalServerError || + rsp.StatusCode == http.StatusServiceUnavailable) { + errMsg = "无法访问到订阅链接!" + } else if err == http.ErrNoLocation || err == http.ErrMissingFile || + (rsp != nil && rsp.StatusCode == http.StatusNotFound) { + errMsg = "请检查订阅链接是否正确且未失效!" + } else { + errMsg = "下载失败!" + } + walk.MsgBox(AddMenuConfig, constant.UIConfigMsgTitle, errMsg, walk.MsgBoxIconError) } - if resp != nil && resp.StatusCode == 200 { - body, _ := ioutil.ReadAll(resp.Body) - Reg, _ := regexp.MatchString(`port`, string(body)) - if Reg != true { - fmt.Println("错误的内容") - walk.MsgBox(AddMenuConfig, "配置提示", "检测为非Clash配置,添加配置失败!", walk.MsgBoxIconError) + if rsp != nil && rsp.StatusCode == 200 { + Reg, err := regexp.MatchString(`proxy-groups`, rspBody) + if err != nil || !Reg { + log.Errorln("配置内容有误: %v", err) + walk.MsgBox(AddMenuConfig, constant.UIConfigMsgTitle, + "检测为非Clash配置,添加配置失败!", walk.MsgBoxIconError) return } - rebody := ioutil.NopCloser(bytes.NewReader(body)) - ConfigDir := filepath.Join(".", "Profile", oUrlName.Text()+".yaml") - f, err := os.Create(ConfigDir) + rspBodyReader := ioutil.NopCloser(strings.NewReader(rspBody)) + configDir := path.Join(constant.ConfigDir, oUrlName.Text()+constant.ConfigSuffix) + f, err := os.Create(configDir) if err != nil { panic(err) } - _, err = f.WriteString(`# Clash.Mini : ` + oUrl.Text() + "\n") - _, err = io.Copy(f, rebody) + _, err = f.WriteString(fmt.Sprintf("# Clash.Mini : %s\n", oUrl.Text())) + _, err = io.Copy(f, rspBodyReader) err = f.Close() - walk.MsgBox(AddMenuConfig, "配置提示", "添加配置成功!", walk.MsgBoxIconInformation) + walk.MsgBox(AddMenuConfig, constant.UIConfigMsgTitle, + "添加配置成功!", walk.MsgBoxIconInformation) AddMenuConfig.Close() } else { - walk.MsgBox(AddMenuConfig, "配置提示", "请检查订阅链接是否正确!", walk.MsgBoxIconError) + walk.MsgBox(AddMenuConfig, constant.UIConfigMsgTitle, + "请检查订阅链接是否正确!", walk.MsgBoxIconError) } } else { - walk.MsgBox(AddMenuConfig, "配置提示", "请输入订阅名称和链接!", walk.MsgBoxIconError) + walk.MsgBox(AddMenuConfig, constant.UIConfigMsgTitle, + "请输入并检查订阅名称和链接!", walk.MsgBoxIconError) } }, }, diff --git a/controller/cron.go b/controller/cron.go new file mode 100644 index 0000000..16d45a1 --- /dev/null +++ b/controller/cron.go @@ -0,0 +1,80 @@ +package controller + +import ( + "bufio" + "io/ioutil" + "os" + path "path/filepath" + "regexp" + "strings" + + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/notify" + + "github.com/robfig/cron/v3" +) + +func CronTask() { + c := cron.New() + c.AddFunc("@every 3h", func() { + type cronInfo struct { + Name string + Url string + } + currentName, _ := CheckConfig() + InfoArr, err := ioutil.ReadDir(constant.ConfigDir) + if err != nil { + log.Fatalln("CronTask ReadDir error: %v", err) + } + var match string + items := make([]*cronInfo, 0) + for _, cf := range InfoArr { + if path.Ext(cf.Name()) == constant.ConfigSuffix { + content, err := os.OpenFile(path.Join(constant.ConfigDir, cf.Name()), os.O_RDWR, 0666) + if err != nil { + log.Fatalln("CronTask OpenFile error: %v", err) + } + scanner := bufio.NewScanner(content) + Reg := regexp.MustCompile(`# Clash.Mini : (http.*)`) + for scanner.Scan() { + if Reg.MatchString(scanner.Text()) { + match = Reg.FindStringSubmatch(scanner.Text())[1] + break + } else { + match = "" + } + } + content.Close() + items = append(items, &cronInfo{ + Name: strings.TrimSuffix(cf.Name(), path.Ext(cf.Name())), + Url: match, + }) + } + } + success := 0 + fail := 0 + for i, v := range items { + if v.Url != "" { + log.Infoln("CronTask Info: %v", v) + err := updateConfig(v.Name, v.Url) + if err != true { + log.Errorln(v.Name + "更新失败") + items[i].Url = "更新失败" + fail++ + } else { + log.Infoln(v.Name + "更新成功") + items[i].Url = "成功更新" + success++ + if v.Name == currentName { + putConfig(v.Name) + } + } + + } + } + notify.PushProfileCronFinished(success, fail) + }) + c.Start() + select {} +} diff --git a/controller/edit_config.go b/controller/edit_config.go index 326c628..591d1f0 100644 --- a/controller/edit_config.go +++ b/controller/edit_config.go @@ -1,11 +1,15 @@ package controller import ( + "github.com/Clash-Mini/Clash.Mini/log" "io/ioutil" "os" path "path/filepath" "strings" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/util" + "github.com/lxn/walk" . "github.com/lxn/walk/declarative" "github.com/lxn/win" @@ -18,9 +22,14 @@ func EditConfig(configName, configUrl string) { err := MainWindow{ Visible: true, AssignTo: &editMenuConfig, - Title: "编辑配置 - Clash.Mini", + Name: "EditConfig", + Title: util.GetSubTitle("编辑配置"), Icon: appIcon, - Layout: VBox{}, //布局 + Font: Font{ + Family: "Microsoft YaHei", + PointSize: 9, + }, + Layout: VBox{Alignment: AlignHCenterVCenter}, //布局 Children: []Widget{ //不动态添加控件的话,在此布局或者QT设计器设计UI文件,然后加载。 Composite{ Layout: VBox{}, @@ -49,9 +58,10 @@ func EditConfig(configName, configUrl string) { Text: "确认修改", OnClicked: func() { if oUrlName != nil { - if win.IDYES == walk.MsgBox(editMenuConfig, "提示", "确认修改该配置?", walk.MsgBoxYesNo) { - configDir := path.Join(".", "Profile", configName+".yaml") - newConfigDir := path.Join(".", "Profile", oUrlName.Text()+".yaml") + if win.IDYES == walk.MsgBox(editMenuConfig, "提示", + "确认修改该配置?", walk.MsgBoxYesNo) { + configDir := path.Join(constant.ConfigDir, configName+constant.ConfigSuffix) + newConfigDir := path.Join(constant.ConfigDir, oUrlName.Text()+constant.ConfigSuffix) buf, err := ioutil.ReadFile(configDir) if err != nil { panic(err) @@ -67,17 +77,27 @@ func EditConfig(configName, configUrl string) { newContent := subStr + oUrl.Text() + "\n" + content err = ioutil.WriteFile(configDir, []byte(newContent), 0) } + CacheNameDir := path.Join(constant.CacheDir, configName+constant.ConfigSuffix+constant.CacheFile) + NewCacheNameDir := path.Join(constant.CacheDir, oUrlName.Text()+constant.ConfigSuffix+constant.CacheFile) + err = os.Rename(CacheNameDir, NewCacheNameDir) + if err != nil { + log.Errorln("无cache配置") + } err = os.Rename(configDir, newConfigDir) if err != nil { - walk.MsgBox(editMenuConfig, "配置提示", "配置修改失败!", walk.MsgBoxIconError) + walk.MsgBox(editMenuConfig, constant.UIConfigMsgTitle, + "配置修改失败!", walk.MsgBoxIconError) return } else { - walk.MsgBox(editMenuConfig, "配置提示", "配置修改成功!", walk.MsgBoxIconInformation) + walk.MsgBox(editMenuConfig, constant.UIConfigMsgTitle, + "配置修改成功!", walk.MsgBoxIconInformation) + } err = editMenuConfig.Close() } } else { - walk.MsgBox(editMenuConfig, "配置提示", "请输入订阅名称和链接!", walk.MsgBoxIconError) + walk.MsgBox(editMenuConfig, constant.UIConfigMsgTitle, + "请输入订阅名称和链接!", walk.MsgBoxIconError) } }, }, diff --git a/controller/menu_config.go b/controller/menu_config.go index f7e6f4b..5a1ec60 100644 --- a/controller/menu_config.go +++ b/controller/menu_config.go @@ -3,15 +3,17 @@ package controller import ( "fmt" "os" - "path/filepath" + path "path/filepath" "time" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/notify" + "github.com/Clash-Mini/Clash.Mini/util" + "github.com/lxn/walk" . "github.com/lxn/walk/declarative" "github.com/lxn/win" "github.com/skratchdot/open-golang/open" - - "github.com/Clash-Mini/Clash.Mini/notify" ) var ( @@ -20,7 +22,10 @@ var ( currStyle int32 xScreen int32 yScreen int32 - exPath, _ = os.Getwd() + dpiScale float64 + + WindowMap = make(map[string]*walk.MainWindow) + MenuConfig *walk.MainWindow ) func init() { @@ -29,32 +34,68 @@ func init() { } func StyleMenuRun(w *walk.MainWindow, SizeW int32, SizeH int32) { + if dpiScale == 0 { + dpiScale = float64(win.GetDpiForWindow(w.Handle())) / 96.0 + } + //WindowMap[w.Name()] = w currStyle = win.GetWindowLong(w.Handle(), win.GWL_STYLE) - win.SetWindowLong(w.Handle(), win.GWL_STYLE, currStyle&^win.WS_SIZEBOX&^win.WS_MINIMIZEBOX&^win.WS_MAXIMIZEBOX) //removes default styling + //removes default styling + win.SetWindowLong(w.Handle(), win.GWL_STYLE, currStyle&^win.WS_SIZEBOX&^win.WS_MINIMIZEBOX&^win.WS_MAXIMIZEBOX) hMenu = win.GetSystemMenu(w.Handle(), false) win.RemoveMenu(hMenu, win.SC_CLOSE, win.MF_BYCOMMAND) + SizeW, SizeH = CalcDpiScaledSize(SizeW, SizeH) win.SetWindowPos(w.Handle(), 0, (xScreen-SizeW)/2, (yScreen-SizeH)/2, SizeW, SizeH, win.SWP_FRAMECHANGED) - win.ShowWindow(w.Handle(), win.SW_SHOW) + //win.ShowWindow(w.Handle(), win.SW_SHOW) + win.ShowWindow(w.Handle(), win.SW_SHOWNORMAL) + win.SetFocus(w.Handle()) w.Run() + //w.Closing().Attach(func(canceled *bool, reason walk.CloseReason) { + // w.Dispose() + // WindowMap[w.Name()] = nil + // //} + //}) +} + +func CalcDpiScaledSize(SizeW int32, SizeH int32) (int32, int32) { + return int32(float64(SizeW) * dpiScale), int32(float64(SizeH) * dpiScale) +} + +func ShowMenuConfig() { + //if MenuConfig == nil { + MenuConfigInit() + //} else { + //win.SetActiveWindow(MenuConfig.Handle()) + //win.SetFocus(MenuConfig.Handle()) + //MenuConfig.SetFocus() + //} } -func MenuConfig() { +func MenuConfigInit() { var ( model = NewConfigInfoModel() tv *walk.TableView - MenuConfig *walk.MainWindow configIni *walk.Label updateConfigs *walk.PushButton + + actUpdateConfig *walk.Action + actEditConfig *walk.Action + actDeleteConfig *walk.Action ) - configName, _ := checkConfig() + configName, _ := CheckConfig() err := MainWindow{ Visible: false, AssignTo: &MenuConfig, - Name: "ok", - Title: "配置管理 - Clash.Mini", + Name: "MenuSettings", + Title: util.GetSubTitle("配置管理"), Icon: appIcon, - Layout: VBox{}, //布局 + Font: Font{ + Family: "Microsoft YaHei", + PointSize: 9, + }, + //MinSize: Size{Width: 600, Height: 250}, + //MaxSize: Size{Width: 800, Height: 300}, + Layout: VBox{Alignment: AlignHCenterVCenter}, //布局 Children: []Widget{ //不动态添加控件的话,在此布局或者QT设计器设计UI文件,然后加载。 Composite{ Layout: VBox{ @@ -77,7 +118,8 @@ func MenuConfig() { AssignTo: &tv, CheckBoxes: false, ColumnsOrderable: true, - MultiSelection: true, + MultiSelection: false, + Alignment: AlignHCenterVCenter, Columns: []TableViewColumn{ {Title: "配置名称"}, {Title: "文件大小"}, @@ -85,6 +127,12 @@ func MenuConfig() { {Title: "订阅地址", Width: 295}, }, Model: model, + OnSelectedIndexesChanged: func() { + hasConfig := len(tv.SelectedIndexes()) == 1 + actUpdateConfig.SetEnabled(hasConfig) + actEditConfig.SetEnabled(hasConfig) + actDeleteConfig.SetEnabled(hasConfig) + }, }, }, }, @@ -109,7 +157,7 @@ func MenuConfig() { }, }, Action{ - AssignTo: nil, + AssignTo: &actUpdateConfig, Text: "升级配置", OnTriggered: func() { index := tv.CurrentIndex() @@ -118,20 +166,22 @@ func MenuConfig() { configUrl := model.items[index].Url success := updateConfig(configName, configUrl) if !success { - walk.MsgBox(MenuConfig, "提示", "更新配置失败", walk.MsgBoxIconError) + walk.MsgBox(MenuConfig, "提示", + "更新配置失败", walk.MsgBoxIconError) return } walk.MsgBox(MenuConfig, "提示", fmt.Sprintf("成功更新 %s 配置!", configName), walk.MsgBoxIconInformation) } else { - walk.MsgBox(MenuConfig, "提示", "请选择要更新的配置!", walk.MsgBoxIconError) + walk.MsgBox(MenuConfig, "提示", + "请选择要更新的配置!", walk.MsgBoxIconError) return } model.ResetRows() }, }, Action{ - AssignTo: nil, + AssignTo: &actEditConfig, Text: "编辑配置", OnTriggered: func() { index := tv.CurrentIndex() @@ -144,32 +194,39 @@ func MenuConfig() { time.Sleep(200 * time.Millisecond) MenuConfig.SetVisible(true) } else { - walk.MsgBox(MenuConfig, "提示", "请选择要编辑的配置!", walk.MsgBoxIconError) + walk.MsgBox(MenuConfig, "提示", + "请选择要编辑的配置!", walk.MsgBoxIconError) return } model.ResetRows() }, }, Action{ - AssignTo: nil, + AssignTo: &actDeleteConfig, Text: "删除配置", OnTriggered: func() { index := tv.CurrentIndex() if index != -1 { - ConfigName := model.items[index].Name - if win.IDYES == walk.MsgBox(MenuConfig, "提示", "请确认是否删除该配置?", walk.MsgBoxYesNo) { - err := os.Remove(filepath.Join(".", "Profile", ConfigName+".yaml")) + deleteConfigName := model.items[index].Name + if win.IDYES == walk.MsgBox(MenuConfig, "提示", + "请确认是否删除该配置?", walk.MsgBoxYesNo) { + err := os.Remove(path.Join(constant.CacheDir, + deleteConfigName+constant.ConfigSuffix+constant.CacheFile)) + err = os.Remove(path.Join(constant.ConfigDir, + deleteConfigName+constant.ConfigSuffix)) if err != nil { - walk.MsgBox(MenuConfig, "提示", "删除配置失败!", walk.MsgBoxIconError) + walk.MsgBox(MenuConfig, "提示", + "删除配置失败!", walk.MsgBoxIconError) return } else { walk.MsgBox(MenuConfig, "提示", - fmt.Sprintf("成功删除 %s 配置!", configName), + fmt.Sprintf("成功删除 %s 配置!", deleteConfigName), walk.MsgBoxIconInformation) } } } else { - walk.MsgBox(MenuConfig, "提示", "请选择要删除的配置!", walk.MsgBoxIconError) + walk.MsgBox(MenuConfig, "提示", + "请选择要删除的配置!", walk.MsgBoxIconError) return } model.ResetRows() @@ -184,12 +241,12 @@ func MenuConfig() { walk.MsgBox(MenuConfig, "提示", fmt.Sprintf("成功启用 %s 配置!", configName), walk.MsgBoxIconInformation) - configIni.SetText(`当前配置: ` + configName + `.yaml`) + configIni.SetText(`当前配置: ` + configName + constant.ConfigSuffix) go func() { time.Sleep(1 * time.Second) userInfo := UpdateSubscriptionUserInfo() if len(userInfo.UnusedInfo) > 0 { - notify.NotifyINFO(userInfo.UsedInfo, userInfo.UnusedInfo, userInfo.ExpireInfo) + notify.PushFlowInfo(userInfo.UsedInfo, userInfo.UnusedInfo, userInfo.ExpireInfo) } }() } else { @@ -203,15 +260,17 @@ func MenuConfig() { Text: "一键更新", AssignTo: &updateConfigs, OnClicked: func() { + updateConfigs.SetEnabled(false) updateConfigs.SetText("更新中") - model.TaskCorn() + model.TaskCron() updateConfigs.SetText("更新完成") + updateConfigs.SetEnabled(true) }, }, PushButton{ Text: "订阅转换", OnClicked: func() { - err := open.Run("https://id9.cc") + err := open.Run(constant.SubConverterUrl) if err != nil { return } @@ -220,7 +279,7 @@ func MenuConfig() { PushButton{ Text: "打开目录", OnClicked: func() { - err := open.Run(filepath.Join(exPath, "Profile")) + err := open.Run(constant.ConfigDir) if err != nil { return } @@ -233,6 +292,8 @@ func MenuConfig() { if err != nil { return } + MenuConfig.Dispose() + MenuConfig = nil }, }, }, diff --git a/controller/mmdb.go b/controller/mmdb.go index bf161a7..9396661 100644 --- a/controller/mmdb.go +++ b/controller/mmdb.go @@ -2,39 +2,61 @@ package controller import ( "io" + "io/ioutil" "net/http" "os" path "path/filepath" + "strings" + "time" - "github.com/lxn/walk" - - "github.com/Clash-Mini/Clash.Mini/cmd" "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" + + "github.com/lxn/walk" ) func GetMMDB(value mmdb.Type) { + // 检查是否存在 var url string - client := &http.Client{} + client := &http.Client{ + Timeout: 10 * time.Second, + } switch value { case mmdb.Max: - url = "https://cdn.jsdelivr.net/gh/Dreamacro/maxmind-geoip@release/Country.mmdb" + url = strings.Join([]string{constant.GitHubCDN, "Dreamacro/maxmind-geoip", constant.MMDBSuffix}, "") break case mmdb.Lite: - url = "https://cdn.jsdelivr.net/gh/Hackl0us/GeoIP2-CN@release/Country.mmdb" + url = strings.Join([]string{constant.GitHubCDN, "Hackl0us/GeoIP2-CN", constant.MMDBSuffix}, "") break } - res, _ := http.NewRequest(http.MethodGet, url, nil) - resp, err := client.Do(res) - defer resp.Body.Close() - if err != nil { - walk.MsgBox(nil, "配置提示", "请检查订阅链接是否正确!", walk.MsgBoxIconError) + req, _ := http.NewRequest(http.MethodGet, url, nil) + rsp, err := client.Do(req) + defer rsp.Body.Close() + if err != nil || (rsp != nil && rsp.StatusCode != http.StatusOK) { + rspBody, _ := ioutil.ReadAll(rsp.Body) + log.Warnln("GetMMDB Do error: %v, request url: %s, response: [%s] %s", + err, req.URL.String(), rsp.StatusCode, string(rspBody)) + var errMsg string + if err == http.ErrHandlerTimeout || (rsp != nil && rsp.StatusCode == http.StatusInternalServerError || + rsp.StatusCode == http.StatusServiceUnavailable) { + errMsg = "无法访问到链接!" + } else if err == http.ErrNoLocation || err == http.ErrMissingFile || + (rsp != nil && rsp.StatusCode == http.StatusNotFound) { + errMsg = "链接已失效!" + } else { + errMsg = "下载失败!" + } + walk.MsgBox(nil, constant.UIConfigMsgTitle, errMsg, walk.MsgBoxIconError) } - ConfigDir := path.Join(".", "Country.mmdb") - f, err := os.OpenFile(ConfigDir, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644) + mmdbFile := path.Join(".", "Country.mmdb") + f, err := os.OpenFile(mmdbFile, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0644) defer f.Close() if err != nil { - panic(err) + if !os.IsNotExist(err) { + log.Fatalln("GetMMDB OpenFile error: %v", err) + } } - io.Copy(f, resp.Body) - RegCmd(cmd.MMDB, value) + io.Copy(f, rsp.Body) + RegCmd(value) } diff --git a/controller/profile_info.go b/controller/profile_info.go index 4990f8b..b9744bf 100644 --- a/controller/profile_info.go +++ b/controller/profile_info.go @@ -7,18 +7,19 @@ import ( "fmt" "io" "io/ioutil" - "log" + "math" "net/http" "os" - "path" - "path/filepath" + path "path/filepath" "regexp" "strings" "time" - "github.com/lxn/walk" - + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" "github.com/Clash-Mini/Clash.Mini/util" + + "github.com/lxn/walk" ) type ConfigInfo struct { @@ -35,40 +36,28 @@ type ConfigInfoModel struct { items []*ConfigInfo } -const ( - localHost = `http://127.0.0.1` -) - var ( fileSizeUnits = []string{"", "K", "M", "G", "T", "P", "E"} ) // 格式化为可读文件大小 func formatHumanizationFileSize(fileSize int64) (size string) { - order := 0 - floatSize := float64(fileSize) - for { - if floatSize < 1024 || order >= len(fileSizeUnits) { - break - } - order++ - floatSize /= 1024 - } - return fmt.Sprintf("%.02f %sB", floatSize, fileSizeUnits[order]) + i := math.Floor(math.Log(float64(fileSize)) / math.Log(1024)) + return fmt.Sprintf("%.02f %sB", float64(fileSize)/math.Pow(1024, i), fileSizeUnits[int(i)]) } func (m *ConfigInfoModel) ResetRows() { - fileInfoArr, err := ioutil.ReadDir("./Profile") + fileInfoArr, err := ioutil.ReadDir(constant.ConfigDir) if err != nil { - log.Fatal(err) + log.Fatalln("ResetRows ReadDir error: %v", err) } var match string m.items = make([]*ConfigInfo, 0) for _, f := range fileInfoArr { - if path.Ext(f.Name()) == ".yaml" { - content, err := os.OpenFile("./Profile/"+f.Name(), os.O_RDWR, 0666) + if path.Ext(f.Name()) == constant.ConfigSuffix { + content, err := os.OpenFile(path.Join(constant.ConfigDir, f.Name()), os.O_RDWR, 0666) if err != nil { - log.Fatal(err) + log.Fatalln("ResetRows OpenFile error: %v", err) } scanner := bufio.NewScanner(content) Reg := regexp.MustCompile(`# Clash.Mini : (http.*)`) @@ -80,7 +69,9 @@ func (m *ConfigInfoModel) ResetRows() { match = "" } } - content.Close() + if err = content.Close(); err != nil { + return + } m.items = append(m.items, &ConfigInfo{ Name: strings.TrimSuffix(f.Name(), path.Ext(f.Name())), Size: formatHumanizationFileSize(f.Size()), @@ -122,6 +113,29 @@ func (m *ConfigInfoModel) Value(row, col int) interface{} { panic("unexpected col") } +func FileExist(path string) bool { + _, err := os.Lstat(path) + return !os.IsNotExist(err) +} + +func copyCacheFile(src, dst string) (err error) { + in, err := os.Open(src) + if err != nil { + return + } + defer in.Close() + out, err := os.Create(dst) + if err != nil { + return + } + defer out.Close() + if _, err = io.Copy(out, in); err != nil { + return + } + err = out.Sync() + return +} + func copyFileContents(src, dst, name string) (err error) { in, err := os.Open(src) if err != nil { @@ -132,13 +146,8 @@ func copyFileContents(src, dst, name string) (err error) { if err != nil { return } - out.WriteString("# Yaml : " + name + ".yaml\n") - defer func() { - cerr := out.Close() - if err == nil { - err = cerr - } - }() + out.WriteString(fmt.Sprintf("# Yaml : %s%s\n", name, constant.ConfigSuffix)) + defer out.Close() if _, err = io.Copy(out, in); err != nil { return } @@ -146,45 +155,55 @@ func copyFileContents(src, dst, name string) (err error) { return } -func putConfig(Name string) { - _, controllerPort := checkConfig() - err := copyFileContents("./Profile/"+Name+".yaml", "config.yaml", Name) - time.Sleep(1 * time.Second) +func putConfig(name string) { + cacheName, controllerPort := CheckConfig() + err := copyCacheFile(constant.CacheFile, path.Join(constant.CacheDir, cacheName+constant.CacheFile)) + if err != nil { + log.Errorln("putConfig copyCacheFile1 error: %v", err) + } + err = copyFileContents(path.Join(constant.ConfigDir, name+constant.ConfigSuffix), constant.ConfigFile, name) if err != nil { panic(err) } - str, _ := os.Getwd() - str = filepath.Join(str, "config.yaml") - url := fmt.Sprintf("%s:%s/configs", localHost, controllerPort) + err = copyCacheFile(path.Join(constant.CacheDir, name+constant.ConfigSuffix+constant.CacheFile), constant.CacheFile) + if err != nil { + log.Errorln("putConfig copyCacheFile2 error: %v", err) + } + time.Sleep(1 * time.Second) + str := path.Join(constant.PWD, constant.ConfigFile) + url := fmt.Sprintf("http://%s:%s/configs", constant.Localhost, controllerPort) body := make(map[string]interface{}) body["path"] = str bytesData, err := json.Marshal(body) if err != nil { - fmt.Println(err.Error()) + log.Errorln("putConfig Marshal error: %v", err) return } reader := bytes.NewReader(bytesData) - request, err := http.NewRequest("PUT", url, reader) + request, err := http.NewRequest(http.MethodPut, url, reader) if err != nil { - fmt.Println(err.Error()) + log.Errorln("putConfig NewRequest error: %v", err) return } request.Header.Set("Content-Type", "application/json;charset=UTF-8") client := http.Client{} resp, err := client.Do(request) if err != nil { - fmt.Println(err.Error()) + log.Errorln("putConfig Do error: %v", err) + return + } + + if err := resp.Body.Close(); err != nil { return } - resp.Body.Close() } -func checkConfig() (config, controller string) { - controller = "9090" - config = "config.yaml" - content, err := os.OpenFile("./config.yaml", os.O_RDWR, 0666) +func CheckConfig() (config, controllerPort string) { + controllerPort = constant.ControllerPort + config = constant.ConfigFile + content, err := os.OpenFile(path.Join(".", constant.ConfigFile), os.O_RDWR, 0666) if err != nil { - log.Fatal(err) + log.Fatalln("CheckConfig error: %v", err) } scanner := bufio.NewScanner(content) Reg := regexp.MustCompile(`# Yaml : (.*)`) @@ -199,18 +218,19 @@ func checkConfig() (config, controller string) { } for scanner.Scan() { if Reg2.MatchString(scanner.Text()) { - controller = Reg2.FindStringSubmatch(scanner.Text())[2] + controllerPort = Reg2.FindStringSubmatch(scanner.Text())[2] break } else { - controller = "9090" + controllerPort = constant.ControllerPort } } content.Close() - return config, controller + + return } -func updateConfig(Name, url string) bool { - client := &http.Client{} +func updateConfig(name, url string) bool { + client := &http.Client{Timeout: 5 * time.Second} res, _ := http.NewRequest(http.MethodGet, url, nil) res.Header.Add("User-Agent", "clash") resp, err := client.Do(res) @@ -219,14 +239,16 @@ func updateConfig(Name, url string) bool { } if resp != nil && resp.StatusCode == 200 { body, _ := ioutil.ReadAll(resp.Body) - Reg, _ := regexp.MatchString(`port`, string(body)) + Reg, _ := regexp.MatchString(`proxy-groups`, string(body)) if Reg != true { - fmt.Println("错误的内容") + log.Errorln("错误的内容") return false } rebody := ioutil.NopCloser(bytes.NewReader(body)) - f, errf := os.OpenFile(fmt.Sprintf("./Profile/%s.yaml", Name), os.O_RDWR|os.O_TRUNC|os.O_CREATE, 0766) - if errf != nil { + + f, err := os.OpenFile(path.Join(constant.ConfigDir, name+constant.ConfigSuffix), + os.O_RDWR|os.O_TRUNC|os.O_CREATE, 0766) + if err != nil { panic(err) return false } @@ -256,9 +278,9 @@ func UpdateSubscriptionUserInfo() (userInfo SubscriptionUserInfo) { var ( infoURL = "" ) - content, err := os.OpenFile("./config.yaml", os.O_RDWR, 0666) + content, err := os.OpenFile(path.Join(".", constant.ConfigFile), os.O_RDWR, 0666) if err != nil { - log.Fatal(err) + log.Fatalln("updateSubscriptionUserInfo error", err) } scanner := bufio.NewScanner(content) Reg := regexp.MustCompile(`# Clash.Mini : (http.*)`) @@ -273,11 +295,11 @@ func UpdateSubscriptionUserInfo() (userInfo SubscriptionUserInfo) { defer func(content *os.File) { err := content.Close() if err != nil { - fmt.Println(err) + log.Errorln("UpdateSubscriptionUserInfo close error", err) } }(content) if infoURL != "" { - client := &http.Client{} + client := &http.Client{Timeout: 5 * time.Second} res, _ := http.NewRequest(http.MethodGet, infoURL, nil) res.Header.Add("User-Agent", "clash") resp, err := client.Do(res) @@ -285,10 +307,20 @@ func UpdateSubscriptionUserInfo() (userInfo SubscriptionUserInfo) { return } userInfoStr := resp.Header.Get("Subscription-Userinfo") + if len(strings.TrimSpace(userInfoStr)) == 0 { + res2, _ := http.NewRequest(http.MethodGet, infoURL, nil) + res2.Header.Add("User-Agent", "Quantumultx") + resp2, err := client.Do(res2) + if err != nil { + return + } + userInfoStr = resp2.Header.Get("Subscription-Userinfo") + } if len(strings.TrimSpace(userInfoStr)) > 0 { + userInfo = SubscriptionUserInfo{} err = util.UnmarshalByValues(userInfoStr, &userInfo) if err != nil { - fmt.Println(err) + log.Errorln("UpdateSubscriptionUserInfo UnmarshalByValues error: %v", err) return } userInfo.Used = userInfo.Upload + userInfo.Download @@ -308,19 +340,19 @@ func UpdateSubscriptionUserInfo() (userInfo SubscriptionUserInfo) { return } -func (m *ConfigInfoModel) TaskCorn() { +func (m *ConfigInfoModel) TaskCron() { successNum := 0 failNum := 0 for i, v := range m.items { if v.Url != "" { - fmt.Println(v) + log.Infoln("TaskCron Info: %v", v) err := updateConfig(v.Name, v.Url) if err != true { - fmt.Println(v.Name + "更新失败") + log.Errorln(v.Name + "更新失败") m.items[i].Url = "更新失败" failNum++ } else { - fmt.Println(v.Name + "更新成功") + log.Infoln(v.Name + "更新成功") m.items[i].Url = "成功更新" successNum++ } diff --git a/controller/task.go b/controller/task.go index 60f1781..650a3ee 100644 --- a/controller/task.go +++ b/controller/task.go @@ -2,92 +2,107 @@ package controller import ( "fmt" - "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" - "github.com/Clash-Mini/Clash.Mini/cmd/sys" + "github.com/Clash-Mini/Clash.Mini/cmd/parser" "io/ioutil" - "log" "os" path "path/filepath" "strings" "syscall" "time" + "github.com/Clash-Mini/Clash.Mini/cmd" + "github.com/Clash-Mini/Clash.Mini/cmd/task" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/util" + "github.com/beevik/etree" "golang.org/x/sys/windows" "golang.org/x/sys/windows/registry" "golang.org/x/text/encoding/unicode" "golang.org/x/text/transform" - - "github.com/Clash-Mini/Clash.Mini/cmd" - "github.com/Clash-Mini/Clash.Mini/cmd/task" ) const ( taskExe = `schtasks` - runasVerb = "runas" + runasVerb = `runas` regTaskTree = `SOFTWARE\Clash.Mini` - taskName = "ClashMini" + taskName = `Clash.Mini` ) var ( - taskPath, _ = os.Getwd() - taskFile = path.Join(".", "task.xml") - taskFilePath = path.Join(taskPath, taskFile) + taskFile = path.Join(".", "task.xml") ) -func RegCompare(command cmd.CommandType) (b bool) { - key, err := registry.OpenKey(registry.CURRENT_USER, regTaskTree, registry.QUERY_VALUE) +func regInit(err error, times int, command cmd.GeneralType, caller string, action string) (finalError error) { if err != nil { - return false + if os.IsNotExist(err) && times == 0 { + finalError = RegCmd(command) + if finalError != nil { + log.Errorln("%s RegCmd error: %v", caller, finalError) + return finalError + } + } else { + log.Errorln("%s %s error: %v", caller, action, finalError) + return finalError + } + } + return nil +} + +func RegCompare(command cmd.CommandType) (b bool) { + var key registry.Key + var err error + for i := 0; i < 2; i++ { + key, err = registry.OpenKey(registry.CURRENT_USER, regTaskTree, registry.QUERY_VALUE) + if regInit(err, i, cmd.Invalid, "RegCompare", "OpenKey") != nil { + return false + } } defer func(key registry.Key) { err := key.Close() if err != nil { - fmt.Println(err) + log.Errorln("RegCompare Close error: %v", err) b = false } }(key) - value, _, err := key.GetStringValue(command.GetName()) - if err != nil { - fmt.Println(err) - return false + + var value string + for i := 0; i < 2; i++ { + value, _, err = key.GetStringValue(command.GetName()) + if regInit(err, i, parser.GetCmdDefaultValue(command, value), "RegCompare", "GetStringValue") != nil { + return false + } } - switch command { - case cmd.Task: - return task.ParseType(value).IsON() - case cmd.Sys: - return sys.ParseType(value).IsON() - case cmd.MMDB: - return mmdb.ParseType(value).IsON() - default: - fmt.Printf("command \"%s\" is not support\n", command) + + cmdValue := parser.GetCmdValue(command, value) + if cmdValue == cmd.Invalid { return false } + return cmdValue.IsON() } // RegCmd 注册命令 -func RegCmd(command cmd.CommandType, value cmd.GeneralType) error { +func RegCmd(value cmd.GeneralType) error { key, exists, err := registry.CreateKey(registry.CURRENT_USER, regTaskTree, registry.ALL_ACCESS) if err != nil { - log.Fatal(err) + log.Fatalln("RegCmd CreateKey failed: %v", err) } defer func(key registry.Key) { err := key.Close() if err != nil { - fmt.Println(err) + log.Errorln("RegCmd Close error: %v", err) return } }(key) - if exists { - fmt.Println("注册表键已存在") - } else { - fmt.Println("新建注册表键") + + if !exists { + log.Infoln("新建注册表键: HKCU\\%s", regTaskTree) } - switch command { - case cmd.Task, cmd.Sys, cmd.MMDB: - break - default: - return fmt.Errorf("command \"%s\" is not support", command) + command := value.GetCommandType() + if value == cmd.Invalid { + log.Infoln("被动新建注册表键值: HKCU\\%s\\%s", regTaskTree, command.GetName()) + value = value.GetDefault() } if !command.IsValid(value) { return fmt.Errorf("command \"%s\" is not supported type \"%s\"", command.GetName(), value.String()) @@ -104,7 +119,11 @@ func getTaskRegArgs(opera string, args ...string) string { return strings.Join(regArg, " ") } -// TaskCommand 执行任务计划 +// TaskCommandCall 执行任务计划并回调 +func TaskCommandCall(taskType task.Type, callback func(err error)) { + callback(TaskCommand(taskType)) +} + func TaskCommand(taskType task.Type) (err error) { var taskArgs string switch taskType { @@ -116,12 +135,12 @@ func TaskCommand(taskType task.Type) (err error) { if err = ioutil.WriteFile(taskFile, xml, 0644); err != nil { return err } - taskArgs = getTaskRegArgs("create", "/XML", taskFilePath) + taskArgs = getTaskRegArgs("create", "/XML", path.Join(constant.PWD, taskFile)) break case task.OFF: taskArgs = getTaskRegArgs("delete", "/f") } - err = RegCmd(cmd.Task, taskType) + err = RegCmd(taskType) if err != nil { return err } @@ -151,7 +170,7 @@ func TaskBuild() (xml []byte, err error) { tDescription := tRegistrationInfo.CreateElement("Description") tDescription.CreateText("此任务将在用户登录后自动运行Clash.Mini,如果停用此任务将无法保持Clash.Mini自动运行。") tAuthor := tRegistrationInfo.CreateElement("Author") - tAuthor.CreateText("Clash.Mini") + tAuthor.CreateText(util.AppTitle) tDate := tRegistrationInfo.CreateElement("Date") tDate.CreateText(time.Now().Format("2006-01-02T15:04:05")) @@ -159,6 +178,8 @@ func TaskBuild() (xml []byte, err error) { tLogonTrigger := tTriggers.CreateElement("LogonTrigger") tLogonTriggerEnabled := tLogonTrigger.CreateElement("Enabled") tLogonTriggerEnabled.CreateText("true") + tLogonTriggerDelay := tLogonTrigger.CreateElement("Delay") + tLogonTriggerDelay.CreateText("PT5S") tPrincipals := tTask.CreateElement("Principals") tPrincipal := tPrincipals.CreateElement("Principal") diff --git a/controller/webview.go b/controller/webview.go index 7ea6b95..84ab420 100644 --- a/controller/webview.go +++ b/controller/webview.go @@ -2,40 +2,61 @@ package controller import ( "fmt" - "time" - + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" "github.com/lxn/win" "github.com/skratchdot/open-golang/open" "github.com/zserge/lorca" ) const ( - localUIPattern = `%s:8070/?hostname=127.0.0.1&port=%s&secret=` + localUIPattern = `http://%s:%s/?hostname=%s&port=%s&secret=` ) func Dashboard() { - _, controllerPort := checkConfig() + _, controllerPort := CheckConfig() + + if dpiScale == 0 { + dpiScale = 1 + } + xScreen := int(win.GetSystemMetrics(win.SM_CXSCREEN)) yScreen := int(win.GetSystemMetrics(win.SM_CYSCREEN)) - pageWidth := 800 - pageHeight := 580 + var pageWidth int32 = 800 + var pageHeight int32 = 580 + pageWidth, pageHeight = CalcDpiScaledSize(pageWidth, pageHeight) PageInit := lorca.Bounds{ - Left: (xScreen - pageWidth) / 2, - Top: (yScreen - pageHeight) / 2, - Width: pageWidth, - Height: pageHeight, + Left: (xScreen - int(pageWidth)) / 2, + Top: (yScreen - int(pageHeight)) / 2, + Width: int(pageWidth), + Height: int(pageHeight), WindowState: "normal", } - localUIUrl := fmt.Sprintf(localUIPattern, localHost, controllerPort) + localUIUrl := fmt.Sprintf(localUIPattern, constant.Localhost, constant.DashboardPort, + constant.Localhost, controllerPort) ui, err := lorca.New(localUIUrl, "", 0, 0) if err != nil { - open.Run(localUIUrl) + log.Errorln("create dashboard failed %v", err) + err := open.Run(localUIUrl) + if err != nil { + log.Errorln("open dashboard failed %v", err) + return + } } else { - defer ui.Close() - ui.SetBounds(PageInit) + defer func(ui lorca.UI) { + err := ui.Close() + if err != nil { + log.Errorln("close dashboard failed %v", err) + } + }(ui) + err := ui.SetBounds(PageInit) + if err != nil { + log.Errorln("SetBounds dashboard failed %v", err) + return + } // Wait until UI window is closed - <-ui.Done() - time.Sleep(time.Duration(2) * time.Second) - + select { + case <-ui.Done(): + } } } diff --git a/go.mod b/go.mod index 48e51c7..78fd35e 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,9 @@ go 1.16 require ( github.com/Dreamacro/clash v1.6.0 + github.com/MakeNowJust/hotkey v0.0.0-20200628032113-41fa0caa507a github.com/beevik/etree v1.1.0 - github.com/elazarl/go-bindata-assetfs v1.0.0 + github.com/elazarl/go-bindata-assetfs v1.0.1 github.com/getlantern/golog v0.0.0-20201105130739-9586b8bde3a9 // indirect github.com/getlantern/hidden v0.0.0-20201229170000-e66e7f878730 // indirect github.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6 // indirect @@ -15,13 +16,18 @@ require ( github.com/lxn/walk v0.0.0-20210112085537-c389da54e794 github.com/lxn/win v0.0.0-20210218163916-a377121e959e github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect - github.com/robfig/cron/v3 v3.0.1 // indirect + github.com/robfig/cron/v3 v3.0.1 github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 github.com/zserge/lorca v0.1.10 golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 - golang.org/x/text v0.3.6 // indirect + golang.org/x/text v0.3.6 gopkg.in/Knetic/govaluate.v3 v3.0.0 // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect ) + +replace ( + github.com/Dreamacro/clash v1.6.0 => github.com/JyCyunMe/Clash.Mini-Vendor/Dreamacro/clash v0.0.0-20210605163326-2639e89c1934 + github.com/getlantern/systray v1.1.0 => github.com/JyCyunMe/Clash.Mini-Vendor/getlantern/systray v0.0.0-20210605164140-1b8bd62f33a7 +) diff --git a/go.sum b/go.sum index 5f53bf2..b5a5d5b 100644 --- a/go.sum +++ b/go.sum @@ -1,14 +1,18 @@ -github.com/Dreamacro/clash v1.6.0 h1:LjVeUQlTd+h9tqoQORoaW2kZf4kP9PdWKeL67AZ/19k= -github.com/Dreamacro/clash v1.6.0/go.mod h1:Pz9GwWR244jrMSInQ0KUL02jMCe5xIJ+pkgzuNIy2Iw= github.com/Dreamacro/go-shadowsocks2 v0.1.7 h1:8CtbE1HoPPMfrQZGXmlluq6dO2lL31W6WRRE8fabc4Q= github.com/Dreamacro/go-shadowsocks2 v0.1.7/go.mod h1:8p5G4cAj5ZlXwUR+Ww63gfSikr8kvw8uw3TDwLAJpUc= +github.com/JyCyunMe/Clash.Mini-Vendor/Dreamacro/clash v0.0.0-20210605163326-2639e89c1934 h1:y9sKXuFBjvlmFhDfsDIyjRWvMupwkBJACB/WqSbre/Q= +github.com/JyCyunMe/Clash.Mini-Vendor/Dreamacro/clash v0.0.0-20210605163326-2639e89c1934/go.mod h1:2wbcUQX3tBeYMnDSYOeEcFRCH1jhza7ibiypznSz/QM= +github.com/JyCyunMe/Clash.Mini-Vendor/getlantern/systray v0.0.0-20210605164140-1b8bd62f33a7 h1:1DbR89L1r82yUp/IBAUGqLGROqcSr6k3kgjhrsqILGA= +github.com/JyCyunMe/Clash.Mini-Vendor/getlantern/systray v0.0.0-20210605164140-1b8bd62f33a7/go.mod h1:AecygODWIsBquJCJFop8MEQcJbWFfw/1yWbVabNgpCM= +github.com/MakeNowJust/hotkey v0.0.0-20200628032113-41fa0caa507a h1:VuNOuPqMVzE4/RJI7PGkXBkjF4cuCnSNKXZl9WNVA6g= +github.com/MakeNowJust/hotkey v0.0.0-20200628032113-41fa0caa507a/go.mod h1:0rsyU1Bd2nX15GGdZ/ieVlKRED0HSnusBaKyULAJUYQ= github.com/beevik/etree v1.1.0 h1:T0xke/WvNtMoCqgzPhkX2r4rjY3GDZFi+FjpRZY2Jbs= github.com/beevik/etree v1.1.0/go.mod h1:r8Aw8JqVegEf0w2fDnATrX9VpkMcyFeM0FhwO62wh+A= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/elazarl/go-bindata-assetfs v1.0.0 h1:G/bYguwHIzWq9ZoyUQqrjTmJbbYn3j3CKKpKinvZLFk= -github.com/elazarl/go-bindata-assetfs v1.0.0/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4= +github.com/elazarl/go-bindata-assetfs v1.0.1 h1:m0kkaHRKEu7tUIUFVwhGGGYClXvyl4RE03qmvRTNfbw= +github.com/elazarl/go-bindata-assetfs v1.0.1/go.mod h1:v+YaWX3bdea5J/mo8dSETolEo7R71Vk1u8bnjau5yw4= github.com/getlantern/context v0.0.0-20190109183933-c447772a6520 h1:NRUJuo3v3WGC/g5YiyF790gut6oQr5f3FBI88Wv0dx4= github.com/getlantern/context v0.0.0-20190109183933-c447772a6520/go.mod h1:L+mq6/vvYHKjCX2oez0CgEAJmbq1fbb/oNJIWQkBybY= github.com/getlantern/errors v0.0.0-20190325191628-abdb3e3e36f7/go.mod h1:l+xpFBrCtDLpK9qNjxs+cHU6+BAdlBaxHqikB6Lku3A= @@ -25,8 +29,6 @@ github.com/getlantern/hidden v0.0.0-20201229170000-e66e7f878730/go.mod h1:6mmzY2 github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f/go.mod h1:D5ao98qkA6pxftxoqzibIBBrLSUli+kYnJqrgBf9cIA= github.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6 h1:QthAQCekS1YOeYWSvoHI6ZatlG4B+GBDLxV/2ZkBsTA= github.com/getlantern/ops v0.0.0-20200403153110-8476b16edcd6/go.mod h1:D5ao98qkA6pxftxoqzibIBBrLSUli+kYnJqrgBf9cIA= -github.com/getlantern/systray v1.1.0 h1:U0wCEqseLi2ok1fE6b88gJklzriavPJixZysZPkZd/Y= -github.com/getlantern/systray v1.1.0/go.mod h1:AecygODWIsBquJCJFop8MEQcJbWFfw/1yWbVabNgpCM= github.com/go-chi/chi/v5 v5.0.3 h1:khYQBdPivkYG1s1TAzDQG1f6eX4kD2TItYVZexL5rS4= github.com/go-chi/chi/v5 v5.0.3/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8= github.com/go-chi/cors v1.2.0 h1:tV1g1XENQ8ku4Bq3K9ub2AtgG+p16SmzeMSGTwrOKdE= diff --git a/log/log.go b/log/log.go new file mode 100644 index 0000000..7cf6164 --- /dev/null +++ b/log/log.go @@ -0,0 +1,33 @@ +package log + +import ( + cLog "github.com/Dreamacro/clash/log" +) + +func Infoln(format string, v ...interface{}) { + cLog.Infoln(format, v...) +} + +func Warnln(format string, v ...interface{}) { + cLog.Warnln(format, v...) +} + +func Errorln(format string, v ...interface{}) { + cLog.Errorln(format, v...) +} + +func Debugln(format string, v ...interface{}) { + cLog.Debugln(format, v...) +} + +func Fatalln(format string, v ...interface{}) { + cLog.Fatalln(format, v...) +} + +func Level() cLog.LogLevel { + return cLog.Level() +} + +func SetLevel(newLevel cLog.LogLevel) { + cLog.SetLevel(newLevel) +} diff --git a/main.go b/main.go index c216d19..1f7c61f 100644 --- a/main.go +++ b/main.go @@ -14,14 +14,13 @@ import ( "runtime" "syscall" + "github.com/Clash-Mini/Clash.Mini/log" + _ "github.com/Clash-Mini/Clash.Mini/static" + _ "github.com/Clash-Mini/Clash.Mini/tray" "github.com/Dreamacro/clash/config" C "github.com/Dreamacro/clash/constant" "github.com/Dreamacro/clash/hub" "github.com/Dreamacro/clash/hub/executor" - "github.com/Dreamacro/clash/log" - - _ "github.com/Clash-Mini/Clash.Mini/static" - _ "github.com/Clash-Mini/Clash.Mini/systray" ) var ( diff --git a/notify/notify.go b/notify/notify.go index 258b63c..cd8a17a 100644 --- a/notify/notify.go +++ b/notify/notify.go @@ -3,72 +3,126 @@ package notify import ( "crypto/md5" "encoding/hex" - "github.com/Clash-Mini/Clash.Mini/icon" - "github.com/go-toast/toast" + "fmt" "io/ioutil" "os" - "path/filepath" + path "path/filepath" + "time" + + "github.com/Clash-Mini/Clash.Mini/cmd" + "github.com/Clash-Mini/Clash.Mini/cmd/auto" + "github.com/Clash-Mini/Clash.Mini/cmd/cron" + "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" + "github.com/Clash-Mini/Clash.Mini/cmd/proxy" + "github.com/Clash-Mini/Clash.Mini/cmd/startup" + "github.com/Clash-Mini/Clash.Mini/cmd/sys" + "github.com/Clash-Mini/Clash.Mini/icon" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/util" + + "github.com/go-toast/toast" +) + +const ( + notifyLine = "--------------------\n" ) var ( - content string - appPath, _ = iconBytesToFilePath(icon.DateS) + iconPath, _ = iconBytesToFilePath(icon.DateS) ) -func Notify(info string) { +func getNotifyContent(s string) string { + return notifyLine + s +} - switch info { - case "SysON": - content = "--------------------\n系统代理:✅" - case "SysOFF": - content = "--------------------\n系统代理:❎" - case "Direct": - content = "--------------------\n已切换为:直连模式-✅" - case "Rule": - content = "--------------------\n已切换为:规则模式-✅" - case "Global": - content = "--------------------\n已切换为:全局模式-✅" - case "Startup": - content = "--------------------\n开机启动:✅" - case "StartupOff": - content = "--------------------\n开机启动:❎" - case "SysAutoON": - content = "--------------------\n默认代理:✅" - case "SysAutoOFF": - content = "--------------------\n默认代理:❎" - case "Max": - content = "--------------------\n成功切换:Maxmind数据库" - case "Lite": - content = "--------------------\n成功切换:Hackl0us数据库" - } - notification := toast.Notification{ - AppID: "Clash.Mini", - Title: "📢通知📢", - Icon: appPath, - Message: content, +func DoTrayMenuDelay(value cmd.GeneralType, delay time.Duration) { + time.AfterFunc(delay, func() { + DoTrayMenu(value) + }) +} + +func DoTrayMenu(value cmd.GeneralType) { + var message string + switch value { + case sys.ON: + message = "系统代理:✅" + break + case sys.OFF: + message = "系统代理:❎" + break + case proxy.Direct: + message = "已切换为:直连模式-✅" + break + case proxy.Rule: + message = "已切换为:规则模式-✅" + break + case proxy.Global: + message = "已切换为:全局模式-✅" + break + case startup.ON: + message = "开机启动:✅" + break + case startup.OFF: + message = "开机启动:❎" + break + case auto.ON: + message = "默认代理:✅" + break + case auto.OFF: + message = "默认代理:❎" + break + case mmdb.Max: + message = "成功切换:Maxmind数据库" + break + case mmdb.Lite: + message = "成功切换:Hackl0us数据库" + break + case cron.ON: + message = "定时更新:✅" + break + case cron.OFF: + message = "定时更新:❎" + break } - err := notification.Push() - if err != nil { + PushWithLine("📢通知📢", message) +} + +func PushFlowInfo(usedInfo, unUsedInfo, expireInfo string) { + PushWithLine("📢流量信息📢", + fmt.Sprintf("已用流量:%s\n剩余流量:%s\n到期时间:%s", usedInfo, unUsedInfo, expireInfo)) +} + +func PushProfileCronFinished(successNum, failNum int) { + message := "定时更新完成:✅\n" + if failNum > 0 { + message = fmt.Sprintf("%s定时更新完成:✅\n[%d] 个配置更新成功!\n[%d] 个配置更新失败!", message, successNum, failNum) + } else { + message += "全部配置更新成功!" } + PushWithLine("📢更新通知📢", message) +} + +func PushWithLine(title string, message string) { + PushMessage(title, getNotifyContent(message)) } -func NotifyINFO(UsedINFO, UnUsedINFO, ExpireINFO string) { - content = "--------------------\n已用流量:" + UsedINFO + "\n剩余流量:" + UnUsedINFO + "\n到期时间:" + ExpireINFO +func PushMessage(title string, message string) { notification := toast.Notification{ - AppID: "Clash.Mini", - Title: "📢流量信息📢", - Icon: appPath, - Message: content, + AppID: util.AppTitle, + Title: title, + Icon: iconPath, + Message: message, } err := notification.Push() if err != nil { + log.Errorln("Notify Push error: %v", err) } } func iconBytesToFilePath(iconBytes []byte) (string, error) { bh := md5.Sum(iconBytes) dataHash := hex.EncodeToString(bh[:]) - iconFilePath := filepath.Join(os.TempDir(), "systray_temp_icon_"+dataHash) + iconFilePath := path.Join(os.TempDir(), "systray_temp_icon_"+dataHash) if _, err := os.Stat(iconFilePath); os.IsNotExist(err) { if err := ioutil.WriteFile(iconFilePath, iconBytes, 0644); err != nil { diff --git a/resource/Clash.Mini_x64.exe.manifest b/resource/Clash.Mini_x64.exe.manifest index 69cdee4..374f449 100644 --- a/resource/Clash.Mini_x64.exe.manifest +++ b/resource/Clash.Mini_x64.exe.manifest @@ -19,10 +19,15 @@ - - + + - - - + + + + + + True/PM + + \ No newline at end of file diff --git a/resource/Clash.Mini_x86.exe.manifest b/resource/Clash.Mini_x86.exe.manifest index 3b75f8f..dc41d75 100644 --- a/resource/Clash.Mini_x86.exe.manifest +++ b/resource/Clash.Mini_x86.exe.manifest @@ -19,10 +19,14 @@ - - - - - - + + + + + + + + True/PM + + \ No newline at end of file diff --git a/resource_386.syso b/resource_386.syso new file mode 100644 index 0000000..92f44dd Binary files /dev/null and b/resource_386.syso differ diff --git a/resource_amd64.syso b/resource_amd64.syso new file mode 100644 index 0000000..bf59e9a Binary files /dev/null and b/resource_amd64.syso differ diff --git a/static/gh-pages.go b/static/gh-pages.go index 7fa7798..99a20ee 100644 --- a/static/gh-pages.go +++ b/static/gh-pages.go @@ -1,6 +1,4 @@ -// Code generated by go-bindata. (@generated) DO NOT EDIT. - -// Package static generated by go-bindata. +// Code generated by go-bindata. // sources: // gh-pages/140.4c90b0e4dc4d2542b082.js // gh-pages/140.4c90b0e4dc4d2542b082.js.map @@ -68,6 +66,8 @@ // gh-pages/yacd-128.png // gh-pages/yacd-64.png // gh-pages/yacd.ico +// DO NOT EDIT! + package static import ( @@ -85,7 +85,7 @@ import ( func bindataRead(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } var buf bytes.Buffer @@ -93,7 +93,7 @@ func bindataRead(data []byte, name string) ([]byte, error) { clErr := gz.Close() if err != nil { - return nil, fmt.Errorf("read %q: %v", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } if clErr != nil { return nil, err @@ -114,32 +114,21 @@ type bindataFileInfo struct { modTime time.Time } -// Name return file name func (fi bindataFileInfo) Name() string { return fi.name } - -// Size return file size func (fi bindataFileInfo) Size() int64 { return fi.size } - -// Mode return file mode func (fi bindataFileInfo) Mode() os.FileMode { return fi.mode } - -// ModTime return file modify time func (fi bindataFileInfo) ModTime() time.Time { return fi.modTime } - -// IsDir return file whether a directory func (fi bindataFileInfo) IsDir() bool { - return fi.mode&os.ModeDir != 0 + return false } - -// Sys return file is sys mode func (fi bindataFileInfo) Sys() interface{} { return nil } @@ -584,7 +573,7 @@ func ghPagesApp1141a20948b298f2a01cCssMap() (*asset, error) { return a, nil } -var _ghPagesApp6706b8885424994ac6feJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xd3\xc6\xf6\x30\xfc\xff\xbb\xd6\xf3\x1d\x36\x3a\x3c\x7d\xe4\x83\x22\x2c\xf9\x6e\x9a\xc3\x0a\x49\xa0\xb4\x40\x52\x12\x4a\x8b\x7f\xf9\x51\x59\x1e\xdb\x22\xb2\xc6\x95\xc6\x49\x0c\xe4\xbb\xbf\x6b\x66\x24\x5b\xb6\x67\x46\x23\x27\xa1\xd0\xc3\xb4\x2b\xd8\xd6\x68\xae\x7b\xf6\xec\xfb\x36\x13\x14\x0e\xed\x4b\xd4\x9f\x7a\xfe\xf9\xfe\x78\x16\x9d\xcf\x3d\x7f\x00\xbb\x20\xfe\xfd\xf3\x67\xe8\x9d\x55\xec\xe9\x2c\x19\x9b\xbd\xff\xf3\xff\x01\x00\xf4\x9c\x7a\xed\xcc\x82\x4f\xfc\x1b\x2d\x8d\x6a\xbd\xd3\xea\xc2\x70\x16\xf9\x24\xc0\x11\x98\xc8\x82\xc8\x02\x52\xc9\x57\xa2\xc5\x98\x25\x08\x12\x12\x07\x3e\x31\x1e\xad\x3e\x22\xf6\xc0\x8c\xac\xf5\x17\x68\x39\xcd\xb7\xbc\xd1\x64\x56\x62\x44\x66\x71\x04\xc3\xcd\xa7\xd7\x16\x5c\x96\x69\x62\x2c\x68\x62\xf5\xa7\xeb\xca\xda\xe0\x2f\xbc\x18\x62\xd8\x05\x62\x76\xea\x9d\x7a\xa7\x62\x6d\x36\x81\xd9\xe3\x76\xb5\x5a\xaf\x89\x1e\x07\xfc\x71\xab\xd5\x68\x89\x1e\xfb\xf4\xb1\x1d\x99\x81\xe8\x61\x02\xbb\x60\x12\xb3\xdd\x6e\xb6\xea\x15\x0b\x88\x59\x77\x1a\xb5\x0e\xfb\xd4\x76\x1b\x6e\x93\x7d\x6a\xb4\x6a\x6e\x8b\x7f\xaa\xb7\xea\xfc\x53\xbd\x53\xab\xf1\x4f\x9d\x56\xa7\x5e\xab\xd0\x69\xad\x36\xbf\x58\x35\x8f\xed\xa9\x70\xe9\xe8\xe4\x09\xec\xc2\x51\xff\x03\xf2\x89\x7d\x8e\xe6\x89\x89\xd6\x57\x88\xcd\x71\x08\x66\x5a\x69\x84\xc8\xd1\x65\x74\x1c\xe3\x29\x8a\xc9\xfc\x64\x3e\xe9\xe3\x30\x91\x6e\x4c\xb6\xbc\xaa\x97\xc5\x5d\xd2\x12\xc1\x0f\x3f\x80\x49\xdf\x8f\xed\x61\x10\x12\x14\x9b\xe6\x12\x1a\xc4\x73\xca\x4a\x0a\x12\xc2\x8e\x0f\x50\xe2\xc7\xc1\x94\xe0\x98\xaf\x8d\x8d\xa2\xd9\x04\xc5\x5e\x3f\x44\xe2\x06\xaf\x2b\x15\xba\xd8\xec\x30\xd9\xde\x74\x1a\xce\x4d\x62\x41\x5c\x29\x84\xb7\xdc\x48\xc8\x1a\x24\x4a\x37\x6c\x66\x22\xe1\xcc\x86\x38\x06\x93\x2e\x68\x04\xbb\xe0\x3c\x82\x08\x7e\x04\x2f\x1e\xcd\x26\x28\x22\x89\x1d\xa2\x68\x44\xc6\x8f\x20\x7a\xf0\x40\xb9\x1b\x74\xbf\xa3\x59\x18\xc2\xbd\xdd\xe5\xdb\xbd\xe8\x0c\x1e\xaf\x7e\xed\xc2\xa7\x6b\xe9\xb6\xfc\x5f\x70\x69\xfd\x14\x26\x4c\x52\xb1\xe0\x5e\xb5\x62\x0f\x71\x7c\xe8\xf9\x63\xfd\x4d\x32\xab\x16\xc4\xf6\xbb\x4a\x86\x76\x7a\xd1\x99\x60\x4d\x81\xef\x00\x74\x8b\x76\x33\x81\xc7\x59\x95\x01\x1a\x06\x11\x4a\xab\x04\x28\xa1\x3d\x14\xbd\x6d\x12\xd6\x49\x6e\x5a\x5b\x4c\x49\xd4\xff\x3c\x9d\x5f\x11\x30\x12\x0a\x8c\xf2\x05\x28\x03\x6d\x68\x03\xda\xf2\x5f\x29\x20\x84\xb0\x0b\xc6\x43\x1f\x47\xc3\x60\x94\x18\x72\xfc\x31\x94\x80\x63\xda\xd1\x34\x3b\x0f\xe3\x20\xb1\x96\x20\x54\xd1\x85\xf6\xa9\x18\xab\xa7\xad\x9b\x53\x8a\x21\xab\x16\x60\x0a\x25\xbe\x59\xb1\x27\x5e\x7c\x9e\xdb\x0d\xa4\xd8\x0e\x06\xee\x16\xc4\x16\x60\x09\x24\xa7\xbd\xd0\x76\x2f\x63\x6f\x9a\xdf\x65\xf1\xa4\x17\xc3\xa7\x67\xf1\xd1\xa3\x0a\x24\x97\x01\xf1\xc7\x60\x22\x7b\x1a\xa3\x0b\xd8\x05\x64\x47\xe8\x6a\xf3\xfe\x5c\x2f\xbe\x97\x20\xa8\x76\xd5\x95\x72\x43\x24\xe9\x3a\x24\xf6\xa8\x62\x46\x15\x8b\x5f\x5a\xf6\x2c\x0e\x2d\x7e\x41\xd9\x41\x14\x10\x2b\xed\x1e\x76\xa1\x66\xc1\x10\x11\x7f\x6c\xc6\xf0\x00\x68\x25\x19\x92\x5d\x19\x51\x4d\x7f\x44\xc8\xf6\xfa\xf1\x6c\x4a\x4c\x83\xff\x60\xd0\xce\x13\x14\x11\xad\x8e\xea\x05\x1d\xb1\x4a\x06\x8a\x06\x46\x99\x11\x25\x04\x4f\x4d\xc9\x01\x02\xf1\x79\x61\x3f\x57\x2c\x40\xa2\xe3\x55\xa9\x54\x2a\x37\x84\xef\x81\xfa\xf8\x18\x09\xf6\xcf\x93\x9d\x29\x8e\x89\x01\x41\x04\x88\x5d\x79\xa8\xc7\x7e\x47\x84\x3f\x38\xa3\x70\xd5\xcb\x57\x3d\xa3\x23\xd6\x1d\xc2\x58\x4e\x01\xa4\xa3\xb8\xb8\xe1\x24\x2f\xd4\x87\xf8\xa2\xf8\x10\x8b\x68\xce\xac\x30\x22\xc2\x02\x6c\x41\x60\x81\xf7\xcd\x1f\xe5\x78\xfd\x28\x63\x46\xe0\xb0\xa3\x1c\xb0\x8f\xfc\x28\x7b\xb0\x0b\x3f\x9f\x1c\xbd\xb2\x29\xd9\x1d\x8d\x82\xe1\xdc\x1c\xd0\x3b\x29\x77\xc8\xeb\xd9\x21\xc7\xfc\x90\xcf\xcc\x99\xf9\xe9\xda\x82\xa0\x62\x01\xfd\xb7\x60\xe4\x59\xe9\xe3\xc1\xbc\x0b\x9e\x80\x40\x15\x95\x09\x22\x63\x3c\xe8\x82\x71\xbc\x77\xba\xff\x93\x51\xfc\xd2\x75\xe5\x56\x50\x02\xdc\x16\xee\x69\xfc\xe3\x70\xcf\xe2\xa3\x05\x9d\x56\xab\x51\xbd\x33\x8e\x2e\xfe\xb5\x0c\x3f\x36\x10\xb2\x74\xc7\xcf\xcb\xb4\x71\x21\x6c\xe3\xfe\x2f\x65\xda\x18\x09\xdb\x38\x99\x94\x69\x63\xfe\xad\xf2\x96\x6e\xab\xe5\x72\x9e\xb1\xda\x68\x3a\x9c\xb7\xfc\xce\x6f\x7e\xe7\x37\xbf\xf3\x9b\xdf\xf9\xcd\x2f\xca\x6f\x5a\x30\xcc\x58\xce\x08\xb1\xb9\x25\x86\x00\x6f\x51\x8e\xaf\x77\x26\xc7\x2f\x03\x39\x7e\xa1\x68\xc3\x81\xdd\xdd\x5d\x08\xe9\x49\x8e\x2a\x0b\xc1\xa0\x19\x89\xce\x7c\xc8\x00\x5b\x8e\xa7\x38\x95\x76\xcc\xc0\x65\x28\xc2\xb1\x6c\x01\x28\x80\xa3\x4b\x78\x8b\xfa\x27\x8c\x66\x37\x85\x54\x48\x46\xfc\xd9\xde\x60\x70\x78\x81\x22\xf2\x22\x48\x08\x8a\x50\x6c\x1a\x28\x8e\x71\x6c\x58\x60\xea\xdf\x46\x74\xe4\x35\x21\xd1\x60\x09\xbb\x98\xa0\x24\xf1\x46\x68\xb5\x13\x39\x5d\x9c\x89\x64\x35\x49\x68\x86\x24\x14\x94\x17\x89\xe7\x45\xa4\x68\x94\x11\xbb\x53\x2f\x4e\x90\x29\xa2\x88\x16\x93\x04\xdf\x63\x84\xba\xfa\x60\xd0\xe2\xe3\x28\xc1\x21\xb2\x43\x3c\x32\x8d\x65\xf3\x90\xad\xf8\x4a\x8f\xe5\x69\x37\x5a\xa6\xa2\x23\xab\x5e\x2e\xc8\x1d\x1b\x33\x52\x75\x2b\x3d\x9c\x26\xb2\x07\x1e\xf1\xc4\x74\xa3\x05\x11\x3c\x66\x30\x0f\x5d\xb8\xc0\xc1\x00\xaa\x25\x58\x45\xb5\xb0\x87\xa9\x13\x90\xec\x2c\x68\x00\x30\x64\xf0\x02\xbb\x30\xb5\x83\x68\x80\xae\x8e\x86\xf2\x2b\x19\xd8\x12\x27\xd3\x30\xf0\x19\x97\xe8\xc8\x56\x44\x9f\x55\x55\xce\xb0\x7f\x43\x4e\xb8\xaf\xe6\x84\xfb\xdf\xc5\x59\xb7\x20\xce\x1a\x2e\x39\x5d\x5c\x8e\xd3\x5d\xf0\xae\x07\x87\x2f\x0e\x4f\x0f\x6f\x8f\x79\xfd\x2e\x38\x5b\xfd\xfd\xe6\x82\xb3\x91\xfa\xa0\x5e\xdd\xb0\xf9\x2b\xf5\x41\xbd\xfa\x7e\x50\x6f\xeb\xa0\xf2\x63\xfa\xfd\x14\xfd\x2d\xa7\x68\x5e\x28\xfb\xfd\x70\xc3\x1e\x3e\xa8\x0f\xd2\x87\xef\xb2\x5f\xd8\x4e\xf6\xfb\xe7\xfd\x4f\xf8\xfa\xfe\xa7\xe1\xf5\xc3\xfb\x9f\xc8\xf5\x9f\x22\xb1\xaf\xb7\xb5\xc8\xf7\xce\x2e\xc2\xef\x52\xdc\xd5\xdf\xb7\x93\xe2\xd6\x1d\xb7\xdd\xb9\x3b\x29\xee\x4d\x85\xb8\x05\x82\xcf\xbc\xe4\x50\x24\x7f\x74\x6b\x8e\x5b\x13\x4a\x22\x45\x12\xd4\xf4\xa2\x49\x25\x8f\x12\x29\xa9\xf1\x90\xc4\xde\x70\x18\xf8\x22\x91\x82\x9f\xb2\xe8\xa7\xe8\x8a\x1c\x20\x1f\x0f\x28\x4b\x3c\x23\xc3\x9d\xb6\x21\x93\x9c\x3a\x8d\xaa\xe0\x09\x3d\x96\x92\xd5\x0a\xbd\x3e\x0a\x93\x2e\xec\xc5\xb1\x37\x37\x13\x19\x87\x34\x9b\x16\x56\x19\xe0\xcb\xa8\xb0\x52\x12\x7c\x44\x5d\x48\x64\x4f\x67\xfd\xc4\x8f\x83\x3e\x8a\x93\x2e\xf4\xce\x24\xb5\xbc\xe9\x14\x45\x83\x03\x8f\x78\x05\x68\x92\x42\xae\x3d\xcb\x98\x3f\x7b\x36\xa5\x3b\x46\x7f\xa3\x43\xcd\x7e\xa5\x9f\x55\x07\x37\x63\xfa\xe8\x46\x1c\x78\x04\x15\x68\x9b\x28\x9e\x33\x0c\x78\x00\x91\x3d\x42\xe4\x65\x10\xcd\x08\x4a\xcc\x4a\xf6\xc3\x09\xf2\x71\x34\x48\x4c\x55\x8f\x6c\x88\x7c\x5f\xf8\x20\x49\x36\xee\xd9\x34\x95\x5f\xc2\x7f\xf8\x0f\x74\x39\xe1\x87\x1f\x16\x4f\x93\x71\x30\x24\xe6\xca\x34\x15\x2f\xb0\xe7\xab\xaf\xa4\xdd\x2a\x5e\x4a\x6b\xac\xbe\x96\xdb\xb8\xf2\xa2\x40\x58\x1e\xda\x48\x2d\x41\x91\xca\x15\x8a\xe0\x49\x47\x10\x44\x0f\xeb\x38\x48\x14\x1b\x93\xd1\x96\xeb\x33\x56\x0b\x17\xb2\xa2\x29\x64\xc8\x8f\x89\x09\xa1\x57\xba\xd2\x12\x3c\x64\x65\xf5\xd5\x54\x18\x41\xe4\xc2\x88\xac\xc8\x2e\x0b\x01\x46\x15\xcc\x79\x06\xbb\x70\xcf\x11\x3c\x60\x96\x3b\x5b\x58\xec\x78\x76\xee\xc4\xab\x44\x5f\x2a\x6b\x1d\x25\x53\x86\xec\x18\x79\x03\xb3\x62\x93\x31\x8a\xf4\x00\x77\xa1\x65\xe0\x7b\x34\xc0\x11\xe2\x4c\x46\x64\x5f\x78\xe1\x0c\x71\xec\xef\xdb\x03\x86\xb7\xcd\x58\x49\xe1\x24\x24\x46\xde\xa4\x0b\xf7\x88\xfc\x9a\xa6\xb7\x85\x19\xc2\x83\x5d\xc0\x15\xb6\x97\xc4\x34\xfe\x27\x32\x2a\x16\xc3\xfb\x41\x2f\xc8\x0e\xed\x0e\x38\x67\x9c\x12\xab\x3e\x02\x0f\x7e\x84\xfc\x93\x47\xe0\x3d\x78\x50\x81\xa1\x19\xf4\xbc\x33\x19\x0c\x2d\x78\xa8\xc7\x60\x0e\x29\x2e\x4f\xb7\xce\x5a\x15\x4c\x3e\x3b\x3c\x85\xec\xfa\x4a\xa7\x10\x44\x23\xa0\x4b\x41\x87\x75\x81\x83\x81\xc9\x81\x81\xe9\x0b\x4c\xda\x48\x62\xb1\xbd\x10\x93\x1c\xba\xbb\x29\xb3\x4d\x09\x86\x60\xce\xe0\xf3\x67\xe0\xc2\xf4\x78\x21\x47\x17\x11\xe0\xb1\x42\x88\x1e\x2d\x88\x7f\x2e\x44\x17\x2a\x2a\x21\xc5\xf6\xab\x42\x74\xe1\x5d\x92\x2d\xa8\x9e\x10\x5d\x21\xdf\x56\x88\xcf\x45\x8d\xfb\x21\x4e\xd6\x84\xe7\x72\x88\x66\x8d\x2b\x70\x58\x19\x31\x31\xdb\x09\xe5\xf2\xe7\x0b\x03\x92\x6a\x41\xa5\xd5\x7d\x19\x55\x8a\x11\x2e\x64\x1b\xc4\xf8\x14\x0d\x62\x9a\xd5\xa5\x8c\x4c\xc1\x50\x38\x13\x43\xe0\x01\x65\xee\xe2\x4d\xac\x51\xbc\x3e\xb4\x20\x1b\x9f\xc3\x63\x7a\x1c\xec\x3e\x1e\xcc\x29\x75\xf0\x1a\x79\x94\xc6\x63\xc7\x85\x9f\x9c\x02\x44\x5d\xd1\x04\x9c\x7c\x59\x39\xc3\x6c\x2a\xcb\x53\x9c\x41\x23\xaa\x58\x9a\x03\x50\x5d\xd7\xc2\xcb\x5c\x0a\xac\x25\x75\x3d\xc3\x02\x5d\x82\xa7\xe2\x53\x1a\xed\x5a\xc7\xbd\x29\x9f\x22\xb4\x47\x68\x36\x3b\x1d\xce\x37\xd4\x6a\x9d\x7a\x5b\x6e\x5b\xe1\xd4\x9b\x8e\x90\x2d\xe0\x5c\x43\xad\xe5\x38\x55\x85\x6d\x45\xad\xd1\xa8\x4b\x6d\x2b\xcc\x66\xbb\xe5\xb4\x65\x3c\x82\x64\x41\x3f\x8e\xbb\x40\x6c\x64\x3a\xf5\x6a\x0a\xd2\xc4\xee\x07\xd1\x80\x51\x0c\x9d\x4e\xb3\x51\x91\x1d\x38\x14\xf1\x37\x6b\xcd\x8d\x17\x9b\xcd\x6a\xad\x29\x44\xf7\x6b\x0b\x13\xdb\xef\xec\x59\x82\xcc\xc0\x7e\x57\x61\x1f\x7c\xfb\xa0\xcf\x3f\x61\xfa\x13\x3d\x96\xa6\x60\xe4\x03\xd4\x9f\x8d\xba\x62\x82\xa3\xef\xf9\xe7\x28\x1a\x74\xa5\xbc\x0f\xf6\x06\xc7\x1e\x19\x77\xc1\x78\xf8\xfe\xfd\xa7\x4f\x61\x34\xba\xbe\x7e\xf8\xe9\x53\x94\x5c\x5f\xdb\x1f\x12\x1c\x89\x98\x32\x36\x58\xf4\xd7\x0c\x25\x44\x00\x40\x14\x1f\x14\x51\x9a\x32\xe9\x2a\x2d\x99\x40\x47\x43\x47\xc8\xe4\x04\x0f\xdf\xbf\xff\x38\xa6\xc7\x37\x4a\x42\x8f\x8e\x84\x8f\x5b\x4b\xc6\xc0\xde\xdd\xd9\x7f\x55\xfa\x75\x48\xa1\x34\xb1\x3f\x8e\x35\xc8\xd0\x7e\x8c\xbc\x73\x1d\xd1\x08\x1d\x11\x8a\x4a\x0f\x67\x80\x86\xde\x2c\x24\xda\x83\x46\x51\x69\x39\x09\x7f\xf9\x87\x1f\x00\x6f\x81\xec\x63\x33\x9a\x85\xa1\x96\x88\x2b\x21\x1e\x99\x25\x5d\x70\xab\x22\x36\x7e\xbd\x50\xf4\xd7\x05\x8e\x06\x8b\xf0\xf4\x36\x5c\x95\x1e\xbd\x9f\xcc\xa6\x53\x1c\x13\x34\x78\x11\x8d\x28\xdb\x6e\xa0\xc8\xb0\xc0\x60\xa0\x65\x88\x78\xf8\xa1\x17\x86\xf4\x68\xbe\x88\x46\x5d\x60\xb5\x05\x58\x2e\x22\x28\x9e\x62\x0e\x05\xd2\x03\x8c\x12\xdf\x9b\xa2\xdf\x28\xbd\xdd\x15\xde\x55\x3a\xa6\x6e\x1e\xc7\x98\x2d\xb7\x23\x44\xa8\x33\xf6\xb8\x55\xeb\xd4\x1a\xa2\xc7\x61\x8a\x8e\xdd\x86\x10\x99\x0f\x53\x53\xb7\x50\xf4\x70\xca\x4d\xdd\x96\x86\x6b\xed\x76\xab\xd9\x12\xa2\xd9\x01\xbf\x14\x3a\x2d\xc7\x11\x3d\x1e\x73\x49\x53\xb3\xd3\x12\xce\xe1\x82\x3d\x76\xdb\x55\xe1\xd3\x3e\x7b\x5a\x6f\xb6\xaa\xae\xe8\xf1\x48\x6d\xeb\x77\xa5\xb6\xf5\x9b\xa7\x0b\x70\x25\x7a\xf8\x21\x27\x20\x93\xf3\x85\x13\xb5\xa4\x7e\x92\x12\x85\x23\xfb\x5d\xc5\x9c\xdf\x4c\x52\xef\x5b\x20\x13\x00\x64\xf6\x94\xdf\x86\xb0\xfe\xd3\xb5\x05\x8b\x7e\x1c\xce\x8c\xd2\x45\xfa\x40\x29\x67\x92\xb2\x93\x98\x0b\xf0\x7d\xf6\x71\x4d\x1f\xd6\xc8\x64\xf5\x01\x3c\xa0\x37\x9b\x7f\x2b\xc2\x6d\x48\x79\x83\x7b\x66\xc2\xe6\xcf\xa4\xe6\x36\x3e\xd7\x22\x5c\x81\x11\xcd\xe9\xf8\x9c\x22\x7e\x21\x2b\xec\xf6\x29\xae\xaa\x40\xfc\x59\x59\x08\x0b\xd2\x21\x74\x2c\x48\xd8\x05\xa5\x94\xe6\x41\xb6\x36\x1d\x9d\x1d\x5c\xac\x8a\x4e\x8b\x8e\x0e\x50\x2c\x57\xac\x71\x9b\x77\xb5\xe3\x6a\xf5\x9d\x41\xa0\x4b\x41\x8b\x54\xd9\xf4\x98\x19\x94\xe9\x54\x56\xc5\x09\x7f\x0e\xbd\x20\x44\x03\x20\x98\x03\x1e\xdc\xff\x14\x71\xed\x11\xa9\x6a\xad\xaf\xa3\x03\x7c\x72\x15\x4e\xac\xd7\x49\xf3\xab\x53\xdf\x58\xc0\xc9\x8b\x9e\xfc\xf5\x9e\x63\x81\xe3\x9e\x89\x2b\x88\x4c\x49\xb7\xd2\xff\x40\x8a\x4d\x2f\xf9\x8d\xe0\x36\x9a\x42\xdb\xf1\x23\xfe\xb8\xe1\x76\x84\x17\xea\x31\xbf\x8e\xab\x0d\xe1\xd3\x7d\xd8\x05\xc3\xff\xa9\xff\x6e\xfe\x3e\xde\xfb\x69\x28\x22\x1d\xce\x69\x95\xf7\xee\xc9\x2b\xf4\xfe\xaa\xed\x3c\xef\x8b\xea\xbc\xa3\x75\x5e\xbc\x79\xde\x9c\xb4\x9a\xd3\x70\x2e\xaa\xf2\x2a\x1d\x66\xbb\xa3\xba\x9b\x4e\x24\xc8\x3f\x93\x56\x20\x3b\xf2\x26\x32\x9d\x01\x61\x15\xc2\x20\x3a\x57\xd8\x68\x22\xfb\x02\xc5\x49\x80\x45\x86\x8a\xd9\x15\x58\xb5\xe0\x95\xfd\x21\xb9\x4a\x2a\xa6\x31\x08\x2e\x0c\x29\xad\xe9\x87\x5e\x92\xbc\xf2\x26\xa8\x0b\xfb\x92\x3e\xfd\x71\x10\x0e\x62\xca\xd2\xf5\x16\xed\x56\x4c\x63\xec\xca\x5b\x5d\x7d\x4d\x42\x5d\x33\x59\x45\x7e\xa0\x53\xdd\x06\x57\xc6\x91\x4c\xbd\x48\xfd\xe2\xea\xcb\xc6\x6f\x7c\xf5\x40\xa1\x2a\x5e\x19\x9a\x7e\x1f\xcb\xb5\x94\xed\xdf\xe6\x70\x62\xd5\x28\x24\x07\x74\x7d\x78\xda\x0b\xb7\xb2\xdc\x5e\xa9\x19\xbd\x2b\x98\xd1\x38\x46\xc3\x2e\x90\x22\x65\x98\x17\x8f\x10\xe9\x82\xf1\xbe\x1f\x7a\xd1\xb9\x8c\x9d\xce\x4a\x8c\xc2\x2e\x18\x11\xc6\x53\x14\xa1\x18\x22\x1c\xa3\x21\x8a\x63\x14\x17\xbd\x28\x86\x95\xbe\xfd\x4e\x8f\xe9\x62\x3a\x49\xb7\xaa\x21\x6b\x2b\x0d\x24\xab\xa3\x33\x4e\xf0\x2c\xf6\x51\x81\xd5\x82\x14\x10\x40\xc1\xc9\x09\x5f\x5a\xaf\x2c\x40\xd6\x87\x29\x61\x78\x64\xdf\xff\x50\xd1\x23\x6a\x53\xac\xa3\x98\xb9\x37\x0d\xf6\x99\x83\x36\x87\xc1\x63\xfb\x8f\xfb\x15\xa9\x66\x4f\xc4\x66\x56\x34\x87\x92\x17\x0a\x4f\xed\x59\x82\x7e\x9d\xa1\x78\x5e\x31\x7b\xc6\xc3\x14\x6b\x32\xe3\x8c\xc5\x78\xce\xf4\xac\xd5\x41\x68\x4b\x2e\x33\x48\x12\xbc\x35\xd1\xba\x3b\x57\xa6\x6c\x4a\x86\x2c\xf7\x73\x60\x7c\xbf\x9a\x5b\xc9\x63\x80\x57\xf6\xd3\xd8\x1b\xd1\x71\x6c\x81\x77\x2f\x35\xce\x12\x09\x48\x88\xba\x60\xec\xf5\xf1\x8c\x14\xa0\x5b\xe6\xb2\x14\x65\x57\x1b\x3c\xce\x1f\xad\x93\xc2\x9e\x22\x86\xa3\x8c\xfd\xd0\x4b\xc6\xf6\xcb\x20\x0a\x8a\x10\x44\xda\x4f\x17\x8c\xaa\xed\xd8\x4e\x51\x75\x7a\x25\x77\xc1\x18\x13\x32\x4d\xba\x0f\x1f\x8e\x02\x32\x9e\xf5\x6d\x1f\x4f\x1e\xb2\x2e\x77\x68\x97\x0f\x73\xbd\xaf\x93\x07\xab\xb3\xed\x72\x02\x6d\xfb\x19\xfe\x82\xe2\x08\x85\xfa\x73\x74\xec\xa6\x5d\x85\x1d\x38\x9a\xa2\x08\x12\x8e\x72\xb6\x9e\xf1\x41\x8c\xbc\x89\xe7\xc7\xf8\x21\xbd\x1e\xc6\xea\x7d\x55\x77\xb2\xcd\x0a\xfc\xe1\xf9\x83\x32\xbb\xeb\xda\x4e\x63\xfb\xc9\x8e\xbd\x20\x19\x7b\xd1\xf8\xe1\x9c\x76\xbb\xbd\x4c\x4d\x7a\x93\x0b\x71\x9d\x60\xb8\x07\x5c\x34\xd4\xac\xba\xed\x06\xd7\x2b\xd4\x1b\x9d\xda\x86\x29\x1b\xc5\x7f\xaf\xbf\x20\x06\x57\x2c\xec\xe2\x8d\x24\x7b\x65\xef\xe7\xbb\x45\xfa\x39\x24\xa9\x18\x17\x33\xc8\x59\x9e\x55\xd8\x81\x03\x2f\x19\xf7\xb1\x17\x0f\xd6\x35\x3a\x59\x09\x86\x60\xe6\x1a\xcf\x99\xc3\x38\x95\x22\xa7\x20\xc2\x2d\x20\x23\x74\x09\x6f\x5e\xbf\x30\x23\xbb\xef\x25\xe8\xcd\xeb\x17\x15\x7b\x8c\x13\x72\x0d\x3b\x40\x41\xeb\x4f\xc9\xaa\x64\x2e\x42\x74\xf2\x12\x9e\x6f\x1d\xb3\x57\xcc\x03\xfb\xaf\xb2\x04\x61\xc5\x34\x18\xb6\x2e\x43\x49\x4b\x6c\x13\x40\x49\x94\xe8\xc2\xfb\x8b\x94\x67\x74\x5c\xa1\x0c\x72\x8f\x0b\x0a\xab\xf5\x9a\x50\x06\xf9\x3c\x55\xc3\xbf\xb0\x45\x14\xe9\x69\xfa\x74\xcf\x3e\x11\x69\x90\x68\xf9\x8b\x92\x0d\xfb\x9e\x3f\x46\x5d\x78\x2e\xb3\x6f\xe3\x6a\x86\xa3\x29\x73\x01\x94\xca\xa4\xb3\xe6\x02\xa4\xae\x03\x4c\x74\x9e\x4c\x51\x94\xa0\x2e\xdc\x53\x50\x9f\x25\xcc\x71\x44\x8b\xf3\x86\xaf\x9d\xdb\x14\xb3\xe3\xef\xb9\xf4\xb7\xd3\x10\xaf\xfc\x7d\xbe\x31\x8e\xe3\x0a\xf9\xf1\x27\x5c\x3a\xee\xb8\x62\x75\xe3\x4b\xb9\xba\xd1\x9b\x4e\x33\x44\x71\x58\xab\x98\x32\xd4\x32\xc1\x03\x2f\x4c\xba\x70\xdf\x3e\x94\x19\x27\xf8\x19\xda\x79\x23\xaf\x33\x8d\xf1\x15\xdb\x91\x27\xf2\x3a\x21\xa6\x8d\xbc\xb7\x0f\x45\x26\x16\x82\x77\x9e\xca\x27\x97\xa0\x10\xf9\x64\x7f\xec\xc5\xe4\x84\xcc\x43\xf4\x3c\x1a\xa0\xab\x2e\x1c\xdb\xc7\x97\x52\x03\xcb\x81\x47\xd0\xde\x74\x9a\xa1\xdd\x63\xfb\x95\xdc\xfe\x51\x09\x59\xbc\xa9\x7d\x1c\x86\xde\x34\x09\xfa\x21\x7a\x9e\x50\x4a\x80\x36\x19\x3c\x51\x60\xca\x12\x43\x00\x86\x88\x26\xf8\x02\x31\xcc\xba\x77\xfc\x7c\xf9\x8e\xf7\x41\xf1\x52\xba\x30\x1b\x2f\x1d\xd5\x25\x40\x5e\xbc\x9f\xaf\x2e\xf5\xb6\xeb\x63\x8a\x43\x3a\xae\x50\x0b\xf2\x96\x3d\x66\x81\x05\x45\x8f\xff\xe2\x17\xb2\xeb\xb8\xf5\x34\xf0\x40\xb3\xea\x54\x85\xb8\xec\x67\x7e\xa2\xea\xb5\xaa\xf0\xc0\x3d\xe3\xea\x7f\xb7\xd1\x11\xea\xf7\x7f\xe3\x27\xaa\xed\x36\x85\x27\xea\x27\xd8\x05\x8f\x72\x3a\x27\x44\x6c\x8c\xfa\x6b\x56\x61\x3f\x55\xb3\x09\x48\x86\x3f\xe4\x90\x3b\xa3\x2c\xf8\x7b\xe7\xe5\x71\x87\xf4\x8f\xdc\xfd\x8e\x8c\x96\x0a\x03\x5a\xaf\xd6\x39\xaa\xef\x24\x3b\x7f\xbd\xba\x94\xd5\x63\x26\x48\xac\xea\x1b\xa7\xf6\x66\xf4\x5b\xeb\x9d\x94\xfa\x46\x73\x5a\x31\x98\x5e\x35\x71\xe2\xfe\xd4\x96\x76\x3d\xf6\x92\x13\xe4\xc7\x5c\xb0\x50\x7b\x76\xdc\xde\x3f\x98\x9f\x9c\x4a\xa9\xc4\x59\x4c\xa7\x74\xfc\x4b\xfb\xd9\x87\xd7\x6f\x1b\xef\x9e\xcb\xea\x25\x8b\x36\xdd\x9d\xe0\x72\xfa\x13\xde\x7f\xd2\x94\xd5\xed\x13\xc6\xcd\x3b\x3b\xc7\xaf\x2e\xf6\xfd\xd7\xc7\x02\x52\x51\x04\x82\xbf\xdc\x29\xa9\xb6\x46\x78\x15\x9e\x42\x34\x58\x3d\x87\x29\x92\xe2\x6d\x3c\xaf\x7f\x31\xe2\x4d\x66\x0d\x0e\x0b\x11\xa9\x62\xbc\x2a\x04\xb5\x58\xed\xb7\xbf\x57\x4c\x26\xce\x56\xd4\xe6\x1e\x2d\x22\xa4\xa6\x78\x89\xfb\xbe\x88\x90\x9a\xe2\x25\x7f\xfd\x84\x96\x33\x27\xc0\x05\x36\xd2\x16\xf4\xf0\x99\x72\xf7\x6f\xd6\x7f\x50\xdc\x7f\x50\x64\x5a\x9a\x23\x44\x4b\x8b\x25\xf2\x44\xec\x2c\x2c\x25\xd5\xfc\xc3\x9e\x15\x19\x02\xe6\xe4\xd8\xf6\x64\x4d\xcd\xab\x23\x00\x12\x4f\xd2\x08\x03\x3d\x59\xe1\xda\x80\x69\x13\x7f\xd9\xef\x2a\xe6\x1f\x76\x18\x68\x37\x40\x4b\xef\x0f\x7b\x81\x27\xcf\xba\xec\x0c\xd1\x8f\x9a\xb1\xb2\xd2\x16\x82\xe4\x24\x3d\x79\x67\x5d\x7a\x6a\x77\x77\x55\x5c\x40\xbe\x14\xca\x02\xb2\x22\xdc\xd7\xdf\x4b\x4d\x75\x10\x24\x5e\x3f\x44\xaf\xd9\xd1\x5d\x8c\xb3\xc4\x4c\x53\x16\x8d\xae\x52\xfa\xb1\xc4\xcb\xd9\xb5\xb1\xc5\x0a\xe3\x28\x1b\xb3\x5f\xea\x2d\xbe\x29\x5d\x48\x74\xf7\xa2\xb8\x1e\x33\x17\x48\x27\x0f\x0f\x16\x93\x29\x72\x14\x50\x9a\x7f\x96\x63\x0a\xe5\x3a\xb6\xdf\x0b\x75\x6c\xea\x5d\xcb\xee\x10\xc5\xee\x70\x45\xdb\x0a\x20\x49\x6a\x62\x56\x33\xdb\x39\x49\xa5\x20\xad\xc4\x37\x4a\x46\x19\xc1\x6e\x99\xc0\x13\x08\x76\xe1\x27\x73\x3d\x90\x11\xfc\x07\xaa\xf0\xc3\x0f\x69\xb8\x0c\xb8\xb7\x9b\x8f\x56\x54\x3d\xa3\x8f\xf2\xdf\x8b\x4e\x65\x26\x4b\xff\x98\x06\x1b\x12\xb2\x84\xf9\xc2\xec\xab\x7b\x55\x99\xab\x56\x56\x98\x69\x75\xcf\x29\xaa\x46\x17\xf7\x57\x53\x57\x42\xbf\x68\x3c\x35\x7b\x29\x6f\x82\x9d\x7b\xfb\x9e\x24\xa4\x55\xbe\x28\xc1\x1d\xb2\xcb\x4f\x7a\xf7\xe5\x7a\xeb\x11\x0b\xb0\x4c\x48\x28\xe5\x85\x93\xfc\xee\xf8\x8a\xdd\x99\xc1\x2e\x24\xf2\x5d\x61\x8e\x18\xf2\xdd\x18\xc2\x2e\xcc\xe0\x31\xfc\x6c\xbf\x83\x2e\x3c\xb3\x65\xba\xc0\xe9\xf6\x74\x04\xb7\x78\x38\x8e\xf1\xd4\x1b\x31\x13\x3f\x99\xf1\x83\x7c\x45\xb7\xd3\x70\x88\xb5\x1b\x08\x29\x2f\x9c\x14\x2f\x0c\xba\x10\xab\x08\xc8\x68\x3f\x0c\xfc\x73\x2d\x1f\xd5\xb5\x49\x60\x99\x5c\x2a\x5f\x16\xb7\x54\xa4\x71\x59\x64\xb7\x52\xc1\x75\xad\xb4\x0b\xb5\x56\x49\x27\xc6\xc9\xa9\xc8\x5a\xd1\x4d\xfe\x9b\x86\xde\xa8\x58\xff\x2a\xbf\x4a\xca\xea\x64\x57\x89\x41\xa5\x5b\x08\xf1\xfa\x29\x47\xa4\xb2\xc5\x8d\x31\xd3\x79\xf5\x67\x84\xc8\xed\xc5\xe1\x66\xe0\x11\x7c\xa5\xe0\x81\xa3\x5f\xd0\xfc\xcd\xb4\x0b\x2a\xbe\xaa\x9c\x61\x48\x6e\x13\xe9\xef\x24\xaf\x19\xbc\xa9\x0e\xb3\xbc\x5d\xc7\x1f\x7a\x34\xdd\xb2\x3b\x8a\x36\x09\x74\xc1\xf8\xf7\xbf\xff\xad\x6f\x70\x52\x80\x7e\x20\x0f\x3d\x85\xfc\x4b\x7e\xf4\x68\x5e\xe4\xae\x2c\x3c\xb4\xc3\x5b\x35\x9b\x50\x2d\x83\x54\x4f\x06\x5c\x69\xaa\x67\xd3\x20\xa1\x1b\x91\xcc\xed\x77\x49\x38\x66\xd3\x57\x52\x8e\xe9\xda\x2b\x49\xc7\xc5\xb2\x2b\xc9\xc6\xec\x22\xd1\xb8\xce\x2a\xe6\x02\xa7\xc8\x36\x63\x79\x2d\x61\xa9\xf0\x6d\x93\x93\x8c\x2d\xf8\xc3\xee\x93\x48\x46\x3b\x2c\x20\x4d\x4a\xb7\xaa\x0e\xb4\x86\xc5\x49\x84\xb8\x81\xde\x4e\xab\x1a\x90\xfe\xec\xa9\x50\x1e\x48\x58\xa5\x9f\x7f\x39\xdc\xa9\xfa\x8d\xf1\xd5\x53\x51\x9d\x98\xd5\xc1\xee\x6f\xe3\x3f\xde\xfb\x49\xf3\x9d\xa8\x0e\xe6\x9d\xd5\x7e\x3d\x78\x76\xf5\xf3\xfb\xe9\x5b\x61\xe8\xc6\x80\x55\x22\xa7\xef\x3e\x7e\xf4\x0f\x93\xd3\x3d\x61\x2c\x86\x74\xd4\xfe\xfe\x88\x7c\x98\xfe\xfa\xee\x58\x54\x29\x49\x7b\x3b\x3a\xad\x56\x5f\xfe\x35\x89\x85\x52\x51\x0f\x71\x6b\xfc\x46\x47\x6c\x8e\x3f\x43\x59\x04\xdc\x45\x64\x5b\x51\x3c\x5b\x16\x9a\x57\xe8\x91\xc0\xdb\x77\x1a\x8e\xd3\x14\xba\x24\xa4\x33\x99\xbd\xaa\xd7\x3e\x1e\x5e\x1d\x0a\x8d\x27\xa6\x69\xa5\xd1\xaf\xd5\x0f\x8d\xa3\x9f\xf6\xdb\x0a\xbf\xed\x01\xfa\x1e\x3a\xf7\xdb\x0a\x9d\x3b\x96\x61\xc6\xaf\x2e\x76\xee\x00\xdd\x4a\xf0\xdc\x19\xfa\xda\xa2\xe7\xe6\x27\xf6\x4f\x0e\x9f\x7b\x81\x04\xfa\x28\x09\x58\x4a\xe3\x74\x2c\x2f\xec\x60\xa0\xb6\xa5\xf6\xfa\x48\x46\x21\xa5\xc6\xd4\x2c\x38\x83\x5a\xb6\xb3\x3f\xf6\xa2\x91\x4a\xb6\x43\x41\x2a\xcc\x40\xaa\x67\x04\x03\xc3\x02\x83\xf5\x4d\x3f\xb0\x2e\xe8\x87\xac\x25\x43\x2a\x77\xf1\x61\x17\x2e\x90\x3e\xdf\xbc\xe0\x17\xa5\xaa\x19\xb5\xf8\x3f\x93\x20\x30\x4a\x40\xd1\x4f\x6f\x8a\xce\xba\x60\xf0\x0c\x0e\x06\xec\xee\x02\x99\x4f\x11\x1e\x42\x4c\xf1\xa5\x61\x30\x41\x93\xc4\x96\x79\xc3\xc9\x0e\x6e\x68\xa9\x3e\x94\x6d\x85\x84\xcc\x0f\xa2\xe9\x8c\x18\x16\xc5\x72\x8a\x29\x06\x03\x35\xab\x74\xc1\xbd\x0a\x0b\x38\x7e\xb6\xbf\x5d\xf0\x25\x4b\x61\x41\x50\x59\x63\x6f\x32\x30\x51\x0c\x6d\x4c\x26\xe1\x53\x1c\xab\xc7\x97\x5b\x20\x95\x02\xad\xd0\x7e\x67\x5b\xc3\xe1\x11\x27\x33\xea\x8d\xba\xd0\x23\xf1\x0a\x15\x29\xaa\xe7\x8b\x1a\xaf\xd1\x50\xf0\xfc\x83\x08\x73\xac\x8f\x62\x82\xca\xa9\x54\xd5\xea\x54\x6d\xbb\xe5\x0d\xbf\x52\x8d\xae\x97\x48\x6c\x10\x24\x53\x8f\xf8\x63\x05\x2a\xbb\x42\xa6\x21\x0c\xf2\x05\x39\xc5\x26\x93\x03\x12\x85\x1c\x90\xe9\x34\xe5\x72\x40\xa6\xbd\x94\xcb\x01\xfd\xa2\x71\x68\xcb\x23\x3d\xb5\x3c\x72\xa6\x96\x47\x86\x45\xe3\x18\xe6\xc7\x11\x2a\xc6\x31\x85\x5d\x18\xca\xc7\x31\x60\x8f\xa5\xe3\x18\xc3\x2e\xcc\x91\x79\x4f\x08\xef\x90\xba\xd9\xce\x11\xf3\xf6\x96\x55\xe9\xc3\x2e\x7c\x28\x81\xf0\xc7\xb6\x3f\x8b\x63\x14\x11\x16\x22\xc5\x82\x01\x5d\x06\x8d\x68\x65\xc8\xe6\xbe\x17\x3a\xe2\x7b\x95\x8b\x52\x56\x72\x91\x8d\x34\xa2\x17\x68\xfa\xb4\x1a\xa9\xcc\x4a\xc7\x55\x2e\x30\x0b\x1d\xf4\xa0\x54\xac\x01\x2e\xd9\xd1\xe9\x7a\x76\x7b\x5d\xeb\x87\x2a\x20\xe3\x18\x5f\x32\xb3\xc5\xc3\x38\xc6\xb1\xf9\xe7\x2c\x3a\x8f\xf0\x65\x04\xec\x76\x63\xd6\xd1\xc0\xe2\x6b\x6e\xe7\x35\xd8\x93\x92\x08\xa3\x0d\x08\x55\x53\xd7\x5b\x44\x8f\xbf\x44\xe5\xdd\x23\x94\xe4\x0a\xe4\xe5\x9f\x32\x61\x48\x56\x32\xd9\xa7\x22\x64\xc2\xf5\x36\x31\x7d\xb8\xf6\x0d\xf5\xaa\x94\xcf\x19\x98\xa8\xe7\x9c\x31\x31\x96\xc9\xaf\x92\xe4\xa2\x70\x0a\xa5\xa6\xa1\x39\x15\x28\x56\xd3\x2a\x49\x49\x0b\x3c\x0b\x22\x29\xb4\x5c\x95\xc4\x67\x19\x5e\x82\x20\x4a\x88\x17\xf9\x94\xa6\x3c\x0c\x11\xdd\x7e\xc6\x89\xdf\xcb\x2a\xd8\xc4\x1b\x51\xea\x06\x3e\x7f\x06\xe3\xf9\xab\xe3\x37\xa7\x9c\xe8\x5c\x7f\x6e\x13\xfc\x66\x3a\x45\xf1\xbe\x97\x20\xb3\x52\x61\xd5\x0f\x23\x82\x62\x83\x99\x01\x20\xfb\x1c\xcd\x69\xcb\x23\xa5\x86\x69\xa4\xab\x62\xd2\x26\x5a\x23\x19\x46\x65\x8e\x73\x17\x52\xe1\xdb\x2f\x68\x7e\xc0\x02\x69\xca\x2c\x9b\x24\x44\xaf\x72\x5c\x6b\x63\x53\x06\xb1\x14\x1b\xda\x14\x36\xbf\xd6\x45\xbc\x95\xe0\x79\x84\x34\x5d\xf6\x2e\x83\x01\x19\x77\xc1\x69\xea\x84\x49\x19\xa3\x60\x34\x26\xac\x76\xd1\x39\x51\x1d\x13\x39\xf8\x6c\xbb\x0f\xb8\xe4\x3e\x14\xc2\x9f\xa0\x8f\x40\x7f\x23\x56\x7c\x27\x8b\x55\x12\x90\x32\x51\x8b\x5b\x5c\x63\x2b\x52\xa7\x9e\x12\x6f\x30\x76\xa9\x0b\xc6\xde\xf1\x73\x78\x42\x2f\x6e\xcd\xf7\x28\xbf\xda\x05\x83\xa0\x2b\xa2\x53\x3d\xe5\xf6\x74\x90\xee\x92\xeb\xeb\x17\x81\xd3\x0a\x68\x94\x59\xd2\x94\x38\xd1\x5f\x51\xfd\x17\xb2\x05\xe5\xa6\x61\x26\x66\xee\x0c\x5e\x58\x29\xb1\x4a\x3a\x19\x17\x4b\xae\x7f\x89\x45\xdd\xca\x39\x76\xfb\x43\xea\xeb\x1d\xd2\x29\xbd\x79\x28\xe5\x7f\xfb\x23\x28\xaf\x75\xf7\x74\xf0\xe8\xe2\x64\x0d\x0a\x1d\xec\x16\x3a\x21\x41\x46\xc2\xe5\x0c\x6f\x69\xe6\x09\x99\x87\xa8\xd0\x75\x26\x43\xea\x4a\xb3\x01\xad\x11\xfd\xc2\x74\xcd\x3a\x42\x10\x95\x91\xda\x25\x52\x47\x29\xba\x44\xc5\x61\x8a\x0a\x33\x73\x7c\xbb\xa1\x89\x16\x0d\x57\x2d\xd8\xf4\x8d\xcb\xc5\x1d\x72\x44\x31\x59\xd7\x8b\x36\x97\xa7\x13\xd5\x9f\x7b\xfb\xa5\xc3\xab\x6f\xc4\xa9\xa9\x56\x2c\xb8\xb7\x1c\xea\xb7\x10\xa8\x88\xce\x88\x79\xb7\x76\x1f\x3e\xe4\x64\xb0\xc9\x19\xfd\x74\x12\x2c\x2c\x34\x13\xed\x52\x80\x6c\xa5\x54\x73\xea\x0e\xcb\x5f\x28\xde\xfa\xaf\x61\xa2\xf2\x68\x3e\x3d\xc7\x02\xe3\xe5\x2c\x21\x90\x10\x2f\x26\x09\x5c\x06\x64\x0c\xe9\x9a\x00\x8e\x21\x73\xfe\x35\x94\xe6\x7a\x50\x2a\xd4\x52\xc1\x70\x9e\x47\x17\x5e\x18\x0c\x18\x05\xa3\xd9\xab\x53\xa6\xd7\x2c\xd6\x92\x93\x3f\x4e\x75\x8e\xeb\xde\xda\xa7\x15\x71\x6c\xe2\xcd\x4e\x75\x0f\xcd\x3d\xd3\x8c\x73\x51\xbc\x78\xec\x42\xf8\x0f\xd4\x3a\x9d\xca\x16\xe0\xd3\xfa\xca\xc0\x27\x4e\x67\x74\x8a\xae\x88\xe6\x76\xb5\x6e\x06\x24\x55\xbd\x6e\xdc\x52\xb0\x98\x42\x85\x5b\x65\x98\xcd\xc9\x47\xe0\x72\x18\xe2\x15\x03\xeb\xd3\x45\x34\xae\x34\xef\xa5\x26\xc8\xba\x45\xb9\x90\xbe\xce\x00\x59\x55\x0b\xea\x2a\xeb\xe4\x1e\x3d\x55\x6e\xf5\x4b\x85\xd0\x3a\x42\x62\x0f\xbd\xaa\x94\x2e\x4a\xa3\x27\x77\xc1\x78\x12\xe3\xcb\x84\x85\xcf\x21\xcb\xd8\x9c\xf7\x64\x24\xde\x00\x11\x2f\x08\xbb\xf0\xff\x4e\xc7\x41\x02\xfd\xf4\xdd\x01\x46\x49\xbe\x01\xe0\x81\xa2\x0d\x0b\xa6\x21\xa2\x1b\xe8\x8f\x31\x4e\x10\x78\x11\x26\x63\x14\x03\x8e\x90\xfd\xff\x04\x6b\x20\xe8\x34\x13\x81\x16\x4f\xe4\x08\x4f\x13\x0b\x12\x3c\x41\x64\x1c\x44\x23\xb8\x44\x11\x81\xcb\x18\x47\xa3\x7b\x22\x7f\xbb\xb5\x45\x15\x28\x8b\x8e\x53\xa3\x96\x8b\xa4\x7d\x9e\xd4\x9f\x5d\xbc\x16\x2d\xca\x3e\xab\xf4\xae\x7d\x71\xf2\xf3\xc7\xea\x71\x5f\xc8\x6c\x9e\xb3\x3a\x87\x6f\x87\xaf\x7f\xfd\xfd\xe8\x97\xf6\x4b\x61\x88\x31\xae\x1f\xeb\xd4\x9a\xae\xa3\xa0\x1b\x5f\x7d\x37\x9e\xf9\xc6\x8c\x67\x4e\xbe\x19\xe3\x99\x57\xff\x54\xe3\x99\x57\xff\x50\xe3\x19\x09\xc4\x1d\x6a\xd8\xc5\x30\x17\xff\x02\x33\xd6\xd7\x3c\x6c\xf9\xbe\xc2\x90\xbf\x8c\x35\x2b\xbe\x40\x71\xe8\xcd\xf7\x0b\x2a\x07\x3a\x96\xb6\xbe\xc0\xaa\x86\x4d\x89\xdb\xd1\xe4\x47\x4e\x7f\x59\x0c\x90\x3d\x5e\x1b\x07\xab\x90\x76\x27\x37\xbd\x59\x31\x85\x89\x2d\x78\x87\xec\x77\xb6\x8f\x23\x42\x89\x59\x85\x1e\x7b\xf1\x0e\x4e\xdf\x49\xbb\xd7\x51\x20\x54\xcc\xa1\x59\xb1\x28\x06\x39\x91\xda\xa6\x04\x69\xb0\x06\xd9\x4a\xad\x2e\x86\xc2\x4c\xb7\xd8\x3e\x64\x7d\xe1\x84\x8a\xa4\x6b\x0b\x7c\x75\x8e\xbe\xa5\x08\x2a\x10\x92\x41\x85\xd4\xce\x01\xb7\xf4\x98\xa0\x09\x36\x0f\x85\x8e\xeb\xaf\x37\x6c\x41\x04\x95\x5e\x2c\x2a\x1d\x0e\x87\xc8\x5f\x0f\xa1\x4b\x7b\xda\x2b\x69\x2e\x02\x5a\x1e\xf8\x59\x8c\x12\x64\xf3\x4f\x0a\x3a\xf2\x8b\x47\xc6\x2b\xb4\x36\x81\x05\x82\xd0\x89\xa6\xc4\xf1\x03\x9f\xa6\x22\x7a\xd2\xbd\xcb\x20\x1a\xe0\x4b\x9b\x51\x8d\xc5\x09\x11\x28\x05\x82\x7a\xd5\x33\x9b\x53\xa3\x05\xd2\xc8\x20\x8d\xe7\xc3\x15\xe3\x58\x9d\x4a\x2d\xc6\x97\x10\xd8\x3e\x1e\x20\x2e\x7c\x12\x80\x28\xc8\xf9\x07\x3a\x3a\x8a\x9a\x5e\xeb\x2b\xc4\xb9\xbe\xf7\xbe\xfd\x32\xae\x98\xc6\x62\x49\x0d\xa5\x96\x35\x2a\xf2\x97\x7f\x51\xb6\xff\x37\xf6\xe9\x87\x0a\xbd\x1d\x55\xbd\x5a\x40\xce\x56\x65\xa1\x07\x6a\x1d\x45\x86\x9b\x62\x2d\x58\xc9\x61\xa0\x63\x95\x08\x7b\x13\x0d\x9d\xab\xaa\x27\x63\x3c\x0b\x07\x0c\xfb\x1d\x45\x47\xd9\xbb\x4c\x3c\x2d\xcc\x02\x22\x7c\xef\x30\xf1\x0b\xaa\xaf\xe3\x59\x95\x8b\xf6\xed\xe8\x4c\xf7\xb7\xd2\x99\x4e\x10\x93\x5f\x2b\x58\xe3\x1b\x07\xe7\x7a\x9e\x7a\x24\x38\x6e\xdd\x49\xb3\xdc\xb4\x9b\x2d\x71\xf0\x9b\x53\x94\x26\x44\x68\x8b\xbd\x0f\xde\xf0\xe7\xb5\x66\xb3\x25\x8c\x6f\xf3\x3e\x65\x9b\xda\xad\xa6\xf0\xfd\xfb\xe9\xfb\xd5\x8e\x2b\x8c\xae\xf3\x24\x35\x4b\x6c\x36\x84\xaf\xbf\x4c\xa7\xd2\x71\x5d\xd7\xad\x58\x60\xbc\x77\x9c\xda\xcf\xbf\x3d\x99\xbf\x7d\xf6\x54\x68\x5f\xf6\x94\xf3\x8c\xce\xc4\x7d\x97\x44\x1f\x9f\x5e\x08\xb5\x59\x1f\x53\xbf\x8f\xd3\x5f\x9e\x1e\xbd\xac\x9f\x8e\x3e\x28\xbc\x25\xde\x4a\x14\x05\x99\x8f\x77\x59\x0f\xef\xc7\xab\x5f\x29\x5b\x20\x01\x23\x7e\x1d\x30\xd5\xb9\x82\x50\x4c\xfb\xd9\xdd\xdd\x85\x08\x1e\x83\x5b\x07\x39\x2d\xc2\x6f\x03\xae\x8a\x51\x90\x8a\xb9\x26\xe3\xac\x49\x91\x2e\x43\xe0\x03\x95\x5c\x8c\xe4\x67\xe8\x6a\x12\x46\x49\x1a\xc8\xb1\xfb\xf0\xe1\xe5\xe5\xa5\x7d\x59\xb3\x71\x3c\x7a\xe8\x56\xab\xd5\x87\xec\x5d\xf1\x9b\xa9\xfd\x80\x6c\xd0\x99\x72\x49\xa6\x0e\xbe\x08\xd0\xe5\x13\x7c\xd5\x05\xa3\x0a\x55\x3a\x1f\xb7\x2e\xeb\x69\x18\x84\x3c\xa8\x71\x24\x8d\xc1\x99\x90\x18\x9f\xa3\x2e\x18\xa9\xa9\xdf\x3e\x0e\xb1\x34\xe4\x31\xaf\xfc\x96\x8f\xdf\x70\xd5\xd5\x5e\x04\x11\xf2\xbd\x69\x17\x8c\x18\xcf\x22\xa9\x9a\x6f\x59\xf9\x03\x0e\xa2\xa2\xda\x62\x64\x37\xf5\xc8\x58\x8d\xed\x06\x5d\x30\x5e\x76\xc0\xe9\xf8\x3b\x0d\x70\xec\xc6\x4e\x63\xc7\xb5\x1b\x3b\xad\x9d\xda\xc4\xa9\x43\xf3\x62\xa7\x66\xb7\x5b\x5e\xcd\xae\xb5\x80\xfd\xa1\x4b\x5b\xdd\xb1\x3b\xf5\x1d\xd7\x6e\x3a\x7e\xcd\x76\xea\x3b\x76\xad\x01\x4d\xbb\x5e\xdf\x71\xec\x46\x9d\x7f\x6a\xed\x35\xec\x7a\x1d\xd8\x1f\xf6\x0a\xb8\x55\xa8\xdb\xad\x16\x34\xec\x6a\xfa\x87\xff\xee\x74\xec\x8e\x03\xce\x89\xd3\xb6\x5b\x35\xbb\xd9\x00\xa7\x09\xae\x5d\x6f\x7b\x4e\xcd\xae\xb5\x81\xff\xe5\xbd\xb6\xa0\xba\xdf\xb4\xdd\x16\xad\xd5\xb0\xab\x1d\x70\xd2\x7f\xf6\xd6\x1b\x6d\xb0\xbe\xbc\xb5\x31\xd0\xf1\x41\xcd\x6e\xb5\xfd\x2a\xfd\xd5\xa5\x33\x82\xa6\xdd\x74\xd8\x98\xa1\xb5\xb7\x36\x4d\xe8\x80\xd3\xb6\x9d\xda\x6f\xae\x2b\x71\x1b\x15\x63\xeb\x42\xd2\xfa\x2f\xb4\x12\x65\xa2\x88\x8d\x4c\x85\x6f\x4a\x3e\x92\xd3\x68\xb7\x6c\x2e\xf5\xb2\xa4\x8d\x7f\x19\xfd\xf9\xd3\xd2\xfa\x73\x2d\x3b\xa4\xcc\x06\x49\x98\x71\x39\x5f\x16\xf6\x47\x8d\x2d\x5d\xdc\xd7\xe2\x23\x1b\x63\xe7\xc6\xb1\xf8\x53\xff\xda\x35\x0f\xeb\x32\xc1\xe5\xa5\xee\x04\x8b\xa6\xbf\x74\xcc\xfa\x8f\x45\xf4\x13\x0f\x5a\x5f\x18\xf7\xf7\x61\x90\x24\x33\x24\xf4\x14\x15\x8f\x39\x0f\x99\x6f\xf5\xac\x7c\x16\x06\x6c\xa5\xec\xd7\xd4\x75\x29\xa8\x18\xab\x11\x8c\xef\x2c\x90\xbc\x9c\xbe\xf9\xb9\x48\x58\xa5\xc1\xc7\x30\x05\xf6\x2c\xe2\x02\xba\x41\xde\xff\xe8\x35\x1a\x86\xc8\x27\xf0\xf9\x33\xdc\x4b\x3f\xdb\x3e\x8e\x12\x12\xcf\x7c\xb2\x48\x38\x7a\x4f\x66\x44\x40\x1b\xde\x78\xcd\x4e\xc6\xde\x44\xef\x5d\x23\x1b\x7c\x7e\x4c\xc7\x31\xbe\x9a\x2f\xdf\x97\xa9\xc1\x0b\x02\x07\xa7\xaf\x3f\xc1\x38\x44\x5e\x64\x4f\x63\x4c\x30\xed\x80\x1b\xdd\x1f\x0d\x6d\xdf\x0b\xc3\xcd\xc1\x9b\xe9\x0b\x16\xf4\x36\x82\xdb\x73\xb1\xb8\x2c\xb4\xec\x4a\xb0\xe1\xc2\x71\xc9\x32\x81\x8a\x64\x14\xc2\x7c\x48\x1b\xf1\xf4\x0b\xad\x5d\x52\x51\xcd\x13\x2e\x12\x94\x71\xc8\x74\x5b\xd4\xe2\xde\x4c\xc4\xb0\x6c\x8c\x8c\x83\xa4\xb2\x5c\x43\x2c\x33\xac\x81\xf4\xd2\xdb\x5c\xf5\x38\xa7\xce\xb3\x00\xcb\xce\x12\xa0\x30\x41\xac\x89\x58\xa2\x0a\x2c\x8e\x93\x77\x7f\x31\x64\x0b\x44\x01\xb9\xd6\x15\x5f\x9b\x44\xc0\x33\x1d\x22\x00\x52\x69\xff\x7b\x94\x7a\x15\x49\x57\x3c\x3b\xc8\x3f\x23\x93\x6c\x6a\xb6\xb2\xb2\xe8\x8f\x68\xc4\xb6\x52\xac\x3f\x1d\xd3\xf3\x95\x25\x50\x54\x5e\xa8\x60\x62\x01\x27\xc5\xb3\xa0\xb1\x48\xd0\x71\xec\xcd\xcd\x38\x4d\x83\x56\x7d\x04\x01\xfc\x08\xf1\x23\x08\x1e\x3c\xa8\x00\xee\x05\x67\xf9\xb7\x7b\xc1\x59\x71\x40\x27\xc4\xec\x6b\xe8\x11\x4d\xf7\x99\x1e\x48\x3a\xe0\x33\x0a\x34\xbe\x47\x4c\x9c\x39\x02\x72\x75\x0a\x13\xd2\xa4\x90\x6d\x81\x91\x10\x8f\x68\x44\xe3\x66\xf9\x79\xbb\x0a\x3b\x43\xc8\x94\xde\xa5\xc4\x5c\x39\x68\x3b\xcd\xb6\xbf\xa7\x18\xca\x39\x9a\x53\x2e\x01\x45\x03\x75\x6e\x96\xd4\x5e\xb4\x44\xc4\x1b\x7a\x9a\x79\x7e\x7d\xba\x20\x36\x9b\xaf\x76\xba\x7c\xc6\xdb\xc7\x69\x1e\xff\x7c\x0b\x16\x18\xd1\x6c\xd2\xe7\x4e\x01\x19\xda\x36\x79\xc4\x4f\x1f\x0f\x50\x05\x1e\xc3\x11\xea\x61\xca\x3e\x1f\x51\x0a\x97\xa9\xa8\x75\x43\x18\xea\x90\xce\xeb\xa5\x80\x94\x5e\x2f\x9b\x9c\xf1\x5f\x7a\x74\x06\xe4\x35\xea\x3a\x91\x81\x20\x67\x13\xa0\x11\xeb\xb1\x28\xb6\x60\x81\x15\x4e\xa6\x7b\xa5\xfb\x35\x8d\xf1\x34\x59\xe8\x89\x34\xb2\x81\xc7\x16\x60\xc5\x29\x90\x9c\x80\x33\x1d\xd0\x1e\x21\x72\x80\xe2\xe0\x02\x0d\x98\xf7\xea\xd3\x18\x4f\x0e\x79\x6a\xec\x12\xc0\xae\xed\x0f\xa5\xb1\x8f\xe9\xc1\x2f\x08\x52\xa7\x58\x6d\xe9\x72\x54\x2c\xd1\x3e\x5f\x9b\x9e\xbd\x8f\x27\x53\x1c\x49\xd4\x61\xbf\x71\x39\x5b\xb3\x5e\x17\xcb\xf1\x7e\x92\x58\xb0\x00\x8b\x99\x85\x79\x9c\xe5\xf3\xb8\x7a\xb2\xf3\xc7\x8b\xbf\x0e\x35\xe3\x27\xff\x9a\x0a\xe3\xdc\xdf\x1a\xe7\x07\xc1\xf1\xe1\x4f\xa2\xfd\xf8\x23\xb5\xf2\x78\xea\xcf\x06\xef\x4e\x7e\x0b\x84\x89\x53\x7e\xd1\xbd\x12\x97\xbc\xb1\x52\xcc\x05\x99\x33\x25\x3c\xd6\xb5\x5c\x56\x65\x21\x56\x69\xf7\x05\x52\xb2\x32\xdc\xf0\xaf\x4a\xd9\x3a\xb7\xbd\x56\xcd\xf2\x76\x64\xdd\x7f\x28\x20\xb9\x94\xc0\x5a\x30\xd2\xdf\x53\x11\xb0\xe3\xb6\x85\x22\x62\x14\x71\xd0\x6d\xb6\x5c\x21\xe8\x46\xfc\x79\xad\xe1\xba\x2d\x85\xe5\x0e\x89\xbe\x5b\xee\x7c\x5b\x96\x3b\x71\xf4\xad\x58\xee\x90\xe8\x1f\x6a\xb9\x93\x9f\xd8\x3f\xc9\x72\x27\xff\x95\xf1\x9b\x51\x66\x8b\xf0\x12\x4d\x44\x6a\x04\x3f\x92\xdf\x8f\x53\x9c\x04\x3c\xef\xb9\x11\xa3\xd0\x23\xc1\x85\x54\x77\x30\xf1\xae\x52\x5d\x80\x83\x34\xd3\x96\x24\xd1\xd7\x91\x30\x6a\x11\xd4\x7f\x3d\x4b\x4a\x9a\xc4\xe0\xe5\xd7\x92\x3d\x2a\x97\x7f\x60\x75\xa8\x05\x76\x12\x51\x64\xef\xb5\xed\x18\x79\x03\x69\x44\x5f\x48\x35\x64\x74\xca\xbf\x23\x3b\xae\x98\xd2\xb8\x7c\x90\x8b\x3d\xf4\x1b\xb2\xef\x57\xcc\x8a\x30\xdb\x51\x56\x58\x56\xef\xa8\x54\x30\x65\x7d\x72\x94\xf9\x8e\x25\x5d\xc0\x3c\xe2\x92\xca\xe2\x25\x2b\x03\x8f\x78\x09\x22\x49\x17\x7a\x71\x64\xf2\xff\x3f\x5d\x5b\x74\x95\x9e\x1f\x56\xd8\xbf\x87\xb3\x1e\x39\xb3\x67\x53\xb5\xb9\x91\x70\x2c\x5d\x08\x4c\xe3\xcd\x54\x1a\x22\x44\x34\x1a\x3a\xfc\xd9\x54\x87\xc7\xb1\x40\x3d\xe4\x01\xbe\x8c\xb6\x1d\xf4\x01\xbe\x8c\x4a\x0f\x9b\x76\xa8\x33\x70\x85\xfc\x17\x0a\xf8\x85\xd4\xfb\x9f\x58\xa0\x95\xcd\x01\x45\xa9\x1d\x9d\x41\x62\x6f\x38\x0c\x7c\x76\x56\x0c\x96\x52\x1f\x6f\xe9\x02\xe8\x2b\xe3\x1f\x09\xe9\x50\xdf\x8b\x2e\xbc\xa4\x98\x14\x65\x5e\xb6\x2b\x23\xbd\x25\x7a\x54\x98\xa2\xcf\xe3\x14\x65\xa7\xd5\x6a\x08\x73\xfe\xcc\xf8\x73\xc7\x69\xd4\x84\x21\x21\xc3\x88\xb3\x34\x51\xfd\xfc\x45\xeb\xf2\xc5\x81\xd0\x70\x7d\x18\x15\x45\x5c\x9a\x46\xab\x06\x72\x22\xeb\xfc\x48\xc3\xd0\x6e\xfc\x25\x6f\x90\xaf\xe1\x06\xd0\xc5\xb9\xb1\x26\x53\xb9\x3e\x92\x61\xa4\x13\x1a\x04\x58\x8e\xae\x13\x12\x33\xbb\x83\x27\x0f\x0b\x35\x54\x59\xa1\xd8\x22\xff\x9a\x16\xca\x2b\xae\x44\xf2\x61\x97\x22\x8d\x64\x01\x90\x2e\x11\x29\x4e\x18\x00\xe9\xc5\x48\x7a\x8e\x4a\xfa\x0a\x4b\xc8\x9a\x96\xbb\xeb\x60\x15\x7d\xf1\xcb\x17\x55\x98\x6b\xa4\x1f\x07\xfd\x12\x31\x4d\x04\x4d\x6a\x05\x74\xcf\x4a\xba\xa7\x8c\x60\x67\x58\x14\xd1\x3b\x10\x1e\x80\xa1\xbf\xc5\x90\xdf\xe6\x7c\x4b\xec\x6a\x4a\xdb\xd2\x6b\x4a\x2b\x5d\x88\x56\x26\x04\x74\x46\x6f\x4e\x05\x62\x55\x53\x3b\x5c\x3e\xcb\x56\xa7\x80\x26\x8a\xed\x74\xee\x05\xf4\xd0\x5d\x9f\xcd\x53\x4c\xbc\x90\x1f\x33\xed\xb3\x19\x6e\xf1\x92\x8f\xa3\xe8\x15\x13\x68\x77\xa1\x20\xa6\x09\x7c\x6d\xa7\x59\xa3\x2a\xdd\xd2\x41\xc9\xe8\x4b\x59\xc9\xd9\x3d\xe3\xcb\x28\xc4\xde\x80\xad\x6f\x89\x63\xc4\x49\xfe\xd9\x74\x9b\x77\x53\xf7\x09\xee\x31\x19\xe0\x48\x66\x23\xbd\x5e\x4a\xe2\x8b\x14\x64\x96\xe7\x5c\x5b\x57\x01\x79\x90\x5b\xbe\xaf\x3c\x87\xeb\x25\x0f\x7d\x71\x2a\x1d\xb9\x4d\xd4\xc2\x23\x98\xde\x35\xd6\xf7\x22\x3b\xfe\xd5\x44\x16\x04\x5a\xa8\x8c\x91\xc1\x37\xc1\x66\x09\xec\x82\x6f\xa7\x7b\xa7\xf2\x10\x60\xf5\xd2\x3d\x52\xd4\x9b\xb1\x7a\xcb\xbd\xd0\x4f\x04\x5f\x4a\x5c\x1c\xea\xd1\xe0\xbd\x1b\x05\x29\x32\x12\xe4\x6f\x67\x6e\xa3\xd7\xd5\xea\xfb\x84\x72\x8a\xf4\x74\x1b\x1a\x3b\x7f\xc3\xbe\x14\x0a\x2a\x28\x8e\x66\x63\xdd\x2c\xf6\xd3\x17\x5f\xd6\x83\x14\xe5\x7e\x81\x85\x95\xf8\x71\x2c\x7b\xf8\x47\x2d\x2c\x87\x57\x60\x38\xe1\x0b\x2c\x6e\x41\x62\xb9\x7f\xd8\xe2\x66\x50\xfb\xc5\x96\xb7\x30\x5c\xe3\x3f\x6a\x79\xf7\x7c\x12\x5c\x20\xd8\x5f\x12\x45\x5f\x60\x89\x67\x37\x5a\x62\x69\x5a\x1a\x99\xc0\x67\xf5\xf7\x05\x41\x72\x11\xa9\x7d\x3d\x56\xe4\x0a\xb7\x62\x51\x2d\xdc\xb8\xcb\x02\x6b\x66\x12\x90\x10\x75\x01\x99\xc6\xd1\x05\x8a\x2f\x02\x74\x29\xdb\xa1\xf2\xd0\x97\x83\xbc\x9f\x90\x1d\x63\xac\xa7\x5b\x2e\x0f\x77\x42\x79\xe0\x38\x2a\x74\x8e\xda\x02\xd4\x56\xe7\xe4\x8f\xbd\x58\x3f\x43\x54\x3e\x4a\x9b\x7d\x92\xe6\xff\xd7\x02\xee\x61\x2a\x90\x5b\x69\xe3\x17\x7d\x33\xa0\xcc\xee\xc0\x70\xab\xd5\xe9\xd5\x6d\x09\x81\x84\x33\x4b\x8a\x96\x1d\x0a\xa3\x6d\x4a\x8f\xe0\x76\xd1\xea\xfb\xa9\x04\x75\x38\x72\x5e\xb7\xde\xcd\x9a\xae\x21\x10\xd3\x8e\x34\xcd\x93\x6f\x68\x81\xd1\x2f\x2d\xd6\x2e\xe3\x8f\xe0\xb6\x75\xfd\x11\x8a\x6b\x7a\x51\x30\xf1\x08\xea\xc2\xbd\xa2\x9a\x7e\x95\xcb\xd3\xa3\x64\xea\xc5\x28\x2a\x8c\xf9\xe8\x3b\x5d\x30\xfe\xd5\xac\xd3\xff\x6e\x4b\xf4\x2e\xe8\xf2\x8a\x6f\xbb\xf3\x7b\xa7\x73\x7c\xfc\xcc\x8f\x5a\xa2\x71\xcd\x53\xd8\xc0\xbf\xb5\x67\xc7\xc7\xd5\xc1\x07\x51\xa5\x0f\xa9\x08\xbf\xdd\xae\x0b\x25\x23\x13\xfe\xbc\x55\xeb\xb4\x6a\xa2\xe7\x97\xfc\x79\xa3\x53\x6f\xb6\x44\xcf\x8f\xf8\xf3\x76\xbb\xd5\x10\x3e\x3f\xe6\x83\xac\x25\xa7\xb3\xdf\xf1\xe0\x8f\xb9\x27\x8c\x5d\x93\x4e\xf7\xed\x20\x9e\x8f\x3e\x3e\xfd\x4d\x98\x12\xeb\x9c\x55\xfa\xab\x13\x3d\xf9\xf9\x72\xef\x22\xfc\x28\x0c\x5e\x93\xf6\x36\xff\xeb\xe4\xf7\x29\x9a\xd6\x0f\x44\x95\x5e\xa5\x95\x2e\xff\x3a\xf6\xdf\xf7\xc9\x2b\x61\x22\xa9\x93\x74\x71\x93\x41\xa3\x73\xfe\x11\xed\x08\x21\xe3\x30\xdb\x81\xa6\xf7\xe6\xd9\x6c\x67\xe7\x44\x54\xe9\x20\x9d\x9c\xf3\xea\xf9\xe9\x31\xaa\xbf\x15\xee\xe5\xeb\xb4\xd2\xf9\xc7\xc3\xe7\x2f\xfa\x6f\x7f\xfa\x4b\x54\xe9\x85\x8e\x92\x63\x4f\xa1\xa0\xf7\x28\x49\x13\x90\x79\x17\x2e\x23\x1b\xbf\x97\x29\x82\x47\x21\xee\x23\x56\xe7\xf7\x37\xa7\x32\xff\x26\x3c\x99\x78\xd1\x80\xd5\x42\x2d\x99\x43\xf2\x30\x08\x79\x43\xaf\x9e\xca\x7c\x12\x13\x44\x48\x10\x8d\x12\x56\xcd\xff\x45\xe6\xe2\x19\x06\xd1\x39\xab\x72\xf9\x76\x4f\xef\x0c\x3d\x8f\x96\xd1\x19\x4a\xea\x57\x82\x84\x13\x7f\x85\x0a\x76\xa2\x0a\xbc\xcb\x85\x6a\x81\x8f\xa3\xe7\xb2\xec\x3f\xb0\x08\x4a\xc2\x14\xab\xa7\xe8\x4a\x75\x23\x07\xb0\x0b\x7b\x51\x2f\x56\xc9\x22\xfd\x7c\xa8\x8f\x77\x11\x77\xc2\x7a\x15\xa5\xce\x4d\xba\xe9\xed\x93\x8a\x39\xb0\xe3\x37\x6a\xea\x0b\x17\x18\xdc\xe5\x62\xd1\x96\xa6\x9d\x82\x34\x91\xe6\x4d\x68\x9c\x93\x22\xbb\x61\x2d\x71\x47\x59\xaa\x5a\xd0\xe7\x29\x85\x2a\x99\xf1\x2e\x5d\x46\xe3\xa1\xec\xde\xe1\xd0\xd3\x05\x23\x3b\xba\xb2\x8a\x0b\xf8\xe9\xc2\x92\x1a\x16\x1d\x14\xd9\x02\xf2\x71\x4c\x63\x7c\x15\xc8\x7d\xc8\x16\xc3\x61\x28\x42\x67\x2c\xc7\x69\x83\xe5\x87\x12\xcf\x42\x8d\x81\xa4\x78\x48\x67\x28\xaf\x59\x83\xe5\x07\x92\x13\x8b\x17\x0e\x87\xa2\x29\x9d\xb1\x50\xae\x72\xcb\xb1\x0c\x83\x51\xf1\x38\x32\xac\xaa\x39\x96\x61\x30\xda\x62\x30\x21\xd6\x18\x09\xbd\x02\x74\x46\xf1\x82\x36\x26\x18\xc3\x99\x9c\x4d\x7d\x53\xc0\xa6\x1e\x45\xf6\x9b\xd4\x8e\xc9\x9e\x60\xfa\xca\xd7\xe0\xbc\x6f\xb8\x55\x59\x8d\x1c\xab\x23\xab\xf2\xdd\x85\x7f\x9d\xc9\x40\xf6\xd4\x23\xe3\x62\x17\x7e\xd7\x01\xc7\xb5\x5b\x9d\xbd\x0e\x74\xa0\x0a\x0e\xfd\xcf\xb1\x5d\x07\x6a\xd0\x82\xcc\x9f\x3d\xab\x24\xa4\x2e\xb3\x12\x44\x01\x09\xbc\xb0\x30\xd6\x77\x8c\x09\xe3\x42\x76\x6a\x2a\x07\x6a\x95\x4e\x25\xe3\x63\x34\x3b\xda\xb2\x1b\xc6\xff\xa4\x96\x9b\x05\x3d\x0d\x66\xb1\xc7\x2b\xda\x2d\x45\x67\x65\x6e\xcc\x0d\x1e\x58\x72\xda\xdf\xdf\xc5\x69\x4f\xbe\x1f\xf7\x6f\xe1\xb8\xaf\x88\xd5\xfc\x20\xf6\xc3\x02\xa7\x43\x9f\x2e\x99\x23\x1d\x34\xab\x32\x2f\xac\x12\x77\xc1\x68\x48\x03\x5b\xac\x8a\x14\x91\x3d\x52\xc7\xa0\xd2\x44\x1a\x89\xef\x51\x9e\xc9\x6e\xdf\x2d\xca\x48\xbb\x91\x78\x47\x17\xf5\x72\xfb\x18\xa3\xbc\x74\x35\x0c\x22\x0d\xcf\xd3\x2b\xa7\x70\x97\x69\x99\xb3\x6a\x45\xb5\xae\x5c\xbd\xc6\x68\xb5\x9a\x7e\x1e\xfd\x3b\x98\x8a\x7b\xab\x73\x71\xef\x68\x32\x75\xdb\xd5\x9b\x8e\x4e\x45\x36\xa1\x86\xdd\x94\x22\xc8\x95\x29\xb1\x8a\x77\xb3\x43\x6d\xbb\xd6\xd4\x83\x37\x9d\x9a\x7c\x9f\x3a\x76\xab\xad\x35\x2f\x5e\xf3\x6e\x26\xa6\x37\x29\xbd\x8d\xaa\xe9\xcd\x46\x16\x56\xe8\x86\x53\x29\x3e\x1e\x65\xe6\xe2\xfe\xbd\x93\xd1\x3e\x45\x5a\x50\x54\xee\x18\x71\x10\xfe\x9b\xcf\x91\xce\x68\x4b\x1e\x23\xb6\xa6\x5b\x09\x85\xb6\xd3\xf3\xdc\xbf\x13\xd3\x74\x32\x46\x13\x94\x99\xa5\x8f\xc6\x5f\x4d\xc4\x56\x36\xae\x02\xc9\xa9\xae\xed\x7a\xe6\x86\x34\xb6\x4f\x7f\xaa\x28\x1d\x96\x02\xd8\x85\x17\xe5\xec\xee\xb2\x24\x98\xe4\x43\xc5\x54\x27\xa3\xd4\x89\x86\xba\xb5\x06\xfa\xb8\xac\x31\xdb\x36\x51\x3c\x55\x7e\xdd\x37\x94\xc4\x9e\xeb\x4b\x62\x4f\x23\x7b\x52\x26\x15\x54\x56\x72\x09\x84\x75\x92\xe1\xc1\x02\x16\x0b\xe5\xf3\xf9\x12\xac\xca\xea\xb7\x8a\x80\xf1\x3c\xd2\x56\x7d\x13\xac\x1f\xfc\x22\xd3\x59\x74\x01\x33\x81\x08\xcb\xb4\xcb\xa2\x61\xea\x36\x90\x4a\xec\x8a\x6c\x02\xb2\x92\x13\xde\xc5\x66\x91\x31\x2a\x70\x71\x62\x54\xa8\x5b\xd7\xb5\x79\xd8\xc6\x84\xe8\x50\x1f\x0c\xf3\x47\xe9\x43\x64\xbf\x3b\xd6\xda\xb3\xd4\x3b\x2e\x36\x0d\x86\xe1\xb4\xdc\xe3\x0c\x2f\x0e\xbc\x1d\x9e\x5d\xbf\x0b\x46\x9a\xd1\x8c\x60\x30\xe0\x01\xd0\x0b\x73\x34\x26\x69\x6e\x2b\x78\x0c\xc6\xc0\x8b\xcf\x0d\x60\x92\x66\xfa\x80\xb9\x48\x70\x3c\xaf\x63\x84\x2f\x76\x3e\xeb\xcf\x08\xc1\x91\x9e\xa9\x12\xac\x2e\xe9\x42\xd5\x74\x10\x59\xf0\x5a\xdb\x1c\x7b\x91\x98\x2f\xd0\x7c\x61\x39\xf0\xf5\x15\xc9\x4d\xe4\x0d\x37\xdf\x80\x95\xd9\xbd\xd7\xb1\xe9\x00\x9d\x90\x30\xab\x48\x70\x1b\xa8\xf0\xfa\x78\x46\xb4\xa0\x42\xb8\x51\x85\x2a\xb9\x7c\xe1\x22\x7a\xde\xa3\xee\x22\x2f\xf7\xf5\x40\x17\x6b\x88\x63\x3b\x47\x9a\xf9\x70\xb3\x92\x04\x1f\x91\x3a\x27\x62\xbe\xdc\xce\x6e\xde\xa2\x25\x9d\x60\xad\x9e\xa4\xc1\x38\xea\x8d\xb6\x30\x58\xc7\xcb\x34\x98\x47\xbb\xd3\x12\xba\x56\x3e\x4d\x5d\x2b\x5b\x4e\x4d\x68\xb7\xf1\x91\x3f\x77\x9b\x0d\x47\xf8\xfc\x6d\xe6\xba\xe9\xd4\xdb\x0a\x4b\xbf\xbf\x64\xa1\x25\xbe\x47\x3d\xfc\x1e\xf5\xf0\x7b\xd4\xc3\x2f\x11\xf5\x50\x72\x32\x7f\xfe\x1e\xa6\xe7\x1b\x0b\xd3\xf3\xec\x9b\x09\xd3\xf3\xf3\x3f\x35\x4c\xcf\xcf\xff\x25\x61\x7a\x7e\xdb\xb8\x9a\x45\x0a\x94\x9f\x54\xb1\x7a\xbc\xc1\x20\x88\x46\x4c\xf9\x38\xbd\x82\xaa\x6e\x24\x3b\x95\x29\x53\x96\x99\xfb\x59\x88\xfb\x9e\x30\x7c\x1d\x2c\xe3\x0d\x66\xb5\x44\xfd\xca\x06\x9d\x75\xf0\x7a\x26\xb7\x29\xc9\x9a\x67\x75\xb6\x69\xfc\x20\x88\x91\x2f\xa5\x99\xb3\xe6\xd3\x5a\x82\x0e\x44\xd6\x79\x7f\x44\xa5\xc3\xf6\x15\x24\x1e\x83\x65\x90\x1f\x32\x0f\x65\x81\x68\xb7\xb1\xf8\x4e\x83\x98\x3c\x8b\xcc\x67\x3c\x6c\xcc\x4f\x11\xc5\xa1\x2a\xae\x45\x23\x70\xbb\x60\xa1\xe4\x54\xe9\x2f\x05\xaa\x7e\x4d\x09\xde\xb6\xa9\x49\x7e\xf8\x61\xe5\x7b\x01\x27\xb4\x1a\xbe\x44\x1d\x3b\x0a\xb6\x71\x58\xd7\x74\x56\xd7\x74\x54\x0f\xd6\x6d\x88\x4b\x3b\x22\x6b\x9a\xd3\x6e\x4c\x23\x25\x4d\x0b\x62\x81\x82\x76\x98\x06\xa5\xaf\x75\xda\x5b\x2f\xb6\x20\x90\x31\x73\xe6\x3d\x47\xb6\xf6\x51\x7e\x93\x90\x62\x93\xd8\xad\x2c\xdf\x1c\x16\x4f\x4b\x1c\x0b\x64\xf3\x6c\x7e\x54\xb1\xcd\xfe\x18\xf9\xe7\x48\x21\x9f\xc3\xd1\xfe\xd8\x8b\x46\xa8\x2b\x72\xf6\x2e\x50\x41\x78\xf6\xf1\x2c\x46\x8b\xc0\xa9\x02\x1f\x93\xdf\xb3\x15\xf1\xec\xd0\xfb\x38\xaf\x68\x41\x4d\x3a\xc5\xe3\x18\x4f\x82\x04\xd9\x94\x25\xea\x11\x1b\x99\xad\x56\x93\x91\x65\xc8\xa4\xcc\x31\xfb\xe0\xb4\xaa\x95\xb3\x8a\x4d\xc6\x28\x32\x89\xdd\x0f\xa2\x01\xbd\x51\x9b\xf5\x4e\xa7\x25\xbc\x3c\x85\x4c\x37\x22\xdb\x0f\x92\x0e\xa2\xde\x69\x6d\x0c\xa1\xd3\xa8\x37\xf5\x47\x10\xdd\x60\x04\x1b\xcb\xe4\xb6\xdc\x74\x75\x1a\xd5\x96\x60\x75\x5a\xad\x6a\xa7\xad\x3f\x36\x72\x9b\x63\xcb\x6d\x61\xa3\x95\x7e\x6a\xd6\x1d\xc1\x28\x5d\xb7\xde\xea\xe8\x8f\x32\xbe\x9b\x51\x2e\xd7\xb2\xd3\x16\x8d\xb2\xd3\x72\x3a\x35\xfd\x51\x62\xa2\xa0\x83\xa6\x1e\x33\x99\x92\x1a\x75\xa3\x10\xd1\xbb\x65\x45\x64\x76\x21\x13\x53\xca\x09\x96\xac\x1b\x0d\xfb\x64\x51\x8f\xbf\xdf\xa8\x47\x95\x15\xb2\xa8\x37\x44\xb6\xee\x4d\x65\x66\x2c\xea\x2a\xda\xbe\xab\x02\xf3\x77\x51\x6f\x64\xfb\xde\x94\x16\xee\xa2\xbe\xe2\xed\xfb\x52\x0a\x82\x45\x7d\x1d\xca\xbb\xba\xe7\x9c\x65\x6c\x7d\x2a\xcf\x52\x48\x18\x03\x49\x1e\x85\xdc\xf5\x37\xb6\x7f\xbb\x5f\x31\xf1\xba\xb8\x44\xce\x69\xfb\xc5\x6d\x66\x4a\xa2\x57\xf6\xd3\xd8\x1b\xd1\xd9\x95\x74\x3e\xde\x43\x9b\x2e\x28\xf7\xa3\x6d\xdc\x52\x72\x62\xf5\x79\x69\x17\xca\x12\xce\xb6\x42\x47\xdb\x51\x3a\x64\xf5\xab\xc2\xae\x03\x19\xb4\x65\xe5\x66\xa9\x78\xa4\xbb\x9b\xe8\x42\x4c\x11\xfe\xa5\x8b\x81\xe4\xe6\xa5\x22\xa8\x97\x66\xa5\x2c\x3c\x61\xff\x2e\xd3\x8d\x2f\x3d\xc8\xeb\x42\x14\x01\xf3\xef\x91\x6d\xdd\x7d\x9f\xa9\x81\x48\x08\x05\x17\xf6\x5b\xb5\x71\xbd\xf4\xcd\x23\x5d\x05\x59\x6a\x1a\x7b\xc2\x8d\xd8\x5f\x6a\x68\x9e\x3c\x7e\xdd\x75\xe1\xe9\xb6\xba\xb4\xa9\xfd\xeb\x0c\xc5\xf3\xfd\x30\x40\x11\x39\x8e\xf1\x45\x30\x40\x71\x09\x0d\x68\xc0\xb6\x54\xe6\x1d\xa9\x35\x84\x81\xfd\xe6\xb4\x94\x96\x4c\x92\x6d\x4c\x3b\xcc\xc4\xea\x0c\x16\x48\xe9\x4a\x57\xd7\xb7\x39\x8e\x3c\xc2\x7c\xbd\x89\x1b\x4b\x46\x0a\x58\x2f\x37\x40\x68\xea\x61\xe7\x5d\xfe\x8b\x90\x9c\xa8\x14\x06\xa8\x5d\xad\xac\x57\xf7\x76\xb4\x9a\xdb\x60\x6b\x3d\xd1\xdf\x8c\xf0\x14\xb4\xf5\x96\x5b\x63\xc9\x74\xdb\x6e\x8b\x11\xd5\x29\x0d\x60\x1a\x21\xf6\xbd\x70\x8c\x93\x54\x3b\x9f\xe6\xd2\xa6\xbf\xd2\xd3\x6a\xd3\x27\xcc\x2a\xe5\xf3\x67\x30\x7a\xdd\xae\x73\x56\x5c\x4f\xf6\xcc\x9e\x78\xc4\x1f\x9b\x0f\xff\xd7\x71\x5b\xe6\xe3\xee\xff\xd8\xe6\xe3\xae\xdb\xe8\x55\x77\x1a\x67\x9f\xdd\x5e\x75\xa7\x7e\xd6\xab\xee\x74\xce\x3e\xf7\xaa\xce\xd9\x63\xf6\x91\xfd\x79\x5c\xa9\x7c\xaa\x5d\xdf\x7f\x58\x51\x45\x3f\x09\x89\x5c\xf3\x12\x79\x17\xc1\xc8\x23\x38\xb6\x13\x14\x5f\x04\x3e\x7a\x8b\xe3\x73\x14\xdb\x31\x1a\x05\x09\x25\x88\x50\xca\x59\x68\x89\x48\x90\x8d\xa3\xd9\x74\xe0\x11\x34\xc4\xb3\x68\x50\x4e\xb2\x95\x9a\x2f\x45\x09\xf1\xc2\x30\x88\x46\x0a\x61\x48\xa6\x36\x20\x4c\x2f\x43\x6c\x1c\xb1\x24\x43\x3e\x93\x17\xe8\xf7\x4a\x8b\x91\x76\xc8\x15\xbd\xbb\x40\x78\xbe\x22\xd6\xb0\x6c\x71\x7c\x1c\x91\x18\x87\x21\x8a\xe1\x31\x98\x3e\x8e\x12\x1c\x22\x3b\xc4\x23\xd3\x78\x85\x2e\x81\x3e\x46\x11\x81\x20\x01\xef\xc2\x0b\x42\xaf\x1f\x22\xf0\xa2\x01\x5c\x06\x61\x08\x7d\x04\xb3\x04\x0d\xe0\x72\x8c\x22\xf0\xc2\x10\x88\xd7\x4f\x98\x4a\x85\x8c\x83\x04\xa6\xde\x08\x81\x17\x23\xf0\x43\x9c\xa0\x81\x0d\x27\x08\x41\x96\x29\xd1\x8f\x3d\x3b\x0c\xa2\xf3\x87\xc7\x6f\xf7\x6c\x83\x65\xa4\xfc\xe1\x07\x88\x6c\x1c\xbd\x61\xab\xbe\xfa\xcd\x44\x4c\x87\xb0\x3a\xc0\xfd\xe5\xe0\x7c\xcf\x1f\xa3\x01\xeb\x1a\x0f\x87\x61\x10\xb1\x91\xad\xb6\x7b\x32\xf3\x7d\x94\x24\x6b\x5f\x69\xcb\xdb\x9c\x4c\x21\x37\x6a\x33\x45\xb0\x1e\x80\x65\x53\x61\x69\x78\x4c\x83\xe5\x02\x82\xc1\x2c\x0e\xa2\x11\xa4\x7b\x04\x97\x6c\x93\x80\x43\x70\xea\xab\x61\x58\x20\x32\x15\xdd\x90\xcb\x09\xa8\x93\x21\x85\xcb\x01\xf6\x99\xf8\xd4\x1e\x21\x72\xc8\xe9\x9f\x27\xf3\xe7\x03\xd3\xf0\xa6\x53\x63\x5d\x6c\x37\x34\x2b\x76\x82\xc8\xde\x74\x9a\x56\x35\x87\xa4\x62\xc1\xcc\x9e\x51\x50\xeb\x87\xe8\xbd\x1f\x23\x8f\xa0\xd7\x18\xb3\x47\x36\x4f\xe0\x65\xe6\x2f\x1a\x8e\xc5\x45\xb7\x82\xce\x32\x31\x63\x81\x15\x98\x35\x20\x88\x96\x87\x5d\x79\x2a\x98\x4a\x1b\x5d\xc2\x9b\xd7\x2f\x4c\xc3\xb0\x36\x51\x56\x8c\x86\x15\x1b\xc7\xc1\x28\x88\x98\xac\x79\xbd\x02\x7f\x94\x99\x24\x28\x8e\x71\xfa\xa2\x37\x18\x1c\x5e\xa0\x88\xbc\xa0\x18\x27\x42\x31\x45\xbc\xde\xc0\x58\xb7\x27\x50\x9f\xe3\x4c\xd1\x60\x3c\x4c\x2e\xed\x0f\xc9\x7a\x58\x99\xf5\x32\x63\xa6\x56\xf7\xf2\xab\x29\x43\x91\xeb\x65\x88\x28\xb8\x96\x89\xf7\xe3\x0d\x50\x9c\x14\x3a\x16\xe5\x8b\x71\xc2\x37\x6f\x27\xdd\xbd\x2e\x18\x5c\x31\xa7\x1b\x3b\x58\xe7\xea\xdd\x40\xec\xa4\x54\x74\x57\x26\xc6\xb7\xd3\xd9\xd1\x83\x61\x1a\x29\xe6\xdb\x21\xf3\x29\xda\x38\x16\xb2\x52\xaf\xd6\x73\x98\x77\x96\xd0\x6b\x32\x43\xf0\x31\x45\x3c\x3b\x0e\x4f\x59\x6e\x07\xd1\x00\x5d\x1d\x0d\x4d\xe3\x83\x77\xe1\xa5\xeb\x51\x81\xc7\x8a\x4b\xcc\x1b\xcc\x4b\x5c\x5f\xa2\x82\xec\x59\xb4\xb8\x0c\x37\x97\xac\x54\x5b\xb0\x84\xf9\xc5\x61\x89\x11\x05\x76\xb3\x04\xc1\x56\xa8\x4c\xc8\x55\x84\xee\xe2\xf6\xd7\xd2\x52\x6c\xe2\x62\xed\x09\xae\x5e\x83\x18\x82\x88\xa0\x38\x42\x04\x96\xe2\x3c\x60\x54\x81\x0d\x7b\xd3\x29\xbd\x7f\xe2\x59\x14\x51\xc4\x1d\x44\x8b\xfb\x67\x82\x07\xf4\x02\xd2\x1a\x6b\x01\xe5\x68\x46\x14\xe7\x5b\x25\x81\x43\x6b\xba\x2b\x53\x3d\xa5\xb7\xf6\x25\xea\x83\xc7\x67\xd5\x47\xd9\x65\x84\x06\xfc\x8a\xdd\x19\x06\x71\x42\xa0\x3f\x07\x6f\xed\x92\x2a\x0e\xc0\x97\x6d\x61\x24\xbe\xc0\x0a\x97\x43\x6c\x20\x65\xad\x4e\x61\x7f\x8c\xfc\x73\x3c\x23\x40\xc6\x08\x62\x34\xc5\x5d\x28\xca\xcd\x6c\xac\xb7\xf1\x1b\x8a\x93\xf4\xa6\x35\xaa\xb6\x6b\x3b\x8d\xfc\xe4\xae\x2d\x70\x1b\x9d\x6a\xbd\xbb\x86\x70\x2d\xd8\xc4\x39\xc6\x2c\x41\x90\x90\x38\xf0\xc9\x3a\x16\x27\xf6\xc0\x14\x5b\x9b\xbf\xd3\xca\x6e\x99\x4a\x10\xae\x04\x8b\xb2\x46\x07\xac\x23\x2f\xca\x1d\x34\x5c\x26\x7c\x37\x1b\xad\x9a\xdb\xe2\x9f\xea\xad\x3a\xff\x54\xef\xd4\x6a\x2d\x51\xca\x89\x98\x9b\x2d\xd6\x3b\x75\x61\x0e\x34\xcc\xad\x22\x1b\x8e\xd3\x14\x3d\x0e\x78\x30\xaa\x66\xd5\x11\x1a\x55\xfa\xdc\xe6\xb2\xe5\x76\x84\xe9\x2a\x12\x16\x83\xa9\xd5\x69\xee\xfd\x75\x79\xf4\x34\x79\x2f\x92\xe8\x78\x3c\x4e\x53\xff\xc5\xbb\x8b\xe7\xf5\x2a\xde\x13\xd5\x99\xf1\x3a\x27\xf1\xfe\xe9\xb3\xd6\xfc\x40\x28\x76\x0d\x79\x0c\xaa\xce\x6f\xb3\x9f\x5f\xff\xbe\x37\x79\x21\xcc\x8c\xa1\x36\x01\x9d\xf2\xc9\x36\xda\x9d\x9a\x82\x9b\x19\x7c\x37\x23\xfb\xb6\xcc\xc8\xc6\xdf\x8a\x15\xd9\xe0\x56\x8c\xc8\xe2\xaf\xcd\x86\x6c\xf0\xdf\x61\x42\x76\xc1\xe2\xb0\x0f\x71\x7c\xe9\xc5\x83\xd7\x68\x28\x40\x30\x7d\x1e\xfa\x7d\x69\x2a\x22\xc7\x32\xa3\x02\x33\xf2\x42\x7b\x26\xb2\xf4\xac\x52\x98\x52\x20\x9b\xc8\x43\xa4\xe1\xd4\x1c\xca\x8b\x0b\x62\xd2\x4e\x53\xc9\xe9\xb4\x94\x6e\x08\xa7\xce\x26\xd3\x2c\x4a\xd0\xd4\x2b\xf0\x99\xc9\xc9\x58\x67\x5a\x7a\x1f\xa1\xc1\x3a\xed\x17\x9b\x14\x32\x25\x51\xca\x98\xc7\x0b\x3d\xd3\x16\x44\x94\x19\x60\xf6\xf6\xf1\x76\x7e\xa8\x57\xb0\x0b\x17\x2b\xd4\x7f\xd1\xe5\x81\xec\xd4\x99\x47\xb9\x6d\x83\x20\xa1\xe8\x55\xe6\x67\x47\x2f\xe6\x9c\x35\x16\x63\x63\x64\x49\x51\x66\x69\x88\xbe\x17\xd8\x1b\x04\x91\x2c\x05\xd2\x80\xd5\x3a\x0f\x22\x59\x97\x17\xcb\x2e\x29\xb7\x34\x80\xc7\x60\x4c\xe3\x60\xe2\xc5\x73\x83\x62\x01\xc9\x6b\x57\x1c\x98\xb3\x9d\x95\xd4\x9a\xeb\x80\xfc\x87\x42\x90\x9f\x14\x81\xfc\xe5\x12\xe4\x25\x35\x8e\x52\x6b\x0a\x9c\xa2\xd9\x9e\x91\x6e\x17\x25\x3c\xb3\x5d\xa1\x9f\x17\x0b\x4a\xbf\xd0\x75\xa3\xff\x2e\xe6\xc9\xbe\xa4\xd3\xa1\x9f\xb9\xbf\x9a\x05\x06\x1d\x9c\xc1\x13\xc1\xc7\xc4\x38\x93\xc9\xe5\x8f\xe5\x96\xa8\xb0\x72\x04\xe6\x8a\x83\x92\x5a\x68\x7e\x50\x99\x44\x32\x7f\xc4\x89\xa2\x06\x1b\x68\x17\x2e\x25\x67\x49\xf2\xe6\x3e\xec\x42\x5f\x9f\x2b\x9e\xf1\x73\xf8\xc3\x0f\x40\xe4\x3e\xd7\x15\x0b\x7a\x33\x0b\x88\x74\xd1\xce\xd3\xbd\x0b\xe8\xde\x25\x4a\x54\xd3\xf3\xce\xba\x60\x4c\x82\x28\x98\x78\x21\x97\xcc\x5e\xc8\x66\x08\x57\x0a\x8f\x8f\x3c\x86\x5b\xf8\x05\x8e\xcd\xb1\x2c\xd1\x4b\xde\xcb\x57\x86\x01\xd0\x50\xee\xc6\xba\xf0\x04\xdc\x97\x1d\xe4\x14\x46\xbb\xe0\x8b\xf4\x14\x70\xa4\x4e\x60\x98\x0b\xad\x9e\xc7\xdf\x7a\xd8\x1f\x36\x95\x5d\xfa\xd8\x1f\x96\xb6\xb4\x1a\x3c\xf2\x20\x48\xa6\xa1\x37\xef\x82\x11\x44\x94\xb5\xdf\x19\x86\xe8\x4a\xc7\x71\x0f\x4f\x3d\x9f\x85\x74\x2d\x70\x9e\x53\x45\xd8\x81\x0d\xed\x58\x3a\xcd\x11\xdd\x7b\xba\xba\xc7\x3a\x8e\xb9\xe5\xd6\x26\x9f\xac\x65\x9b\xb1\x0d\xed\x97\x85\xf6\x09\x52\x37\x3e\x28\x31\xcd\x4d\xa9\x77\x65\x95\x55\x6f\xbb\x8d\x66\xe7\xeb\x60\xd5\x05\x29\x1a\x8a\x58\xf5\x25\xd7\x2d\x65\x8c\x31\x0f\x73\x5c\x1f\x0c\x7e\x9e\x38\xbf\x36\x84\x36\x4b\x94\xf5\x36\x9e\xd4\x7f\x7d\x75\xfe\x72\xb6\x53\x15\xf2\xbc\xbe\x16\xc3\x9a\x14\x92\x92\x2c\xee\xbf\x1a\x85\xf9\x3a\xc6\x39\x39\x08\x94\xc5\x0c\x58\x85\xbc\xac\xd5\xb1\xa3\x4d\xf8\xa9\x1c\x9c\xb7\x33\x9b\xd7\x30\x10\x61\x1c\x33\x0b\x7c\x9c\xac\x42\x2a\x73\x37\xbd\x33\x48\x7d\x55\x06\x52\xfb\x42\x6c\x5e\x0a\xd8\x05\x37\xdc\x5d\xcb\xa5\xaa\x1d\x57\x7a\x42\x0a\xe5\x52\x52\xa9\x96\x96\x5c\xca\x3d\x38\xdc\xbf\x8a\x8f\x92\x53\x61\x08\x75\x4f\xeb\x6c\xcd\xbe\x0b\x83\xbe\x2d\x61\x50\xf8\xad\x08\x83\x66\xb7\x22\x0c\x0a\xbe\x36\x61\xd0\xec\xbf\x43\x18\x34\xcc\x24\x3d\xd2\x14\xcc\x59\x05\xb1\xa4\x68\x90\x3d\x96\x26\x68\x1e\xeb\xcb\x92\x2e\x24\x30\x9f\xbb\xde\xbd\xf4\x22\x0e\xa2\xe9\x8c\xb2\x9f\xa1\x06\x7b\x22\x48\x0e\x76\x6d\x01\x12\x98\x34\x48\xc6\xd5\x2f\x24\x4c\x98\x73\xa0\x42\xc0\xb5\xca\x88\xb3\xda\x72\x96\x99\xde\x19\x43\x79\x6e\xc6\x2c\xd0\x3f\x93\x9f\x06\x0a\x0f\x25\x96\x70\x51\xee\xa1\xc4\xe4\x80\x72\xb7\xb1\x3e\xec\xc2\xd4\x8c\x44\x58\x79\xa0\xa5\x08\xec\xdb\x69\xb0\x59\x26\xd9\x61\x58\xfc\x82\xce\x2a\xf7\x60\x57\x44\xff\x28\x42\x6a\xb1\x9c\x37\xb0\x0b\x9a\x46\x30\x19\xb5\x60\x22\x9b\x78\xf1\x08\x11\xbe\x4f\x42\xda\xca\x82\xde\x85\xb0\xcf\x9b\x02\x9f\xda\x9d\x54\x26\x1e\x5c\xfa\x74\x8d\x84\xd0\x4b\x14\x06\x39\x94\x31\x69\xb8\x9d\xc6\x9d\x91\x7b\x6f\x7f\x2f\x43\xac\x4d\xc4\xf4\xde\x71\x99\x36\x04\x42\x9b\x6b\x0b\xee\x7f\x28\xd3\xc6\xd1\x97\x27\x1a\xd5\xca\x4c\x29\x4d\xc9\x89\x46\xa7\xed\xb4\x84\x67\x5b\x83\x68\x2c\x26\x08\xbd\xef\x04\xe1\xb7\x45\x10\xce\xbe\x15\x82\xd0\xfb\x67\x6a\x07\xbd\x7f\x3e\x41\x18\xd8\x4f\x43\xf3\x9e\x23\x42\x68\x21\x4f\xde\xcc\xcc\x31\x99\x65\xac\x50\x33\xc1\xa9\xc9\x09\x9a\x88\xa4\x2a\x0b\x4a\xf2\xa5\xf8\xf9\x40\x4d\x69\x8e\x0b\x29\xcd\x8b\x75\x4a\x53\xa9\xd9\x94\x4e\x62\x54\x44\x12\x5f\xc1\x2e\x84\x26\xcb\xaa\x24\x78\x3a\x57\x3e\xfd\xb0\x7c\x2a\xc7\xcd\x13\xa5\x1b\x54\xdf\xfc\xa0\x4d\xb9\x5e\x16\x52\xae\x79\x17\x1c\xa5\x86\x36\xf5\xbc\x51\x28\xfb\x72\x4a\x35\x02\x8f\xe1\xd3\x35\xc8\x7d\xd6\x7d\x1d\x3d\x99\x07\xbb\x30\x90\x13\xc2\x94\xbe\x1d\xc9\x1f\x87\x79\xba\x7b\xa6\xa0\x93\x29\xd4\x86\x72\x3a\xb9\xcf\x1e\x4b\xe9\xe4\xc9\xba\xe2\x54\xe7\xfe\xf1\x32\x12\x58\x76\xaa\x65\x51\x0e\xf4\x4c\x0e\x05\x1a\x01\xd6\xe4\x44\x4a\x55\x5f\x6a\xab\x7f\xb3\x22\x8d\xb3\x86\x16\x31\xd6\x90\x79\x69\xc1\x44\x65\xde\x9a\x5d\x3d\xa9\x08\xe0\xb8\x62\x4e\xcc\x0a\xed\x59\x19\xe9\x8b\xc5\xed\x58\x30\x11\x94\x18\xf0\x72\x2c\x05\xb1\xa0\x6f\x6e\xd0\xc7\xeb\xeb\xa0\xd0\x9a\x4e\xcb\xee\xe6\xbe\x19\x5b\x70\xa9\xea\x90\x3e\x2f\xe2\x2e\x12\xce\x5d\x5c\xd9\x85\x4e\x69\x29\xef\x20\xc2\x92\xb0\x21\xba\x4e\x9b\x9d\x17\x37\x9b\x6b\xfa\x52\xdb\x5b\x35\x6d\xfe\x83\x5e\xf3\xb9\x2e\x8e\xb4\x55\x3f\x02\xf5\x5f\x56\x4a\xb9\x36\x69\x63\xcd\x23\xb5\x1c\x42\xe7\xce\xcf\x00\x7b\x28\xe6\xa0\x4b\xb6\x06\x39\x9a\xb9\x6f\x5e\x15\xf9\xc0\x61\x56\x6d\x5e\x54\x8d\xc5\x34\xa6\xa0\x5b\x18\xbd\x95\x62\xeb\x99\x39\x93\xb1\xbb\xf9\x92\x85\x02\x57\xa6\xd6\x03\x48\x83\x02\x5b\x10\x68\xc4\x72\xc9\xc1\x19\xb1\x60\xc6\x14\x76\x7e\x19\x43\x5e\xdd\x8d\x3f\x96\xa3\x3d\xfd\xb8\x88\x0b\x82\x9c\x08\x22\x10\xf1\x78\x89\x11\xba\x84\xbd\x38\xf6\xe6\x8c\x46\xa6\xdb\x55\x7d\x04\x18\x7e\x04\xf2\x08\x30\xa5\xd4\xe3\x1e\x3e\xcb\xbf\xdd\xc3\xa2\x40\x32\xb9\x71\x45\x26\x5a\x89\x5c\x18\x6b\xd0\x85\xf2\x75\xd8\x2f\x66\x0e\x85\x6c\xc0\x62\xea\x31\x04\x11\xa8\x83\x5d\x31\xa3\xad\x5e\x2c\x9b\x97\xd4\x22\x8a\xf4\x62\xba\x34\xc7\x26\x66\x43\xec\x82\x81\x19\xfd\xbc\x5a\x8f\xb9\xbb\xf1\x9a\xfb\xbc\xe6\x0d\xb9\xb2\xc5\x47\x0b\xea\x8d\xba\xf3\x75\x28\x7d\x45\x86\x11\x05\x22\x8d\xa5\x74\x42\x6a\x2c\x8d\xb9\xbb\x67\x2a\x60\x00\xe3\x7d\xed\xe5\xc5\x28\x0c\x9e\xbc\x7a\x7f\x20\x0c\x61\x1c\xac\x0a\x1c\xd6\x7b\xf3\x35\x22\xa0\x2d\xe9\x51\x96\x3c\x4b\x41\x88\xe6\x88\xcc\x08\x1e\x43\xcd\xad\x82\xdc\xc6\x84\x53\x99\x3c\xdb\x96\xa4\x4a\xb2\xda\xa6\xbf\x68\x53\x96\xba\xd4\xe3\xd4\x30\xcf\xb6\xa4\xa0\x4c\xf3\x31\xc6\x58\x60\x31\x05\x99\x8a\x6c\x5f\x96\xaf\x7a\xb8\x3a\xbe\x10\x1e\xaf\x25\xf1\x02\xb9\x15\xc5\x94\x37\x2d\xcb\xd1\x3b\x58\x6d\x7a\x4a\x9b\xfe\x17\x42\x88\x36\x39\x95\xbc\x33\xce\x0b\x9f\x55\x66\x49\xf8\xac\x0b\x33\xd9\xe5\xac\x26\x84\x02\x9d\x6c\x8c\x69\x92\x35\xd9\xb6\x66\x19\xd6\xa4\xe2\xd7\x95\xf4\x6a\x74\xc7\x6b\xf2\x5c\x6c\xdb\xa7\x82\x5b\xa5\x95\x82\xcc\x71\x5f\x31\x2f\xd0\x4b\xe8\x96\x55\x7b\x3d\x0b\x51\x17\x0c\x74\x81\x22\x3c\x90\x06\xbc\x80\x4d\x73\xa6\x6c\x91\xa7\x1e\x19\x17\x9b\xec\xb0\x3c\x8a\x2d\xc7\x6e\xb6\x3b\xd0\xa8\xd9\xd5\x46\xc3\xef\xd8\x6e\x6d\xc7\xb1\xeb\xed\x16\xb8\x0d\xbb\xd9\xae\x83\xdb\xb2\xdd\x66\x0d\xea\x8e\x5d\x77\x1c\x68\x34\xed\x66\xb3\x06\x4e\xdb\x6e\xb4\xdc\x9d\xb6\x5d\x75\x5a\xd0\x72\xec\x56\xb5\xbd\xd3\xb2\x5b\x4e\x0b\x3a\x35\xbb\xd5\x6a\x40\x15\xea\x76\xcb\xa9\xef\x38\x0d\xbb\xe9\xb8\x50\x73\xec\x4e\x73\xa7\xd1\xb2\xeb\xd5\x06\x6d\xaa\xe9\x36\x77\xd2\xa6\x6a\x76\xa7\xe3\xda\xd5\x76\x1b\x9c\x9a\x5d\x6d\xd1\xaa\xad\x6a\x03\xdc\x9a\x5d\xab\x76\xa0\x53\xb7\x3b\x4d\x70\xed\x56\xbd\x06\x4e\xd3\xee\xd4\x3b\xd0\xb2\x1b\xb5\x16\xd4\x5b\x76\xbd\xe3\x82\x53\xb7\x6b\x6d\xe8\x38\x76\xb3\xb6\x53\x77\xed\x5a\xad\x03\x4e\xcb\x6e\xd7\xea\x3b\xed\xba\x5d\x6b\x81\xdb\xb4\x5b\x0d\x67\xc7\x71\x9b\x76\xb5\xd3\xc8\xbe\xd6\x1d\xbb\xe5\xd6\xa1\xba\xd3\xae\xd9\xad\x46\x73\xa7\x6d\x77\x9c\x56\x56\x69\x87\x57\xda\x6f\xb8\x76\xa7\x55\x03\xc7\x69\xda\x6e\xbd\x0e\xcd\x86\xdd\xa8\x35\xa1\x51\xb7\xab\x75\x36\xe7\xe5\xaa\x29\xb3\x4b\x42\x2e\x51\x5f\x51\x5e\x8a\xd5\x1c\x7d\x85\x49\x70\x4a\xe5\xea\xcb\x0a\x07\x43\x19\x97\x91\x95\x9c\xae\x63\xac\x22\xd4\xad\x95\xb3\xad\x93\xca\x6f\x39\x86\xa2\xd5\x60\x49\xff\x5c\xa7\x69\x37\x0a\xd3\xf8\xb3\xdc\x7f\x6d\xa7\xb8\x66\x4c\x2b\xd6\x6d\x59\x16\xc0\x2f\x34\x29\xa7\x5a\xff\x9b\x27\x55\x80\xab\xa0\x34\xd0\x96\x84\xc2\x92\x90\x2e\xc0\xb8\xda\x58\x0e\x32\x4c\xe7\xb4\x1a\x76\xa3\xd9\x06\xd7\x69\xdb\xcd\x4e\xdd\xdf\x71\xed\x7a\xa7\x0e\x8e\xdd\x68\xbb\x3b\xf4\x74\xd7\xc1\xb5\xdd\x6a\x6b\xa7\x6d\x37\x28\x8e\xb3\x1b\xd5\xf6\x4e\xcd\xae\xba\x9d\x1d\xbb\xb5\xd3\xa0\x48\x71\xc7\xb5\x1b\x9d\xfa\x4e\xcb\xae\xd6\x1a\x3b\x0d\xdb\x71\x5e\x3a\xf5\x9a\xdd\x69\x3b\x8b\x46\x73\x6d\x42\xae\x4d\xc8\xb5\x09\x35\xbb\x5a\xdb\xb1\x5b\x40\x9b\x6c\xf3\x26\x81\x36\xd9\x64\x4d\x16\xf8\x38\x6f\x69\x21\xa9\xc5\x39\x2f\x3e\x5a\xc0\x32\x11\xdc\x94\x1e\x4e\xa9\x4d\x29\xb1\xda\xe8\x74\x6a\x42\x03\x2b\xae\x4a\x6b\x56\x1b\x0d\x15\x69\xea\x76\x84\x8f\x7d\x39\xe5\x1a\xd9\xef\x16\x72\x29\xad\xc4\x5c\xea\xa4\x5c\xb9\x84\x5c\x58\x9a\x90\x6b\x83\x76\xd7\xe8\x36\xef\x67\xc3\xe2\x84\x16\xd3\xce\x0b\x75\xbc\xd4\x34\x3b\xf3\xee\x60\x2a\x68\x85\x95\x82\x3a\xa1\x57\xc2\x6a\x44\x72\x67\x09\xe6\x52\xc9\xf3\xda\x50\x02\x34\x60\x04\x68\xad\x43\xff\x63\x99\x6e\xfe\x85\x3a\xf4\x3f\x51\x88\x82\x4d\x8b\xcf\xd8\x1e\xa0\xa1\x37\x0b\xe5\x46\xdd\x4b\x9d\xba\xdc\xe8\xb3\x20\xd4\xea\x2c\x4a\xab\x3c\xf7\x71\xd4\x85\x7b\x32\xd2\x5a\xaf\x16\x1e\x0e\x19\x0d\xdf\x95\x32\x07\x38\x4a\x2b\x18\xff\x6a\x75\xdc\x7e\x5d\x68\x01\x98\x36\xf5\x93\x17\x0d\x42\xb4\xa8\x3f\x1c\x0e\xa5\x95\x23\xfd\xba\x63\x56\xf3\x20\xf0\x26\x88\xa0\xb8\x0b\x6e\xbd\x80\xe2\x76\xdb\x32\x97\x15\x8e\xc2\xeb\xb2\x06\x72\x84\x84\x11\x4b\xa3\x23\x46\x52\x93\x9e\x02\x5b\x6d\x96\x10\xe5\xeb\x60\xdb\xb7\xb0\xd5\x5e\x06\x5d\x22\xa6\xeb\xb8\xf5\xce\xf6\xc6\xdc\xcf\x47\x07\xa7\x87\xef\xdf\xf7\x7f\x95\x1a\x73\xbf\x77\x9f\x0f\x8f\x26\x9d\xbf\x7e\x7d\x2f\xbc\x6e\x6f\xcb\x9a\x1b\x4f\x55\x1a\x25\x52\x68\x58\xa5\x85\x5f\x0a\xf1\xd8\x6c\xc1\xd1\xa6\xaa\x49\xbd\xc0\xb3\x90\x93\xbd\x95\x4f\x5c\x97\x29\x48\xf8\xfc\x54\xd7\x74\x65\x11\xcc\x43\x94\x54\x04\x16\xf6\x52\x2a\x77\xa2\x30\x3f\xc5\x4c\x39\xaa\x99\xe4\x11\x72\x32\xbf\x97\x1e\x19\xdb\xc3\x10\xe3\xd8\x74\xaa\x55\x78\x08\x51\x2a\xd5\xd4\x90\xe1\xa6\x29\xe9\xb2\x40\xec\x3b\xe0\xc0\x63\xa0\xad\xec\x2c\x7f\xfc\x37\x10\x78\x00\x04\xba\x80\xe0\x3f\xb0\x43\x6b\xd0\x2f\xfc\xda\x52\x4d\x5e\x3a\xf3\xe1\x8d\x37\xb7\x60\x23\x53\xa4\x16\x9a\x33\x96\x90\xed\xff\x16\x91\xa7\x21\x1a\x92\x2e\xcc\xe0\xdf\x10\x9a\xd5\xf4\x15\xc5\xf6\x2b\x26\x3d\xb3\x20\x2c\x52\x29\xf9\x5a\x91\x02\x4b\x79\x43\xf4\xb4\x9d\x2c\x40\xdf\x1f\x22\xf5\x96\x1a\xca\xa7\xbb\x79\xc6\x8a\xf4\x93\x19\x42\xfc\xf3\xfe\xa7\xe4\x7a\xe7\xfe\xa7\xd4\xe1\xf2\xfa\x4f\x0d\xe5\xc9\x52\xbe\x68\x30\x42\xa4\x8f\xe3\x01\x8a\x77\xe8\xe6\xa9\xe2\x25\x89\x56\x3e\xf3\x97\x2c\x80\xa3\x31\x99\x84\x4f\xe9\x65\x2c\x73\x7e\xcd\x8a\xc6\x66\x65\x45\xdf\x07\x6d\x01\xc5\x51\x21\x48\x42\x29\x8f\xb2\x15\x68\xc9\xcc\x26\x75\x02\x83\x0e\x8a\x57\x02\x96\xd4\x80\x46\x4d\x32\x9f\x32\xc2\xc2\x1b\x04\x58\xc7\xbb\x2e\xd5\x52\xaa\x6f\xa0\x7c\x59\xd2\x8e\x0c\x78\xf4\x5f\x5c\x92\xa5\x02\xba\x20\x5f\x32\xce\x5c\xfb\xf4\x2d\x87\x96\xed\x47\x7a\x08\x8a\xfa\x51\x65\xc8\x13\x1b\xb8\xf1\xf7\xb6\xcc\x81\x2c\x77\x5b\x62\x21\x50\xee\x8c\x68\x7b\x59\x86\x68\x13\x5b\x91\xdf\xbf\x63\x75\x4d\x01\x63\x6c\xfc\xba\xb3\x9f\x1c\x37\xfe\xa8\x3d\x3d\x15\x01\x35\xa7\xf8\x6a\xcf\x5e\xd4\x5e\x4c\x9e\xbe\x78\x7f\x28\xa3\xf8\x8a\xa9\x39\xbf\x90\x9a\x53\xd0\x61\x69\xee\xe7\xf9\xb4\xc0\x77\x6f\x21\x1f\x1f\xbb\x5a\xb7\x95\x0c\x43\x48\x44\xdd\x1a\x71\x1b\x8a\xfd\xf2\x56\x85\x63\x65\x9a\x94\xda\xfa\xdc\x2c\x66\x76\x61\xc8\x6c\xbd\xb1\xe6\xef\x95\xb2\x12\xa0\x66\xb3\xe5\x7e\x25\xac\x95\x00\xb5\xfd\xbd\x46\xde\x52\x6e\x8c\x9f\xbb\x5a\xc3\x75\x5b\xea\x73\xf7\xdd\x4c\xfb\x5b\x32\xd3\x96\xb1\xbd\x5f\x9d\x99\xb6\xff\xcf\x34\xd3\xf6\xff\xf9\x66\xda\x19\xc9\x84\x95\xd6\xd0\x33\xd8\x85\xc0\x3e\x79\xa2\x08\x77\x9d\x6d\x1c\x3d\x0c\x32\x0c\x83\xc5\x69\xd4\xea\xd2\x34\x6a\xf5\x55\x60\xac\x4b\x81\xd1\xd3\x62\xc5\xe9\x18\x02\x45\x60\xe1\xa8\x42\x7f\x49\xad\xb9\x4d\xc3\x1d\x28\xb3\x6c\xfb\xa9\xf1\x15\x32\x83\x42\xca\x39\xe5\x18\xc2\x40\xad\x85\xa7\x65\xe0\x11\xaf\x38\x7f\x7e\x2a\xef\xea\x42\x62\x26\xcc\x86\x6d\x56\x91\xe7\xa4\x05\x4e\x6d\xc8\x1f\x32\xa2\x99\x85\x4b\xb2\x93\x59\x9f\x42\x61\x1f\x95\x0a\xd0\x99\x11\xa5\x36\x0f\x44\xae\x8a\xac\x7a\x5d\xd1\x36\x62\x54\x76\xcb\x0d\x61\x58\x58\x4d\x7b\x80\x12\x12\xe3\xb9\xac\x5b\x61\x08\x6c\x0b\x7a\x4b\x90\xb5\x00\x2b\x72\x66\x5c\x5b\xc0\xee\xd6\x3b\x23\x4b\xf6\xda\x65\xe8\x92\x40\xc8\x3d\x3c\x3f\xbc\x29\xfb\x60\xc1\xc9\x93\x9b\x73\x31\x87\xb3\xbb\x17\x5f\xb7\x9b\xad\x3a\xa7\xa7\x9c\x46\xad\xc3\x3e\x35\x9b\x9d\x0e\x17\x69\xd7\x6a\x1d\x9e\xad\x3c\xff\xd2\x92\xc6\xaa\xd7\x5a\xaa\xe0\x0b\x4e\xa3\x26\x25\xb1\x52\xe9\xdf\x5a\x40\x71\x94\xe0\x59\xec\xa3\xd2\x79\xe2\x5a\xb5\xe6\x22\x81\x58\x2e\x1d\x9b\x5b\xad\xb5\x2c\x70\x6b\x95\x32\x39\x00\x20\x2f\x07\x4e\x75\x57\x65\x6e\x0f\x61\xd0\x73\x5f\x1e\x6e\x8b\x0b\xb1\x52\x45\xba\x4c\x25\x45\xb1\xdd\x29\x8a\x58\x84\x5a\x90\xd9\xa4\x4d\x71\x10\x91\xd7\xde\x20\x98\x25\xc2\xe8\x43\x22\xf9\x50\x22\x1f\x58\x8c\x92\x29\x8e\x92\xe0\x02\x75\xe1\x9e\xac\xcf\x89\x17\x44\xc4\x0b\xa2\xbd\x64\x8a\x7c\xf2\xda\x23\x01\x56\xd4\x66\x81\x62\x94\xa2\xaf\x45\xd8\x25\x69\xc6\x74\xd9\x0a\xa1\x11\x8a\x06\x9a\x6d\xcb\xc6\x07\x6c\x15\x93\x80\xc5\xdc\x07\x83\xe0\xa9\xea\x8a\x61\x32\x9b\xe2\xb8\xe8\x43\x9c\xda\x04\x76\xc1\xf8\x97\xef\xfb\x45\xb7\x56\x1f\x5f\xa5\xd0\xe0\x2a\x42\x48\xc9\x64\xd0\xb2\x95\xc7\x38\x24\xc1\x54\x3d\x5a\x14\xa5\x91\xbd\xa4\xaa\x51\x5a\x26\x78\x80\x58\x58\xac\x81\x3a\x20\x16\x0b\xa0\x9d\x20\x9f\x14\xb4\xc7\x6d\x36\x03\x1c\x1d\xcc\xd2\x6c\x07\xe0\x54\x65\x7a\x05\x99\x96\x13\x5f\xa0\x58\x39\xb7\x74\xd4\x11\xf2\x62\x94\x48\x13\xaf\xad\x8f\xbb\xe4\x30\x12\xdf\x0b\x91\x7a\x8d\xaf\xf6\xae\x68\x0d\x59\xaa\xac\xac\xe4\xce\x41\x01\xb8\x8c\xe2\x60\xf0\x22\x88\x0a\xba\x15\xb4\xab\xae\xac\x88\xc0\x2f\xcc\xa8\x9c\x95\x79\xd9\xf9\xa9\xce\x22\xdc\x60\x7e\x45\xed\x02\x0b\x84\x9e\x1e\xcb\x46\xa3\xd0\x46\x0b\x16\xb8\xfa\xc0\x4b\xc6\x5d\xe8\xd5\x2c\x68\x16\x25\xf7\x65\x43\x8a\xbd\xcb\x27\xec\x45\x8d\x55\x2f\x68\x8f\x04\xfe\xb9\xde\x42\xf8\x8b\x5c\x4d\x08\x76\xff\x93\x8b\x74\xc1\x54\x09\x0f\x13\x28\x52\x26\xa8\xf6\x5f\x9f\x36\x14\xcc\xc7\x53\x64\xea\x1c\xe0\xcb\x48\x39\x3d\x3a\xa5\x11\x33\x50\xcb\x50\x6a\x3c\xea\x7b\xa6\xd3\x6a\x5a\xe0\x56\x3b\x16\x38\x35\xd7\x82\xaa\xdd\xae\xa8\xf6\x93\xef\x63\xae\x85\xd5\x06\x2a\x92\xb5\x91\xed\xce\x6c\xba\xd5\x98\xdb\x8e\x05\xae\x5b\xa5\x14\x8a\xb3\xd5\x98\xf3\x0d\x48\xc7\x2c\xa4\x2c\x25\xa3\xdd\x66\x22\x66\xa7\x6d\x81\xd3\xa9\x5a\x14\x6b\x97\x9c\x41\xab\x6d\x39\xf5\xa6\xd5\xea\x94\x5d\xf1\xed\xe0\xc4\x74\x9a\x6c\xb1\xaa\x16\x34\x9b\x65\x17\xdb\xa1\x33\x6c\x34\x2d\xa8\xd7\xff\xb6\xb5\xf6\xcc\x4e\xdd\x02\xa7\xd5\xa0\xfb\x5e\xa3\x30\x53\x2b\x39\x8d\xfc\xfb\x5f\x66\xd1\x3d\xd3\xa9\x75\x68\x7f\x2d\x0a\x26\x8d\x6d\x06\xbd\xd2\xc0\xdf\xb8\xf8\x6e\xdd\xa5\xab\x57\xb7\xa0\xe9\x6e\x33\x8f\xfc\xfb\x5f\x6a\xf1\x9b\x14\xa5\x35\xea\x16\xb8\xf5\xf6\x36\x63\xce\xbf\x5f\x66\xe9\xcf\x56\x78\xfe\x76\xbb\xd5\xb8\x3b\x9e\xff\x4d\x19\x36\x59\x94\x8c\xfd\x2e\xd9\x64\x5d\x4b\xd1\x4f\x52\xd2\x5d\xf5\x30\xce\x7c\xfe\x36\x1f\x2f\x3a\xc6\x6a\x31\x9e\x44\x94\x58\x95\x8a\x12\xab\xab\xa2\xc4\xea\x19\x74\xc1\x48\x39\x65\x99\x1d\x46\xc6\xac\x73\x07\x4a\x64\xe2\xb2\x2c\xf9\x00\x85\x88\x20\xd6\x80\x05\x51\xda\x8c\x94\x2f\x2f\x93\x93\x8d\x0d\xaf\xa8\x41\x8b\xf5\x5c\x08\x3a\x50\x68\xa1\x34\xe5\x09\x93\xb4\x20\x16\xd2\x1d\x42\x5f\x62\x87\x58\x67\x39\x4b\xe4\x1e\x3a\x63\x41\xb3\xd3\x7f\xb1\x3c\x6e\xb6\x05\x31\xfa\x5a\x67\x14\x0c\xc1\x5c\x9b\xd5\x22\x0e\x02\xfd\xa2\x0a\x68\x30\x8e\xf1\x25\xc4\x74\xfe\x8f\xf9\x3f\x5d\xbe\x1a\x8f\xf9\x3f\x5d\xf5\x9a\xf8\x21\xf2\xe2\xae\x56\xba\x3b\x5a\x10\x3c\xce\x60\x3c\xe2\xad\x73\xa4\xa0\x8f\x71\xd7\x90\x58\xa1\x0c\x2d\x27\x3f\xab\x35\xea\x1b\x09\xf8\xeb\x2d\xfa\x6b\x81\xf5\x2e\x93\xf1\x7d\x1d\x2a\x66\x91\x7a\xbc\x00\xaf\x67\x28\xba\x67\x3c\x31\x2c\x30\x7e\x61\x7f\x5f\xb2\xbf\xcf\xd8\xdf\x53\xf6\xf7\x98\xfd\x3d\x64\x7f\xdf\xb1\xbf\x7f\x3c\x31\xce\xe4\x0a\x1c\x2c\xd9\x6a\x0a\x8b\x08\x7e\x04\x07\xd5\x96\xb1\x38\x28\x37\x06\x4f\x44\x20\x9c\x5d\x0c\xcc\xbc\x73\x12\x44\x66\xce\xce\x93\x7d\x0c\xf1\xc8\xa9\xd2\xbe\x1e\x42\xad\x62\x41\x9c\x33\xe2\x54\x19\x20\xd2\xb3\xf7\x6a\x36\xe9\xa3\xd8\x34\x11\x3c\xe4\xed\x4f\xf1\xa5\xe9\xa0\x1a\xd3\x95\xd9\x04\x1f\xc7\xc8\x0f\x92\x00\x47\x66\xad\x52\x61\x1c\x23\x18\xf0\x00\xe2\x5e\xb4\x86\x03\x57\x45\xfb\x9d\x56\xa7\x5e\xbb\x33\x70\x18\xdd\x54\x1a\x6e\x41\xa9\xe8\x76\x02\x3f\xd9\xbf\xd3\x68\xc1\x24\x66\xb3\xea\xb6\x1b\x05\x64\x08\xeb\xb0\x56\x6d\xba\xaa\x94\xba\xc1\x77\xfb\x85\xaf\xd4\x7e\x61\x7d\xa1\x24\x9a\x83\x2c\x0f\xee\xce\xe9\x7c\x8a\x8c\x2e\x18\x74\x00\x01\xcf\xc9\xf8\xf0\x43\x82\xa3\x35\x52\x7d\x93\x44\x2c\xe1\x11\x90\x20\x3f\x46\x32\x35\x2a\xd1\xa0\x71\x17\x7d\xde\xd8\xda\x22\x3f\xb8\x5b\xb0\xba\xc8\x4a\x66\x7d\x11\xdc\xd8\xfa\x22\x2b\xfa\x56\x18\x59\xf9\x82\xd6\x18\xc1\x8d\xac\x31\xb2\x72\x57\x56\x19\xb9\x05\x51\x08\x21\x0b\x4f\xb9\xec\xd8\xa6\x71\x6a\xe4\x37\x64\x94\x66\xe5\xde\x9b\x91\x31\x8e\x83\x8f\xec\x50\xc1\x2e\xfc\xf9\x04\x79\x31\x8a\xe1\xfe\xa7\xe8\xfa\x4f\x7a\xf4\x37\x0e\xaf\xe4\x84\x79\x5b\xf9\x26\xce\xe2\xb0\x0b\xc8\xee\x7b\x09\x7a\xf3\xfa\x85\xcc\xdd\x2f\x0a\x88\x52\x2c\xb0\xc8\xde\x9b\x14\x85\x09\xe2\xa7\xbc\xbb\x38\xef\x8a\xb5\xbf\x83\x18\x3f\x1a\x91\xf0\x8b\xd6\x22\x2e\x46\x56\xcc\x8f\x4a\x44\x6c\x19\x94\x18\x89\x46\xf9\x68\x35\xcc\x8a\xc3\x30\x96\x09\xb0\xcc\x00\x1e\xec\x82\xf1\x98\xe0\x73\x14\xed\x52\x7a\x08\x45\x3e\x1e\xa0\x37\xaf\x9f\xef\xe3\xc9\x14\x47\x28\x22\x66\x2c\xb4\xc9\xc8\x30\x79\x96\x97\x9a\x28\xc0\xcf\xe0\xb9\x4b\xb9\xf3\xa5\x6f\x4f\x63\x4c\xb0\x8f\x43\x78\x9c\xff\xb2\x0b\xc6\x65\x42\x2b\x75\x37\x7e\xed\x1a\x16\xfc\x79\xff\x93\x59\xb5\xb0\x7d\x94\x54\x4c\x9f\x67\xbc\xbe\xa6\x60\x7b\xff\x53\x70\xfd\xa7\x8a\x82\x63\x94\xc3\x9d\x51\x70\x07\xc9\x4d\x25\x35\x16\x1c\x95\x6a\x63\x0b\xae\x80\x98\x0e\x5d\x05\x05\xf5\x14\x17\xc0\xaa\x7c\x6f\xcb\xc4\xa9\x8a\x85\x71\xaa\xf0\x4a\x9c\xaa\xb8\x62\x31\x98\xae\x3e\x82\x00\x7e\x84\xf8\x11\x04\xf4\xf2\xc4\xbd\x60\x35\x4e\x55\x20\x63\x74\x59\x9c\x3e\xc6\xaa\x9e\x06\x13\x84\x67\xfc\xe6\xa3\xa7\x2d\x41\x24\xfb\x49\xd7\x7c\x29\x8b\x75\xc5\x19\x6e\xb9\x11\x15\xf3\x1c\xba\x49\x20\x2c\x19\x87\xb5\xb0\xdb\x88\xd1\x34\xf4\x7c\x64\x3e\xfc\x9f\x87\xf7\x1f\x5a\x60\xac\x27\x2a\x5e\x33\x94\xae\x36\xee\x2e\x2a\x77\x72\x51\x06\x5e\xdf\x09\x61\xfe\xaa\x94\x41\xd2\xb1\xb0\x8d\x3f\x4a\xf9\x44\x88\x52\xb9\x58\xb0\xf7\x73\x99\x36\xc4\x21\xd2\x7f\x7b\x7d\xf3\x28\xe5\x49\x29\x89\xaf\x28\xc2\xb8\x05\x4f\x4a\xb1\x93\x1f\x84\x6d\x9c\xd4\x6e\x1e\x2d\x7d\xaf\x94\xbb\xcb\x5c\xd8\xc6\xf3\xfa\xcd\x33\xfd\x8c\xc6\x37\x4d\x41\x6d\xc1\x61\xa9\xf5\x78\x23\x6c\xc3\x2b\x15\x3d\xfe\x95\x98\xcd\xbf\x2c\xd3\xc6\x0b\xf1\x3d\x53\x6a\x4d\x4f\x84\x6d\x90\x52\x73\x79\x2d\x6c\xa3\x54\x12\xa7\x3d\x61\x13\x41\x29\x5b\xc4\xe7\x5f\x97\xd8\xa3\x30\x20\x7f\xbb\x5a\xad\xd7\x64\x46\x77\x26\x31\xeb\xd5\x46\xd3\xe1\xa2\x92\x7a\xab\xc9\xc5\x27\x6e\xcd\x71\x6b\xec\x13\xbf\xeb\xd9\x53\x4d\xe1\x4a\xbb\xd5\x6a\xb4\x84\x56\x7e\x2c\xc4\xbf\x1d\x99\xbe\xe8\x21\x8b\xaa\x31\xf7\xfc\x81\x9d\x26\xa2\xb7\x27\xc8\x50\x66\x86\x12\x6e\x14\x89\xe7\x2a\xb9\x0a\xe5\x53\x7e\x3e\x39\x7a\x65\x73\x7a\x36\x18\xce\xe5\x92\x94\x10\xfb\x5e\x78\x42\x70\xec\x8d\x28\xd9\x4c\x9e\x13\x34\x31\x3d\xc9\xd5\x0c\x4c\xa3\xc2\x19\xfc\xcd\x7b\x7a\x7d\x18\xa1\x05\x43\x2b\x4d\x88\xce\x85\x51\x1b\x10\xd3\x71\x9b\x4d\xbe\xc8\x6d\xc7\x71\x1b\xdf\x33\xa6\xaf\x97\x6f\x40\x58\x25\xd9\xb0\xef\x19\xd3\x05\xe5\x7b\xc6\xf4\xbb\xc8\x98\xae\x23\x79\x5c\x0a\x32\xbd\xe9\xd4\x4e\x50\x88\x7c\x82\x06\xfb\xa1\x97\x8c\xf7\x8e\x9f\xef\xe3\x68\x18\x8c\x9e\x47\x03\x74\xa5\xd6\x5d\xf3\xd7\xfd\x95\xd7\x92\x0d\x85\x08\x48\x6c\x38\xfa\x9a\x83\x5d\xe9\x4c\x31\x56\xbd\x5e\x47\xdb\xf4\xba\x36\x45\xbd\x9e\xae\xb6\xe9\x89\x85\xa9\xd2\x6b\x7f\x7e\xa3\xf5\x1b\x7b\x31\x39\x21\xf3\x10\x95\x58\xbb\x0f\xdb\xf4\x18\x7a\x04\x45\xfe\xfc\x14\x25\xe4\x4d\x2c\xf2\x7a\x15\x74\x34\xd9\x6a\x93\x70\x18\x7a\xd3\x24\xe8\x87\xe8\x79\x72\x34\x45\xa2\x8c\x5d\x82\xbe\x2e\xb7\xe9\x6b\x1a\xe3\xab\xf9\x09\x8e\xc9\x13\x21\xfb\xb1\xf9\xdb\xd1\x36\xbd\x8c\x83\x01\x7a\x13\x79\x17\x5e\x10\xd2\x7b\xec\x38\xc6\x57\x01\xd2\x84\xbe\xe3\x6d\x3a\xf4\x66\x04\xef\x87\x38\x41\x47\xe1\x60\x1f\x47\x91\x66\x5f\xfb\xa9\xfb\xca\xd4\x3e\x48\x58\x06\x8b\x66\xb5\xaa\xa0\x5e\xce\xe5\xd4\xcb\x4a\x48\xf2\x68\x21\xdd\xe4\xb1\xc8\x33\x41\x26\x23\x82\x47\x26\x32\x2b\xab\xb2\x1e\xbc\xb8\x30\x83\x82\x0b\x93\xd2\xc1\x58\x2e\x02\xa2\xa4\x91\x9f\x75\x9e\xa6\x09\xf9\xe1\x07\xf0\xd3\x01\xb0\x5f\xe2\x8a\xca\x63\x4a\x97\x2e\x78\x57\xa8\x69\x52\x0b\x78\x49\x4e\xc0\x7b\x23\x19\x5b\x66\x82\xb2\x4c\xe6\x6e\x56\xec\x89\x17\x9f\xe7\x6e\x49\x16\x82\x1f\x17\x5a\xb2\x04\xc5\x81\x67\x68\xe3\x97\x71\xd9\x58\x54\x0c\x38\x1e\x3d\xaa\x40\x72\x19\x70\xca\xdb\x9e\xc6\xe8\x82\x07\x75\x40\x57\x9b\xd2\x29\x51\xf1\xbd\x04\x41\xb5\x5b\x5c\x11\x52\x40\xb8\x77\x6e\x62\xad\xe0\x25\x59\x49\x77\x4c\x1e\xec\x5b\x54\x32\x55\x83\x42\xc7\x90\x2f\x94\x74\x2a\x31\x24\xbe\x3e\xb0\x0b\xb5\x02\xad\x5f\xbe\xf4\x63\xe4\x9d\x6b\x0e\x47\xaf\xda\x12\xd7\xf4\xe3\xd9\x94\x98\x06\xff\xc1\x50\x45\xe5\xca\x0a\xdb\xb7\x9a\xee\xbe\xc9\x7d\xb8\x44\xe5\x66\x3b\x56\xe2\x1d\x6f\x30\x40\x83\x3d\xd2\x85\x03\x8f\x20\x3b\xc2\x97\x2a\x5f\xd6\x7c\xb9\xb6\x20\x36\x0d\x6f\xb0\x46\xf7\x18\x16\x94\x3a\x41\xf9\x22\xa4\x6c\x18\x37\x64\x06\xba\xa3\xa2\x08\x78\x66\x62\xb3\x42\xdb\xd2\xde\xc5\xa6\xc6\x2e\xb2\x8a\x06\x8a\x06\x86\xe6\x96\x2f\x60\x2b\x21\x78\x5a\xb4\xac\x2a\x57\x8e\x8a\x05\x52\x1b\xb6\x8a\xbe\x7b\xb1\x50\x5c\x2e\x1c\x70\x3e\x1b\xc6\x82\x5d\x2b\xa1\x4f\x5c\x9f\xac\xfc\xb6\x79\xf5\xfd\xb6\xf9\xaa\x6f\x1b\xd8\x85\xaf\xf3\xb2\x61\xd8\x27\x46\x13\x7c\x81\xee\x1a\x01\x25\xd3\x30\xf0\x59\xd4\x03\xe7\x6e\xb1\x90\xce\x5d\xf2\x1d\x0b\xdd\x01\x16\x3a\xf9\x8e\x85\xbe\x63\xa1\xed\xb0\x50\x9f\x9e\xf2\x0a\xb3\x3f\x09\x58\x44\x11\xd3\xe0\x02\x8d\xdb\xc6\x4a\x0a\x31\x13\xec\x8a\x38\x3e\xf1\x88\xcb\x22\x26\x50\xab\x33\x44\xe5\x32\x88\x06\xf8\xd2\x0e\x31\xb7\x74\xb4\xb9\x33\x85\x36\x5d\xa9\x50\x62\x88\x0a\x83\xa4\xc6\x77\xcc\x79\xc7\x98\x33\xff\x95\xa2\x97\xc3\x7c\x5c\xa1\x3e\x1e\xcc\xe5\xc2\x95\x03\x31\xbe\xbb\x45\x17\x13\x2f\x3e\x17\xda\x8b\x2d\xe3\xe3\x23\x78\x0c\xe6\x21\xbb\xda\x93\x17\x41\x42\x6c\x4e\x3a\x98\x46\x18\x8c\xc6\xc4\xa8\x58\x90\x7f\xe8\x0d\x06\x26\x7f\x99\x89\xea\x85\x2f\xf2\xc7\x82\xf7\xd2\x16\xb5\x2f\x9f\xd7\x4a\xcf\x0f\xcd\xa8\xbd\x99\x80\x2a\xed\x9d\xcd\xf9\xca\x8c\x28\x6a\x7a\x9c\xad\x43\x37\x7b\x2a\x01\xb8\x03\xa6\x61\x41\xa6\x91\x10\x1c\xa3\x13\x86\xdd\x4f\xc7\x68\x82\xca\x20\xaf\x9c\xcc\x18\x76\xe5\x71\x1b\x19\x1a\x8a\x52\x34\x74\x03\x69\xd5\x0b\xed\x74\x93\xaa\xc3\x13\x99\x86\x37\x9d\x9e\x70\xbc\xbd\x2a\x86\x5e\x9d\xbb\x5a\x29\x13\xa9\xe4\xd9\x4b\x87\x0e\x05\x2e\xa0\xab\x42\x6e\xbe\x2a\x7b\x25\x72\x31\x4a\x23\x98\x01\xd3\x00\xd3\x85\x79\xc3\x82\x5c\xed\x4d\xa7\xa2\xbb\x4c\x8d\x92\x08\x9d\x4a\x0f\x9d\xc1\xae\x3c\x2c\x28\x9b\x75\x7c\xf3\x59\x3f\x97\xda\x84\x09\x27\xae\xa4\xa2\x62\xd3\xe0\xa1\xbd\xf6\xd7\x45\xf8\xab\xb3\x97\x2f\x1d\x6b\x45\xac\x05\xe8\xfd\x79\xff\x13\xba\xee\x32\x13\xe5\xb3\x82\x53\xb2\xbf\xb8\xac\x75\x56\x26\xff\x95\xa2\x84\x53\xb1\xd4\x49\x41\x4b\x88\x23\x17\xad\xb1\x44\xf2\xd0\x21\x4b\xb2\x8b\x2b\x7f\x77\xc1\x0c\x33\x55\x30\xc5\x49\xe6\x50\x11\x8f\x8e\xc2\x1a\xc5\xb8\x9f\x3f\xe7\x73\xeb\x0d\xe1\x71\xf6\xb5\x0b\x43\xfa\xce\x1e\x21\x71\xd0\x9f\x11\x86\x85\x89\xb7\x43\x3b\xdd\x99\xc5\x21\x7d\x77\xf5\xe2\x08\xe1\x31\x84\xb0\x4c\x3f\xe7\xb8\x2d\xbb\x6a\x57\x6d\xa7\xdb\xa9\x76\xa4\x39\xeb\x32\x32\xd0\x90\x55\x58\x08\xcd\x44\x01\x9c\x44\xe1\x46\x56\x35\x4e\xab\xe9\xf0\x46\x09\xf1\x48\xe0\xdb\x3e\x9e\x3c\x1c\xa1\x08\xc5\x1e\x41\xef\xdd\xaa\x30\x7d\x84\x04\xb7\x88\x37\x2d\xcd\x9b\xc3\xb1\xbf\x68\x53\xd7\xe1\xb2\x2b\x76\x61\xce\x69\x96\xba\x60\xbc\xf2\xc8\x2c\xf6\x42\x51\x83\x62\xe5\x90\x24\x3c\xce\x86\x62\x67\x33\xf0\x8a\xc2\x1f\xe6\x8d\x9a\xa6\xd0\x60\xb5\x0a\x88\xda\xac\xa5\x15\xfb\x9b\x51\x66\x7f\xa3\xa2\x9c\x99\x84\x7e\x91\xc8\xbb\x98\x0b\x63\x96\x40\x53\x2f\x4e\x90\xfc\x66\xc8\xd3\xc4\x45\x0d\x96\x21\xf3\x04\xa3\xa3\x93\x1e\x9b\x63\xe6\x80\x71\xca\x28\x57\x85\xdb\x63\x49\x6f\xe2\x75\xce\x20\x41\x5e\xec\xcb\x32\x96\x66\x25\x92\x65\xcc\xcd\x0a\xcb\xa6\x9e\xb9\x06\xdc\x5b\xe6\x52\xa7\x78\xc4\x48\xc9\xbf\xa5\x3f\xb1\xa2\xa1\x15\x55\x5f\xce\x3e\xf9\x7f\xff\xe7\x31\xb7\x4f\x66\xa2\x20\x62\x1a\x3f\x50\xc2\x2f\xe6\x6a\xbe\x18\x7e\x04\xb2\x50\xf3\xc5\x9a\x6e\x51\xcc\x2a\xae\x17\x9f\x65\x2d\xee\x2a\x43\x6f\x66\xc5\xcf\xa7\xe5\x0f\x14\x69\xf9\xf3\x25\x81\x5d\xf0\xe5\x29\xfa\xf3\xc5\x63\x55\x1d\x95\xc3\x35\x2d\x51\x2f\x61\x8e\xf8\x9b\x8e\x15\xde\x8d\x9c\x81\x64\xa0\x6b\xca\xa6\xc9\xf7\x69\xdd\xda\x03\xa9\x78\x65\xd1\xdc\x28\x00\xc9\xc9\x98\xcc\xb8\x6c\xe1\x16\x92\x09\x83\xa4\xf6\x64\xf6\x18\x27\x24\xf2\x26\x88\x1b\x96\x2d\xbf\xee\xe6\x9e\xb1\xc4\x1c\x53\x1c\x93\xb4\x12\xfb\xb8\x9b\xfe\xc6\xcc\xc0\x16\xda\xde\x54\x93\x7d\x94\x54\x68\x63\x31\x1a\xb2\x77\x53\xcd\x2f\x77\x83\xca\xd4\xc0\x8b\xdf\x4b\x99\xf1\xa4\x0c\x02\x73\xbe\x4f\x69\xf7\x1f\x7e\x58\xf0\x12\xf9\x9f\x3f\x7f\x06\x13\x2d\xc8\xfb\xf4\xd7\x8a\x05\x07\xd9\xaf\x14\x63\x48\xc9\x92\x6b\x0b\x98\x45\xe1\x9d\xd9\xf1\x3f\x7b\x5f\xc6\x88\x76\x2a\x58\x23\x0b\xde\x1d\x95\x69\x63\x20\x6c\xe3\xb4\x94\x4d\xb1\x20\xf7\xe7\xb5\x05\x97\xc3\x9b\xfb\x02\x94\xb3\xf5\x16\xd9\x9c\xaf\xed\xe5\x97\x35\x2a\x96\x5a\x0d\xa7\x46\xc5\xcc\xc8\x57\x96\x65\xcb\x8e\xcc\x40\x6a\x00\x6c\x36\xaa\xf5\x8e\xf0\x5d\x8f\x47\x4d\x75\xdc\xb6\x70\x60\x33\xde\x73\x81\x35\x6c\xf8\xdd\x1a\xf6\xdb\xb2\x86\x1d\x7e\x2b\xd6\xb0\xe1\x3f\xd3\x1a\x36\xfc\xef\xb0\x86\x9d\x96\x35\x81\xf3\x53\x1d\xa4\x5f\xc6\xcc\x73\x70\xc3\x5e\x7a\x46\x88\x47\x3b\x21\xba\x40\xa1\x21\xb2\x9c\x95\xe3\x3d\x99\x51\x79\x39\x0d\x58\x94\x27\x73\xfd\x4d\x0d\x58\xa4\x16\x5a\x65\xcd\x60\x4b\x47\x09\xe6\x0b\x94\x60\xc5\xae\xf5\x1b\x4a\xb0\x28\x53\x82\x45\x77\xa4\x04\x5b\x24\x4c\x4c\xfb\xa9\x5a\x69\x57\xb0\x0b\x35\x0b\x12\xfb\x54\x8e\xd3\x37\x3a\xd5\xb5\x5a\xc2\x29\x45\x19\x91\x5c\x6f\x4e\x55\x53\x6f\xc4\xcc\xb5\x6e\xd3\x04\x07\x04\xeb\xd0\xa4\x23\x23\x55\x36\x50\x1e\x50\xac\xca\x28\x0f\x0a\x40\x33\x7b\xdc\xaa\x98\x86\x37\x0d\x52\xc9\x65\x85\x51\xce\xdb\xda\x7a\x39\x65\x8c\xf4\xb0\x8d\xcf\x4b\xa9\xf9\x96\xeb\x5b\xff\x1a\x4c\xe2\x7c\x1c\x25\x38\x44\x76\x88\x47\xa6\x71\x18\xc7\x38\x86\x21\xa2\xa0\x9e\x22\x09\x83\x9e\xcf\x84\x78\x64\x96\x9c\x52\x80\xbf\xab\x35\xaf\x97\x85\x8b\x6c\x15\x9b\x74\x80\x1f\x12\x1c\x09\xc5\x1c\xe2\xce\x74\x81\x30\xc8\x9d\x0b\x92\x2a\x4c\x1e\xa6\x0b\xf3\x2f\xb6\x4c\xfb\x8b\x55\xba\x81\xde\x77\x0d\x2f\x97\xd4\xf3\x52\x2a\x38\xe6\x09\x23\xb2\x86\xc6\xde\x05\x7a\x4a\x87\x87\x06\x7c\x80\x94\x02\xb1\x63\x3a\xb0\x2e\x90\x72\x76\x00\x2b\x43\x5d\x5f\x03\x8a\xb1\x7f\x5a\xef\xec\x26\x8b\xb1\xba\x20\x9b\xf3\xd8\x95\xc6\x01\x97\xac\x8f\xf6\x42\xea\x02\x8f\xab\x83\x1d\xb6\x55\x42\x47\x37\x55\x42\x43\x66\x67\xae\x10\xd0\x54\x18\xc1\x44\x09\x55\x0b\x7a\xea\xa6\x7a\x55\x0b\x9a\x8a\x54\x87\x0a\x92\x52\x5b\xdf\x8d\x34\xf5\xdd\xd1\x17\xb4\x14\xba\x28\xa1\x59\x2b\x64\x09\x54\x34\x0e\x29\x52\x2d\xc9\xa9\x97\x62\xe2\x63\x83\x7a\x21\xd9\x6d\x4a\xee\x88\x7a\x49\xec\xcb\x94\xed\x2b\x17\x51\x74\xbd\xdc\x73\xd2\x0c\xa1\xf8\x9c\xf9\x3f\x6c\x5e\x52\x5c\x6d\x97\xbb\xa5\x50\xfe\x96\xd2\x3d\xf5\x37\xc0\x54\x3c\x24\xa5\xd6\xc8\x36\x85\x65\xf2\x11\x6d\xae\x5c\xa9\x51\xc5\x26\xa5\xcd\xcb\xd8\x2f\xc6\x29\x4e\x4f\x6f\xb2\xa3\x29\x09\x26\x41\x42\x02\xff\x4d\xaa\x18\xbd\x93\x0b\x6e\x68\x0e\x99\xea\x61\xe3\x99\x24\x1c\x89\x64\xf8\xda\x48\xfb\x0e\x71\x36\xb9\x0d\xc3\x21\x79\xe6\xf2\x12\x88\x54\x07\x93\x90\x2f\x61\x35\xd4\x17\xeb\xa3\xfd\x4c\xad\x2c\x19\xe6\x14\xc7\xa4\x0b\xad\x76\x47\x96\x2f\xc2\x48\xb0\x7f\x9e\xec\xd0\x7a\x06\xab\x28\x4b\xc8\x61\xc4\x68\x10\xc4\x59\x45\x69\x73\x5e\x18\xe2\xcb\x9d\xd0\x8b\x0c\x45\x72\x8f\x34\x5b\xc9\xeb\x59\x28\x4d\x72\x96\x63\xa4\x59\x36\x96\x21\x16\x44\xe7\x16\xb1\xf0\x1b\x04\x8e\x40\x3b\xba\xfc\x7a\x6d\x41\xbd\xd3\x70\xef\x2e\x26\xd4\xeb\x52\xf1\x71\xc4\xc9\xb6\x7e\x2f\x15\x13\x4a\x9c\x6c\x6b\xaf\x54\x5c\x1a\x71\x78\xd1\xd3\x9f\x6e\x1a\x5f\xb4\xac\x5c\x7d\xab\xc4\xaa\x4b\x69\x7a\xdb\x6d\xb5\x36\x62\x33\x2c\x65\xe8\x2e\x2d\x32\x19\x7a\x29\x31\x50\x88\x47\x09\xfb\xa3\x07\xa3\xc1\x56\xed\x13\x2f\xd0\x74\xb9\xf5\xb7\x6a\x9f\xeb\x94\xe9\x65\xaf\xd7\x4b\xb2\x48\x74\x76\xec\x54\x4c\x6c\x41\x60\x81\xbf\x7a\xa9\x29\xac\x8a\x60\x3d\x18\x58\xef\x2c\x0d\xff\xf5\x08\x30\xfc\x87\x69\x88\xf1\xce\x4e\x05\x62\xee\xc7\x84\x7a\xf8\x4c\x86\xb7\x83\x21\x98\xb5\x6a\x35\x25\x70\xb8\x6c\x59\x71\x79\x2c\xba\xa5\xfb\xe0\x76\x3a\x8f\x20\x80\xff\xd0\x7e\x83\x95\xfe\x02\x69\x7f\x99\xf2\xcf\x48\xfd\x49\x1f\x43\x0c\x5d\xa1\xd4\x5f\x33\x11\xdb\xd4\x9b\x87\xd8\x1b\xd8\x04\xbf\xc0\x97\x28\xde\xf7\x12\x64\x56\x6c\x96\x83\xea\x68\x48\xc9\x52\xba\x1e\x65\x24\xad\xaa\xe8\xb8\x05\xf1\x1a\x75\x84\x79\x91\x49\xf1\x73\xc2\xe9\x99\x93\x05\xdc\x94\x33\xf9\x5b\x03\x3a\x9e\xae\x3b\xbf\x00\xdb\x8b\x96\x95\x81\x18\x6f\xc1\xec\x71\x89\x43\x8a\xf2\x7e\x62\x33\x56\x55\x61\x92\x09\x75\x15\x0f\x76\x21\xa1\x00\xe0\x76\x3a\xf0\x98\xd9\x72\x25\xf0\x00\x1c\x09\x6c\xfa\x3d\x8f\x99\x18\x58\xd9\x26\xed\x4d\xa7\x28\x1a\xbc\xc0\xa5\x84\x08\x39\x94\x03\xbb\xa2\xeb\x00\xf4\x77\x22\xff\x95\x45\xcf\x91\x99\xd6\x65\x90\x20\xb1\x1f\xa3\x23\xea\x52\x34\xb1\xf9\x88\x8e\xb3\x0b\x3b\xca\x7b\x9e\x69\x1e\xb7\xb8\xe7\x25\x80\x14\xdf\xc6\x29\xfa\x13\x4f\x51\xf4\x12\x0f\xbc\xb0\x7b\xff\x13\xba\xfe\xb3\xd4\xf9\x99\xd0\xf7\x12\x6e\x22\x2a\x4d\xe5\x76\xa3\xc3\x52\x10\x88\x50\x73\x8e\x7e\x88\x13\x74\x2b\x93\x94\x25\x4d\x2c\x0f\x87\x72\x82\x6d\xdc\xba\x79\x10\xcf\x97\xf1\x4d\x83\x78\x96\x25\x94\x34\xe2\x16\x88\xe8\x20\x89\x6f\xf5\x42\x04\x5d\x44\x3b\xb7\x1c\xd7\xb9\xbb\x1c\xfc\x27\xa5\xe2\x31\x8a\xe3\xdc\xbd\x2a\x15\x2b\x2f\x16\x86\x6b\x81\xd7\xf3\x32\x8d\x3c\x11\xb6\x91\x94\x32\x6c\x11\x45\xa9\xb3\x60\x1e\xdc\x3c\x5a\xde\x71\x29\x43\x9f\x53\x61\x1b\xde\xcd\xe3\x20\x1e\x94\xca\x55\x70\x5f\xd8\xc6\xf3\xbd\x32\x6d\xfc\x75\x0b\xc7\xec\x40\x0c\x1e\xa5\xe2\x97\x62\x31\x8c\xdd\x2f\x35\x10\x24\x6e\x64\x5c\x2a\x72\xe8\x1f\xc2\x36\xce\x5f\x94\x69\xe3\xa5\x98\xdb\x2c\xb5\x22\x4f\xb7\xe1\xf2\x72\xd6\x53\x6b\x36\x53\xec\x53\xab\x5a\xe7\x91\x0d\x3b\x4e\xb5\xd6\x4e\xe3\x1e\xb6\x9d\xbf\x27\x4c\xa3\xc2\xe0\xaa\x30\xa8\xa2\xa9\x97\x9e\x8b\x85\x7d\x74\xdc\x7a\x67\xcd\xa0\x8c\xb3\xc0\xec\x69\xab\xca\x7f\x72\xdb\xd5\xba\x30\xc0\x23\xb7\xd0\xea\xb4\x5a\x8d\xaa\xe8\x71\x98\x3e\xee\xd4\x6b\x0a\xee\x62\xf8\xdd\x80\xeb\xdb\x32\xe0\x9a\x7e\x2b\x06\x5c\xc3\x7f\xa6\x01\xd7\xf0\xbf\xc3\x80\x6b\x00\xbb\x60\x3c\x9c\x72\xcf\x16\x05\x5f\x55\x60\x08\x75\xa1\x25\x6c\x57\xa9\x21\x55\xad\x9b\x17\x85\x21\x04\x0a\x3c\x49\x2d\x88\x2d\x95\xfd\xd4\xd6\x01\x04\x6e\x1c\x3c\x40\x5b\xeb\x98\x21\x90\x74\x29\x42\x7b\x54\x31\xa3\xd4\x6d\x83\xd8\xb3\x38\xe4\x72\x3a\x62\x07\x51\x40\xac\x5c\x3c\x2a\x8b\xdb\xb9\x98\x31\x3c\x80\x81\x05\xb8\x48\x97\xa4\x6d\x50\x95\x31\x39\x69\xb0\x88\x28\xdf\x6b\x93\x6e\x96\x96\xb1\x8a\xb6\xb1\x94\x2c\xb4\x95\x95\xf6\xae\xd5\x51\xab\xa0\xa3\x52\xba\x31\x6d\x87\x7a\x59\x42\x3d\x89\x23\x3d\xbd\x68\x2a\x37\x3c\x51\x7d\x1d\xe7\xd1\xd1\x0d\x3b\x19\xa9\x8f\xed\xa8\xf8\xd8\x5a\xa0\x34\x7d\xcc\xcc\x1e\x99\x08\xdb\xb3\x60\xf6\xcd\x9f\x5f\xac\x1f\x37\x2d\xf2\x26\xa8\x2b\x92\x65\xac\x97\x6b\x1e\xa3\x71\x05\x2d\x50\x02\x37\xe0\x68\xc1\x63\x1f\x39\x5a\xa0\xc4\xe4\x9f\xf7\x3f\xf9\xd7\x19\xce\x7f\x78\xff\x13\xb9\xfe\x33\x77\x72\x1b\x19\xbe\x98\x59\x30\x35\xa7\x4c\x79\xed\x55\x2c\xf8\x24\x4f\x6c\xbc\x5e\x26\x88\x8c\xf1\xa0\x0b\xc6\xf1\x9b\x53\x9d\x0c\xf7\xc0\x92\x00\x0f\xe6\xdd\xf5\x28\xe2\xb2\x5c\x1e\x2b\x93\x2f\x54\x8e\x6b\x47\xd4\xb8\x15\x0c\x53\x84\xca\xfe\x31\x18\xe6\xaa\xd0\x74\x68\x7e\xc3\x1e\xe6\x6a\xf4\x32\xd7\x42\x2f\x6a\xae\xc4\x5a\x45\x2f\x16\x0c\xf3\x11\x3c\xbe\x79\x6c\xc3\x72\x41\x2f\xe3\x90\xb8\x6b\xee\xe4\xc3\x9e\x4b\x49\x7e\xf6\x8f\xae\x13\x37\x4f\x0b\x99\x47\x35\x14\xf7\x60\x8e\x6a\x98\x6e\x25\x45\x35\x14\xed\xfc\x49\x78\x36\x9f\xdd\x46\xb5\x5a\xfd\x61\x16\x87\xbb\xf7\x3f\xc5\x14\xdd\xa4\x78\x28\xc8\xe3\x21\x81\xff\x25\xa9\x5c\x3f\x1c\xa0\xd0\x9b\x3f\xbe\xff\xc9\x5b\x41\x53\xcd\x1c\x9a\x12\xe6\x55\xdb\x58\xb6\xef\x34\xc6\xea\xef\x37\xc7\x00\x1f\xd4\x4c\xc1\xe4\x86\xcd\x4f\xd4\xc7\x7f\xf2\x9d\x29\xb8\x1d\xa6\x80\xf1\x7f\x17\xc1\x00\xc5\xc9\x82\x13\xbc\x4d\x3e\x21\x18\x82\x59\xaf\xd6\x79\xf4\x8c\x25\xb7\x50\x49\xed\x18\xb5\x4d\xec\x96\x67\xbf\x8c\xbf\x86\x06\x05\x71\x13\xbc\xa0\x39\xf6\xc5\x0a\x77\xb5\x82\x80\x6d\x48\x56\xd7\x4b\x79\x8c\x96\xae\x5d\xbb\x1c\x63\xd6\xfe\x52\x48\xb3\xf3\xdf\x82\x34\x2f\x0b\xc9\xa6\xa3\x1b\xf6\x70\xa4\xc6\x9b\x47\xb7\x49\x36\x7d\xf3\xa8\x33\x5e\x47\x9d\x98\x09\x9a\x19\xea\x0c\xd8\x47\x8e\x3a\x29\x65\x93\xb1\x43\xc1\x0d\xd8\x21\x9d\xb3\x9f\x43\xd4\xf5\x0c\x51\x63\x31\xa2\x7e\x68\xc0\x03\x7a\x93\xe9\x91\x40\x3a\xbe\x47\xb7\x72\x9a\x8b\xb8\xad\x7f\xcc\x69\x3e\x2e\x3c\xcd\xfb\x37\xec\x61\x5f\x7d\x9a\xf7\xbf\x9f\x66\xf8\x7b\x4e\xf3\xb3\xc3\x3b\x3a\xcd\xec\xd9\x18\x79\x21\x19\xfb\x63\xe4\x9f\x1b\xdf\x8f\x37\x2b\x77\x79\xbc\xf3\x5f\xe9\x99\x38\x67\x5a\xd5\x66\xb5\xa1\x8a\x8a\xf1\xae\x7c\x4a\x5e\x16\xdb\x69\x16\x71\xc5\xd0\x20\x9f\xf9\x99\xeb\x41\xe1\xf3\xe7\x2c\xb8\x1c\xa0\x1e\xff\xcd\x0e\x08\xe5\xbf\x71\x7c\x26\x3d\x2f\xb4\x59\x96\x9c\xd7\x0e\x12\x9e\xa4\x17\xb1\xb0\x73\xe6\x5a\xa2\x7c\x55\xc8\x4d\x28\x13\xeb\x6b\x25\x46\xd5\x72\x12\xcb\xb8\x54\xaf\x78\x67\x8a\x26\xd6\xf4\xce\x2c\x9f\x34\x6d\xc6\x26\xf8\x84\x35\x6c\xfb\x5e\x18\x9a\xa8\x62\x27\x2c\x5e\x79\xdb\x82\x1d\x47\xd5\xa0\xc1\x5b\x32\x96\xe9\x64\x98\xd3\x4d\x42\xe2\x99\x4f\x30\xcf\xa6\x9d\x46\x58\x5a\xfe\x6a\xb3\xd8\x45\x45\x33\x7d\xe9\x4d\xb3\x66\x3f\x7f\x06\xe3\x04\x65\xbd\x2c\xe6\xcb\x57\x7f\x18\xe3\x89\xda\x6d\x9d\x35\xb7\x97\x01\x62\xae\xd1\x87\xff\x6b\x3e\xee\xbe\x09\x3e\x3f\xaf\x44\xc4\x7c\xdc\x6d\x7f\x76\x9a\x9f\x6b\x6e\xc5\x7c\xdc\xdd\x0f\xbd\xc9\x14\x0d\x2a\x8f\x59\x1f\xf7\x1f\xda\x04\x25\x4c\x2f\xb9\xb6\xd6\x92\xe3\x61\x22\x1e\x82\x90\xe9\xd1\x79\x20\xa4\x88\x05\xee\x5c\xd9\xb8\xcc\x3e\x5b\x05\x1d\x3c\x38\x13\x8b\x83\x5a\xb4\xb1\x2c\x98\x58\x81\xe8\x17\xaf\x07\x5c\x53\x05\x45\x4b\xa7\x5a\x80\xa4\x93\x2e\xe0\xa2\xf0\x6b\x5a\x36\x30\x82\xae\x63\xf8\xcf\xd2\x8e\x1d\x1e\xeb\xde\x17\x03\x1c\xa1\xae\x96\x33\xef\x35\x28\x93\xea\x0b\x1a\x95\x79\xf2\xac\x97\x0b\x2f\x9c\xa1\x2e\xa0\x5e\xfc\xe0\x81\xc2\xc9\x75\x31\x10\x75\x95\x6b\x0b\x50\x57\xdb\x1d\x2b\x2b\xdc\x8d\xb0\xc0\x3d\xf0\xda\x82\x61\x57\x64\x7a\x59\x30\x34\xc9\xcf\xbc\xcf\x08\x5d\xc2\xe9\x7c\x8a\x98\xd7\xa2\x69\x3c\x8f\x2e\xbc\x30\x18\x80\x47\x08\x9a\x4c\x09\x10\x0c\x1c\xc1\x22\x88\x70\xb4\xc3\x3e\xf7\x43\x04\x41\x94\x10\x2f\xf2\x91\xfd\x3f\xd1\xf3\x08\x70\x3c\x40\x31\xad\xdb\x47\x90\x55\xb1\xd8\x0b\x1e\x3d\x95\x80\x19\xee\x49\x60\x32\x4b\x08\xf3\x76\x02\x0f\x36\xf0\xb7\x59\x49\xc9\x07\x7b\x3d\x37\xb8\x64\x12\xcc\x1a\x94\x93\x2b\xf7\x64\xc7\x29\x61\x36\xb8\xf2\x30\xfd\x92\xbd\xd1\xf3\x5e\x82\x2c\x2a\x9d\x60\x2e\x92\xad\xb0\x4a\x1c\xb1\x2c\x90\x22\x77\xd3\x55\x8a\x24\x32\x5f\x2c\x86\xc0\x29\xfc\x4b\x7d\x4d\xcb\xc1\x67\xc2\xd7\x96\xab\xb1\xa5\x0d\xea\xc5\x2e\x03\xbd\xe0\xf2\x7e\xfe\x96\x27\x76\x3a\xb3\xcf\x9f\x17\x9f\x95\x54\x10\x0c\x83\xc8\x0b\xc3\xc2\x5e\xe8\x4d\x93\x54\xd2\x33\xa0\x88\xb3\xa0\x7f\xa4\xb4\x2d\xd4\x5f\xc9\x29\x0d\x33\x9b\x77\xc4\xef\xa4\xff\xe4\xae\x1e\x7a\xbb\xf0\xf4\x14\xe9\x2f\x02\x70\x58\x89\x69\x59\xb5\x16\x91\x0c\x39\xd5\x13\x55\x1e\x01\x81\x1f\x21\x7a\x04\xe4\xc1\x83\x0a\xc4\x3d\xc2\xdc\x2e\x7a\x44\x14\x27\x51\x6c\x2d\xae\x4c\xab\xf1\xdd\x88\xee\x5b\x32\xa2\x3b\xfc\x56\x8c\xe8\x4e\xfe\x99\x46\x74\x27\xff\x1d\x46\x74\x07\x72\x9b\x8e\x69\x16\x33\x5a\x18\x89\x9a\x16\xa6\xde\x54\x3c\x1f\xc5\x78\x36\x7d\xe5\x4d\x90\xcc\xcb\x8a\x96\x64\x8c\x2f\x99\x2f\x0f\x8b\x40\x7d\x1c\xa3\x0b\x49\x08\x6a\x90\x78\x8d\xbe\xd6\x0b\x7e\x9c\x45\x28\x99\x85\x9a\x3e\xaf\x2f\x60\x17\x7a\xc6\x41\x10\x53\xc6\xcc\x02\xe3\xa9\x17\x86\x7d\x8f\xc9\x34\x8c\xd7\xe8\x43\xfa\x2b\xcf\x54\x80\x63\xfa\xf9\xcd\xeb\x17\xa7\x28\x61\x3f\xbf\xc0\xde\xe0\x89\x17\x52\x22\x8c\x3d\x89\xce\x23\x7c\x19\x19\xa2\x45\xd8\x2b\xeb\x5b\x9b\x6e\x4c\xf6\xaf\xde\x6c\x9e\x6f\xdb\x0b\xdb\x64\xbd\x3e\x4e\xb7\xed\x63\x09\x28\x7a\x1d\xbd\xb9\xc9\x92\xcd\x8f\x33\xd9\x15\xbd\xc6\x7b\x9a\xf9\xa8\xdf\x6f\xbd\x7e\x5e\x34\xe2\x01\xd8\xe7\x25\x66\x78\x7f\xdb\xee\x24\xc7\x49\xd0\xab\x5c\x38\xf4\xe4\x56\x43\x07\xca\xc4\xbb\x9a\xa1\x03\xf3\x16\x2e\xa1\x05\x43\x0b\xa6\x16\x0c\x2c\xb8\xb0\xa0\x6f\xc1\xc8\x82\x2b\x0b\xe6\x16\x4c\x2c\xb8\xb4\xe0\xc8\x82\x63\x0b\xf6\x2d\x38\xb7\xe0\x95\x05\x27\x16\x1c\x58\xf0\x7a\xbb\xf4\x5b\x5f\x75\xe4\xc1\x54\x2a\xeb\x5a\x70\x1c\xe3\x49\x90\x20\xdb\x0b\x43\xb3\x37\x36\x51\xc5\x62\xc6\x0d\x52\x57\xf3\x8d\xbe\x75\xe2\xae\x2c\x66\x9b\x8f\xb6\x26\x08\x81\x9e\x86\x2d\xaf\x9e\x71\x33\x19\xbf\xe7\x9c\x59\xdc\xcd\x03\x99\x33\x7b\x21\x34\xae\x70\x63\xa5\x70\xf9\x8b\xc5\xe2\x71\x86\x19\x18\x5b\xcc\xba\xfb\xd0\x3c\x64\x62\xee\x29\x6d\x38\x7b\x54\xb1\x58\x22\xfb\x08\x99\x83\x8a\xc5\xa2\x98\x2c\xc6\x70\xc1\xc7\x30\x82\x5d\xe8\xb3\x31\x5c\xb1\x4f\x74\x0c\x73\xd8\x85\xe7\x66\xcc\x92\x42\x4f\x58\xd3\xb4\xe1\x79\xc5\x62\x19\xbe\xab\x8f\xe0\x12\x7e\x84\xab\x05\xfd\x74\x49\xe9\xa7\x23\xd8\x85\xab\xde\xe5\x99\xc5\xd2\x65\x0f\x7a\x47\x67\x14\x61\x68\x8a\x39\x80\x25\x61\x48\x08\x8e\xe7\x5d\x21\x92\x11\x95\x6b\x8b\x65\xcb\x3e\xb6\xd3\x37\x2d\x30\xcf\x61\x17\xf6\x7b\xfb\x99\xec\x66\x07\x9c\xb3\x8a\x44\x10\x76\xce\x71\x35\x23\x97\x27\x74\xb4\xa5\xd2\xdc\xf2\xf6\xba\x59\x2b\x9a\x03\xd6\xcd\x5b\xf6\x2a\x8d\xc7\x70\x02\xbb\xf0\xce\xbc\xba\xa3\x74\x67\x0c\x44\x4f\xec\xc4\xac\x3c\x82\x7b\x26\xa5\x6d\x4e\xec\xc8\xac\x54\x18\xd3\xfd\xa8\xc2\x48\x85\x03\x9b\x89\x94\x2c\x98\xf6\x5e\xb3\x0d\x7d\xc5\xc3\x33\xbc\xde\x26\x29\x9a\xfe\xd0\x4e\x6c\x79\x4e\x89\xcd\x2e\x34\xf9\xe4\xd5\x0e\x86\xda\x79\xdd\x34\x17\x3f\x8b\x24\x98\x9e\x3c\x1e\x4d\xf1\x78\x61\x66\x73\x83\x60\x53\x6b\x24\x0c\x3d\x5e\x96\x90\x1e\x80\x5d\x8a\xe2\xd7\xa8\x11\xd8\xa5\xe8\x5e\x7a\xab\xef\xd2\x4b\x42\x7e\x01\xc3\x2e\xbc\xd2\x85\xee\xdb\x0d\x57\xf9\xb7\x45\x1c\xbc\x56\x44\xec\xfa\xd6\xc3\x00\xbe\xbc\xed\x30\x80\x32\x7a\x45\x33\x0c\xa0\x88\x94\xf8\x1a\xc3\x00\x2e\x62\x8d\x2d\x83\x18\x93\x9c\x8d\xdd\x65\xa1\x12\x6c\xa5\x57\xdd\x28\xc6\x8b\x2e\x5a\x77\x11\xb8\x58\xc7\x52\x9e\x8f\x22\x9d\x74\x83\x4e\x9a\x45\x2c\x26\x8b\x88\xc5\xba\x9d\x15\xd9\xca\x66\x25\x36\x29\x3d\xad\xdd\xac\x8e\xd9\xda\xdf\x1b\x06\xaf\x44\x5c\xd2\xc6\x5d\xc7\x25\xfd\xdb\xc2\xe9\x49\xb0\xd1\xd3\xaf\x05\x1b\x31\xf7\xa3\xed\x18\x9f\xaf\x11\x5b\x61\x46\xa5\xeb\x5e\xc6\x25\x62\x83\xdf\x33\x31\xfc\x08\x51\x26\xb6\x2f\x45\xc7\x2c\x90\x99\xe3\x7e\x0d\x61\xc2\x17\x9b\xe0\xe6\x50\x79\x23\x43\xe5\x8a\x68\x67\xf9\x52\x12\x8f\xa6\xbd\x74\xee\x02\x9b\xeb\x22\xd8\xc5\xbc\x5b\x1b\xd8\x7c\x23\x56\x9f\xb4\xb3\x22\x23\xde\xac\xe0\x07\x0f\x72\xab\x2b\x8b\x99\xb5\x5e\x4a\xcd\xdb\xd1\xe5\xc8\x4b\xde\x2c\xce\x5d\x26\xb5\xff\xb2\x57\x8b\x6b\x41\xeb\xbf\xed\x6a\xf9\x58\x78\xb5\xbc\xbd\xa1\xbd\xe6\x5b\xb5\xbd\xe6\xdb\x9b\xd9\x6b\x7e\x3b\xa6\x98\x28\x47\x13\xe7\xfd\x4e\x8e\xf9\x04\x6f\xcb\xb9\x04\x95\xa1\x85\x75\x30\x88\x36\xee\x46\x39\xfa\x17\x71\x8c\x89\x74\xe9\xdf\xaf\xd4\x4f\x4c\x03\x73\xa8\x08\x52\x11\xc6\xb8\x0d\x23\xeb\xbf\xbe\x16\x7a\xf0\x1b\xa3\xf7\x16\xf8\x75\x29\xe8\xfe\x58\x8e\x23\xd5\xbe\x44\xd7\x7a\xaa\x5b\x65\xef\x55\x1d\xdb\xe5\xef\x81\xcb\xb5\x46\x5d\xe2\x3a\xfc\x59\x7d\x59\xfd\x7c\xeb\x01\x1c\x52\xe5\xd3\x37\xef\x68\x80\x72\x67\x6a\x66\xdf\xff\xc5\x2c\x3c\x53\xda\xe7\x29\x5b\x7c\x9c\xf3\x94\xc4\xe7\xf0\xf9\xf3\x6a\x0e\x86\x59\xc4\xac\x14\x09\x4e\xd3\x18\x79\x61\x48\x2b\x44\x88\x2d\x98\x20\x9d\x51\xde\x75\x5a\x33\x91\x90\xb6\x97\x61\x3e\x06\x0c\x8f\x3c\x91\x1b\x0a\x57\x68\xf5\x52\x25\xd6\x3b\xb3\xd0\x99\x01\xca\x29\x2d\xd8\xe6\x87\x99\xc2\x82\xeb\xc4\x72\x0a\x0b\x93\x25\xa9\xe3\x0a\x8b\x8a\xed\x8f\xbd\x20\x4a\x56\x82\x38\xc3\x8e\x03\x3f\xfc\x00\xd3\xf5\x67\x71\x05\x7e\x84\x2a\x7d\xe4\x71\xed\xc6\xd4\x0e\x06\x3a\x11\x29\xca\x2b\x37\x42\x4d\xc5\x46\x69\xa5\x46\xa8\xa7\xd0\x28\xe3\x02\x9b\x71\x6d\xb5\x55\xb5\xa9\x67\x4f\xca\x9c\x58\x41\xd3\x33\xfb\x64\x42\x11\x0a\xdd\x25\x46\x46\xe9\x68\x93\x14\xe8\x37\x2b\x7a\x7c\xdb\xb7\xe7\xb3\x22\xc1\xe9\xcf\x32\x13\x30\xee\xdf\xae\x42\xf0\xbf\xdd\xb0\xab\xdf\xd4\xd7\xc7\x6f\xba\xd7\x07\x77\x40\x53\x5e\x22\xdf\xbe\x6f\x9a\x8c\x21\xea\x9b\xd9\xfc\x6f\xd3\xe1\xfe\x9e\xc3\xfc\xed\x39\x52\x2e\x93\xba\xef\x6f\xf4\xb2\x5f\x9a\xeb\xa7\xa6\xfa\x43\x2f\x08\xd1\x80\xde\x71\xe9\x26\x31\x25\x65\x17\x62\x94\xe4\xee\xb6\xc2\xe4\x7b\xda\xd7\x18\x2a\x25\x8b\xd4\xe6\x26\x75\xb4\x11\xa9\x7b\x44\x06\x23\x6d\x01\x4f\x69\xad\x10\x00\xf4\xb1\x05\x6b\x4b\x94\xae\x90\x51\xe1\xaf\x6b\x21\x46\x1d\x9a\x24\x32\x9f\x98\x71\xa5\x62\xb1\xe3\x7c\x6e\x5f\x1d\x56\x4c\x62\x56\xb8\xc5\x36\xbd\xef\xf7\xd8\x57\x0b\x7e\xa5\xb0\xec\x6b\xfb\x52\x2e\x54\xd4\xc5\x6e\x3b\x59\x09\x08\x9a\xf0\x37\x34\x52\x07\x6a\xc6\x86\x72\xbe\x3e\x7f\x46\x4d\x4e\xbc\xfd\x85\x39\xf1\x9f\x94\x08\x5f\x07\xf5\x22\xd3\x58\x46\x9e\x5f\x35\xaf\x2b\x97\x09\xa1\xc0\x56\xef\xe6\x81\xe9\x25\x4b\xf0\xab\x32\xb0\x5e\x66\xa5\xbf\x4d\xb6\x15\xee\xad\xdc\x23\x16\x44\x67\xdc\x1f\x45\xe4\x41\xba\x28\xcc\x9a\x9f\xe5\x43\xa1\xc7\x30\xb6\x23\x7c\xf9\xa8\x02\xd8\x9e\x45\xc9\x38\x18\x12\x93\xfd\x52\xc9\xfc\x9e\xe9\x53\xe5\x0d\x2a\x8a\x77\xcf\xee\xe7\xa5\x21\x09\xfd\x92\x9d\x3f\xd1\xc1\xba\x57\x62\xda\x3f\x6b\x73\xb9\xd7\xcc\x62\x22\x3f\x8a\xb8\x57\x5d\x07\x70\xf9\x7e\xfd\xa1\x13\x08\x51\x53\x7e\x14\x17\x10\x34\xb1\xa9\xa4\x63\x40\x4d\xaf\xa8\x65\x4f\x20\xa2\x59\xe2\xec\xbe\x88\xef\x48\x84\xf4\x2c\xcd\x20\x94\xad\xe1\x82\x32\xb7\x00\xaf\x5b\x36\xf1\x41\x31\x1b\xa1\x9b\x18\x36\x65\x0b\xbd\x61\xe0\x54\x42\x3d\x18\xf7\xa2\x33\x76\x2a\x7a\xd1\x19\x05\x7d\xee\xfd\x92\x7d\xd9\x95\x0a\x73\xd6\xcb\x57\x92\x79\x2f\xbe\x0d\x01\x96\xc8\xc7\x06\xca\xdb\x2e\x69\xf9\x0a\xc5\x5f\x50\x86\xf5\xcb\x17\x94\x0e\xcb\xf8\xa9\x7c\x33\x02\x5b\xeb\x7f\x8e\x09\x41\x2e\xe6\x2f\x27\x05\x9f\x8c\x2a\x26\x36\xb9\x4f\xd7\x92\xa7\xb9\x4a\x91\x6e\x21\x4f\x03\x65\x6d\x9f\x72\x6e\xa0\x24\x15\x38\x79\xb0\x0b\x86\x61\x65\xb9\x54\xfd\x34\x97\xaa\xc9\xcc\xa8\xd7\x52\x7a\xe7\xc2\x60\xf9\x25\x93\x69\xeb\x50\xf1\x90\xc5\xeb\x4f\x87\x16\xc2\x2e\xcc\xb8\xbd\x25\xb7\xd6\x7e\x9e\x2e\xd6\x34\x67\x99\x3d\x2c\x17\x80\x84\x96\x5e\x74\xa6\xed\x2b\x9e\x15\x44\x79\xaa\x2e\x78\x9a\x84\x76\x56\x32\x93\x66\x81\xc3\x8f\xac\x68\x5a\x5c\x5c\xf3\xa4\xac\x31\xfa\x6b\x86\x12\x72\x40\x17\xe9\x29\x8e\xd9\xfd\x71\xc4\x5d\x7e\x6e\xc1\x38\x36\xb3\x75\x9d\xde\x3a\xc2\xff\x06\x2c\x01\xbe\x20\xc6\xff\x92\x5a\x8b\xdf\xbf\xeb\x03\xb3\x72\x53\x7d\x60\x6c\xa6\xd7\xe7\x57\x41\xe7\x7c\x3d\x50\xff\xb5\x81\x3c\x42\x5f\x93\x3b\x99\x4e\x48\x76\xf8\x66\x1d\xc3\x28\x17\xfe\x3e\x75\x73\x8a\xf2\x96\x2b\x39\x6d\x07\x5e\xd7\x76\x14\xcf\x47\xd0\x13\x31\x53\x54\xa6\xcf\x8e\xdc\x3a\x41\x45\x49\xb9\x37\xe9\x6c\x7d\xa6\x9f\x0b\xd8\xbc\x97\xc6\x2d\x3e\x53\xad\x69\x76\xab\x6b\x6f\x18\x0c\xc1\x4c\x29\xb4\x85\xae\xae\xd4\x12\x46\x4b\x45\xd4\xd7\x60\x37\x4a\xa9\x3e\x2f\xf3\x8a\x5a\x8e\xcd\x49\x4d\x2e\x66\x85\x71\xa6\xb2\xc2\x69\x0b\x5d\xeb\xdb\xe8\x4e\x5d\x01\xb4\x48\x9c\x95\x61\x38\xed\x3b\x19\x87\xae\x2d\xed\x02\x6c\x9d\x06\xdd\x05\x26\x40\x8f\x52\x99\x45\x83\x02\xb8\x8d\x4c\xfa\xb3\xfe\x46\xe8\x52\xfd\x0b\xa7\x9d\x6c\x00\x8c\xc3\x18\x9a\xec\x2c\x0d\x83\x28\x48\xc6\xa6\xd3\xd6\xbf\x65\x75\x01\x60\xc3\x99\xb5\x66\x01\x29\x67\x7a\xe3\xde\x25\x21\x7b\x3b\x6e\x57\xba\x26\xad\x0d\x8b\xed\x3c\x5d\x7c\xd7\xb9\x6b\xdb\xd6\xaf\xd0\x8f\x2b\x92\x91\x09\xec\xf2\xb7\x18\xc1\x2b\x0d\x22\xc1\xd3\x7d\xab\x62\xee\x60\x08\x22\x90\xa3\xe9\x2c\x77\x29\xea\x61\x51\x33\xb4\x04\xf4\xf6\xa4\xdc\xf9\x6a\xb4\x42\xf6\x73\x05\x1e\x33\x22\x78\x96\x8c\x4d\x5c\xb1\xc0\x78\xf6\xe2\xe8\xc9\xde\x0b\x1e\x23\x0f\x2f\xa2\x03\xf1\xba\x15\xe8\xc2\x8b\x85\xa9\x46\x60\x93\xf9\x14\x2d\xec\x35\xe2\xac\x11\xc1\x62\x4a\x49\x28\x1e\x22\x27\xe2\xaf\x66\x7d\x57\xf8\x9a\x11\x7d\xe3\x86\xb4\xb5\x5e\xb4\x18\x1c\xaa\x58\x80\x44\x11\x12\x2a\x15\x3b\xc1\x31\x31\x4d\x4d\x76\x2b\xd3\x2c\xf5\xaa\x67\xb0\x03\x51\xaf\x2a\x69\xb4\xec\x58\x51\x4f\x74\x56\x78\xa4\x9e\x1e\x25\x08\xcf\x74\xe1\x8f\xc8\xe0\x6f\x25\xe2\xce\x6a\x90\xa4\x05\x54\x32\x00\xfc\x74\x6d\xa5\x7e\x2a\x90\xf7\x29\x79\x04\xb8\x20\x1a\x0f\x07\xbc\xa8\x87\xcf\xa4\xb0\x37\x04\xd3\x18\xa0\xa1\x37\x0b\x89\xc1\xb4\xe3\x01\xbb\x95\x99\x27\xf8\x3e\x9e\x4c\x3d\x12\xf4\x43\x94\x3d\xba\x40\xe3\xc0\x0f\xd1\x29\x03\xac\x22\x43\x02\x66\xa2\xc0\x80\x73\xe1\x7c\x9f\xa4\xb3\xf2\xf8\x6c\x3c\xf8\x11\xfc\xc5\x6c\x3c\xc5\x6c\xf2\xb3\xe2\x01\x00\x3c\xd9\x94\xb2\x12\xf7\x38\x81\x71\x06\xbb\x30\xb3\x20\xe1\x40\x9c\x12\x1d\x0a\xdc\x2a\x7f\x14\xe4\xdc\x8a\x93\x2c\x60\x93\x19\x94\xc0\x5a\xd2\x83\x26\x0f\x95\x93\x85\xc8\x27\x12\x0c\xb5\x88\xa6\x23\x4a\xf0\xbc\x01\xa3\xf9\xaf\x4c\xa9\x80\xe4\xce\xfc\x02\x21\x14\xeb\xa8\xbc\x20\xa4\x44\x70\xc9\x5b\x12\x3a\xe7\x9b\x53\x44\x71\x16\x8c\x75\x3b\xc1\x45\x56\x6e\x45\x80\x91\x95\x52\x8c\xda\xda\x34\x02\xc6\xb0\xe1\x05\x0b\x13\x09\x42\x9c\x95\x63\x2e\xd6\x3b\xc8\xe1\x72\x66\x2f\x58\xae\x25\x01\x4e\x2e\xc7\x2e\xae\x0d\x27\x2e\xc9\x36\xe6\xc6\x61\xad\xd8\x68\xe7\x39\x5a\x2d\xab\xcc\xac\x68\x9b\x6c\x0b\x46\x4f\x72\x76\xa8\xfa\x46\xe2\x2b\x3d\xeb\xd8\xf2\xac\xbc\x50\x86\x70\xdd\x18\xae\x0e\x01\x9b\x15\xad\xdc\x1e\x72\x19\xd5\xb2\x4e\xe1\xa2\x94\x97\xd4\xae\xbd\x59\x4e\x7c\xb5\x18\x99\xe2\x36\x51\x84\x04\x95\xd9\x7c\x74\xe1\x27\x09\xae\xf7\x57\xea\xed\x45\x83\xd3\x31\x6f\x40\x3f\xb4\xe7\x76\x18\xf9\x16\x64\x64\xf9\xe6\x96\xb2\xb2\x9b\xe1\x65\x7d\x8c\x71\x2b\x82\xb3\xac\x6c\x85\x97\x29\xa5\xc5\xcc\x4e\xcc\x0c\x23\xf3\xa0\x9f\xbb\xdc\xaa\x3d\x58\x1a\xef\x2c\x4d\x06\xf6\xc9\x15\x0b\x53\x9d\xa6\x27\xe3\x34\xff\xe3\xec\x6b\x17\xb0\x4d\xf4\xae\xc1\xf5\xb2\x60\x8d\x1b\x25\xd0\x4c\x56\x4a\xc8\x8b\xb2\xa2\x29\x37\xca\xca\x42\x14\x78\xe3\xcb\xea\x96\x4c\xab\x94\x5d\xdc\xc0\xec\x4a\x55\x84\x26\x59\x05\x2f\x58\x94\xb3\x5e\x4d\x62\x50\xfa\x22\xd1\x95\x2b\x65\xc5\x5b\x81\xde\x05\xa9\xcf\x6c\xc2\x3c\x0b\x7c\x96\xc9\xdd\x90\xa2\xae\xdb\xd8\x06\xbd\x2d\xc8\xc7\xee\x59\x3d\x64\xb0\x9b\x9e\xa9\xd2\x0b\x5e\x76\x71\x75\x45\x67\x70\x0b\xb7\xb4\x9e\x98\x29\x2b\x9a\xb7\xb4\x2c\xda\xcf\xb2\xce\x56\xb7\xb4\x1e\x02\xde\x4a\x7a\xb4\x18\xd9\x36\xb7\xb4\x80\xa7\x12\xdc\xcd\x18\xa5\xf7\xa3\x67\xfb\x51\xc5\x94\xcc\xe4\x1c\xcd\xbb\x60\x30\x63\xe4\xa7\x8c\x16\x67\x86\xda\xd2\x10\xa8\x8c\x27\xef\x82\x21\x48\xa8\x72\x9d\x1b\xee\xb5\x05\x9d\x5a\xd3\x75\x0a\xf9\x32\x63\x96\x20\x48\x48\x1c\xf8\xc4\x58\xdb\xa1\xc8\x7e\x27\x66\x03\xf1\x05\x8a\x59\x28\x56\xe3\xbd\x3b\x43\x4f\xab\x1f\x26\x1f\xe6\x13\xd1\x90\x7d\x1c\x11\x14\xd1\xe1\xbe\x79\xd7\x18\xfe\x35\x3f\xd8\x3f\xea\x1b\x52\xee\x33\xfd\x98\x2d\xa5\xec\xf8\x4b\x46\xcc\x08\x92\xdc\x77\x1e\x1e\xfb\x8a\x1e\xef\x2b\x75\xc8\xd6\x45\x84\xe2\x0d\xdd\x4d\x26\xa1\x6a\xb5\x9a\x16\xb4\xdb\x16\x38\xad\xaa\x05\xed\x46\xcb\x82\x66\xdd\xb1\xc0\x6d\xb9\x16\x74\xda\x8e\x05\x8d\x6a\xcb\x82\x7a\xa7\x65\x41\xab\xd6\x3c\x63\x3c\x0c\xb2\x0f\x29\x92\x93\xce\x2f\x27\xa1\xed\x35\xda\xb5\x0e\x6d\xaa\xd9\xb0\xa0\xd3\x6a\x59\xd0\xa8\x37\x2c\x68\xba\xb5\x54\x9e\x74\xf6\x7f\xfe\x3f\x16\x4e\xe3\xe1\xc3\x7f\x41\x82\x67\xb1\x8f\x5e\x7a\xd3\x69\x10\x8d\xde\xbc\x7e\xb1\xeb\x4d\xa7\x76\xb3\x55\x6d\xf6\xdb\xed\x76\xa3\xee\xd6\x3b\x9d\xba\xe7\x37\x87\xc8\xfe\x90\xd0\x81\xfc\xff\x01\x00\x00\xff\xff\x7e\x17\xe9\xd6\x99\x6d\x02\x00") +var _ghPagesApp6706b8885424994ac6feJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xd3\xc6\xf6\x30\xfc\xff\xbb\xd6\xf3\x1d\x36\x3a\x3c\x7d\xe4\x83\x22\x2c\xf9\x6e\x9a\xc3\x0a\x49\xa0\xb4\x40\x52\x12\x4a\x8b\x7f\xf9\x51\x59\x1e\xdb\x22\xb2\xc6\x95\xc6\x49\x0c\xe4\xbb\xbf\x6b\x66\x24\x5b\xb6\x67\x46\x23\x27\xa1\xd0\xc3\xb4\x2b\xd8\xd6\x68\xae\x7b\xf6\xec\xfb\x36\x13\x14\x0e\xed\x4b\xd4\x9f\x7a\xfe\xf9\xfe\x78\x16\x9d\xcf\x3d\x7f\x00\xbb\x20\xfe\xfd\xf3\x67\xe8\x9d\x55\xec\xe9\x2c\x19\x9b\xbd\xff\xf3\xff\x01\x00\xf4\x9c\x7a\xed\xcc\x82\x4f\xfc\x1b\x2d\x8d\x6a\xbd\xd3\xea\xc2\x70\x16\xf9\x24\xc0\x11\x98\xc8\x82\xc8\x02\x52\xc9\x57\xa2\xc5\x98\x25\x08\x12\x12\x07\x3e\x31\x1e\xad\x3e\x22\xf6\xc0\x8c\xac\xf5\x17\x68\x39\xcd\xb7\xbc\xd1\x64\x56\x62\x44\x66\x71\x04\xc3\xcd\xa7\xd7\x16\x5c\x96\x69\x62\x2c\x68\x62\xf5\xa7\xeb\xca\xda\xe0\x2f\xbc\x18\x62\xd8\x05\x62\x76\xea\x9d\x7a\xa7\x62\x6d\x36\x81\xd9\xe3\x76\xb5\x5a\xaf\x89\x1e\x07\xfc\x71\xab\xd5\x68\x89\x1e\xfb\xf4\xb1\x1d\x99\x81\xe8\x61\x02\xbb\x60\x12\xb3\xdd\x6e\xb6\xea\x15\x0b\x88\x59\x77\x1a\xb5\x0e\xfb\xd4\x76\x1b\x6e\x93\x7d\x6a\xb4\x6a\x6e\x8b\x7f\xaa\xb7\xea\xfc\x53\xbd\x53\xab\xf1\x4f\x9d\x56\xa7\x5e\xab\xd0\x69\xad\x36\xbf\x58\x35\x8f\xed\xa9\x70\xe9\xe8\xe4\x09\xec\xc2\x51\xff\x03\xf2\x89\x7d\x8e\xe6\x89\x89\xd6\x57\x88\xcd\x71\x08\x66\x5a\x69\x84\xc8\xd1\x65\x74\x1c\xe3\x29\x8a\xc9\xfc\x64\x3e\xe9\xe3\x30\x91\x6e\x4c\xb6\xbc\xaa\x97\xc5\x5d\xd2\x12\xc1\x0f\x3f\x80\x49\xdf\x8f\xed\x61\x10\x12\x14\x9b\xe6\x12\x1a\xc4\x73\xca\x4a\x0a\x12\xc2\x8e\x0f\x50\xe2\xc7\xc1\x94\xe0\x98\xaf\x8d\x8d\xa2\xd9\x04\xc5\x5e\x3f\x44\xe2\x06\xaf\x2b\x15\xba\xd8\xec\x30\xd9\xde\x74\x1a\xce\x4d\x62\x41\x5c\x29\x84\xb7\xdc\x48\xc8\x1a\x24\x4a\x37\x6c\x66\x22\xe1\xcc\x86\x38\x06\x93\x2e\x68\x04\xbb\xe0\x3c\x82\x08\x7e\x04\x2f\x1e\xcd\x26\x28\x22\x89\x1d\xa2\x68\x44\xc6\x8f\x20\x7a\xf0\x40\xb9\x1b\x74\xbf\xa3\x59\x18\xc2\xbd\xdd\xe5\xdb\xbd\xe8\x0c\x1e\xaf\x7e\xed\xc2\xa7\x6b\xe9\xb6\xfc\x5f\x70\x69\xfd\x14\x26\x4c\x52\xb1\xe0\x5e\xb5\x62\x0f\x71\x7c\xe8\xf9\x63\xfd\x4d\x32\xab\x16\xc4\xf6\xbb\x4a\x86\x76\x7a\xd1\x99\x60\x4d\x81\xef\x00\x74\x8b\x76\x33\x81\xc7\x59\x95\x01\x1a\x06\x11\x4a\xab\x04\x28\xa1\x3d\x14\xbd\x6d\x12\xd6\x49\x6e\x5a\x5b\x4c\x49\xd4\xff\x3c\x9d\x5f\x11\x30\x12\x0a\x8c\xf2\x05\x28\x03\x6d\x68\x03\xda\xf2\x5f\x29\x20\x84\xb0\x0b\xc6\x43\x1f\x47\xc3\x60\x94\x18\x72\xfc\x31\x94\x80\x63\xda\xd1\x34\x3b\x0f\xe3\x20\xb1\x96\x20\x54\xd1\x85\xf6\xa9\x18\xab\xa7\xad\x9b\x53\x8a\x21\xab\x16\x60\x0a\x25\xbe\x59\xb1\x27\x5e\x7c\x9e\xdb\x0d\xa4\xd8\x0e\x06\xee\x16\xc4\x16\x60\x09\x24\xa7\xbd\xd0\x76\x2f\x63\x6f\x9a\xdf\x65\xf1\xa4\x17\xc3\xa7\x67\xf1\xd1\xa3\x0a\x24\x97\x01\xf1\xc7\x60\x22\x7b\x1a\xa3\x0b\xd8\x05\x64\x47\xe8\x6a\xf3\xfe\x5c\x2f\xbe\x97\x20\xa8\x76\xd5\x95\x72\x43\x24\xe9\x3a\x24\xf6\xa8\x62\x46\x15\x8b\x5f\x5a\xf6\x2c\x0e\x2d\x7e\x41\xd9\x41\x14\x10\x2b\xed\x1e\x76\xa1\x66\xc1\x10\x11\x7f\x6c\xc6\xf0\x00\x68\x25\x19\x92\x5d\x19\x51\x4d\x7f\x44\xc8\xf6\xfa\xf1\x6c\x4a\x4c\x83\xff\x60\xd0\xce\x13\x14\x11\xad\x8e\xea\x05\x1d\xb1\x4a\x06\x8a\x06\x46\x99\x11\x25\x04\x4f\x4d\xc9\x01\x02\xf1\x79\x61\x3f\x57\x2c\x40\xa2\xe3\x55\xa9\x54\x2a\x37\x84\xef\x81\xfa\xf8\x18\x09\xf6\xcf\x93\x9d\x29\x8e\x89\x01\x41\x04\x88\x5d\x79\xa8\xc7\x7e\x47\x84\x3f\x38\xa3\x70\xd5\xcb\x57\x3d\xa3\x23\xd6\x1d\xc2\x58\x4e\x01\xa4\xa3\xb8\xb8\xe1\x24\x2f\xd4\x87\xf8\xa2\xf8\x10\x8b\x68\xce\xac\x30\x22\xc2\x02\x6c\x41\x60\x81\xf7\xcd\x1f\xe5\x78\xfd\x28\x63\x46\xe0\xb0\xa3\x1c\xb0\x8f\xfc\x28\x7b\xb0\x0b\x3f\x9f\x1c\xbd\xb2\x29\xd9\x1d\x8d\x82\xe1\xdc\x1c\xd0\x3b\x29\x77\xc8\xeb\xd9\x21\xc7\xfc\x90\xcf\xcc\x99\xf9\xe9\xda\x82\xa0\x62\x01\xfd\xb7\x60\xe4\x59\xe9\xe3\xc1\xbc\x0b\x9e\x80\x40\x15\x95\x09\x22\x63\x3c\xe8\x82\x71\xbc\x77\xba\xff\x93\x51\xfc\xd2\x75\xe5\x56\x50\x02\xdc\x16\xee\x69\xfc\xe3\x70\xcf\xe2\xa3\x05\x9d\x56\xab\x51\xbd\x33\x8e\x2e\xfe\xb5\x0c\x3f\x36\x10\xb2\x74\xc7\xcf\xcb\xb4\x71\x21\x6c\xe3\xfe\x2f\x65\xda\x18\x09\xdb\x38\x99\x94\x69\x63\xfe\xad\xf2\x96\x6e\xab\xe5\x72\x9e\xb1\xda\x68\x3a\x9c\xb7\xfc\xce\x6f\x7e\xe7\x37\xbf\xf3\x9b\xdf\xf9\xcd\x2f\xca\x6f\x5a\x30\xcc\x58\xce\x08\xb1\xb9\x25\x86\x00\x6f\x51\x8e\xaf\x77\x26\xc7\x2f\x03\x39\x7e\xa1\x68\xc3\x81\xdd\xdd\x5d\x08\xe9\x49\x8e\x2a\x0b\xc1\xa0\x19\x89\xce\x7c\xc8\x00\x5b\x8e\xa7\x38\x95\x76\xcc\xc0\x65\x28\xc2\xb1\x6c\x01\x28\x80\xa3\x4b\x78\x8b\xfa\x27\x8c\x66\x37\x85\x54\x48\x46\xfc\xd9\xde\x60\x70\x78\x81\x22\xf2\x22\x48\x08\x8a\x50\x6c\x1a\x28\x8e\x71\x6c\x58\x60\xea\xdf\x46\x74\xe4\x35\x21\xd1\x60\x09\xbb\x98\xa0\x24\xf1\x46\x68\xb5\x13\x39\x5d\x9c\x89\x64\x35\x49\x68\x86\x24\x14\x94\x17\x89\xe7\x45\xa4\x68\x94\x11\xbb\x53\x2f\x4e\x90\x29\xa2\x88\x16\x93\x04\xdf\x63\x84\xba\xfa\x60\xd0\xe2\xe3\x28\xc1\x21\xb2\x43\x3c\x32\x8d\x65\xf3\x90\xad\xf8\x4a\x8f\xe5\x69\x37\x5a\xa6\xa2\x23\xab\x5e\x2e\xc8\x1d\x1b\x33\x52\x75\x2b\x3d\x9c\x26\xb2\x07\x1e\xf1\xc4\x74\xa3\x05\x11\x3c\x66\x30\x0f\x5d\xb8\xc0\xc1\x00\xaa\x25\x58\x45\xb5\xb0\x87\xa9\x13\x90\xec\x2c\x68\x00\x30\x64\xf0\x02\xbb\x30\xb5\x83\x68\x80\xae\x8e\x86\xf2\x2b\x19\xd8\x12\x27\xd3\x30\xf0\x19\x97\xe8\xc8\x56\x44\x9f\x55\x55\xce\xb0\x7f\x43\x4e\xb8\xaf\xe6\x84\xfb\xdf\xc5\x59\xb7\x20\xce\x1a\x2e\x39\x5d\x5c\x8e\xd3\x5d\xf0\xae\x07\x87\x2f\x0e\x4f\x0f\x6f\x8f\x79\xfd\x2e\x38\x5b\xfd\xfd\xe6\x82\xb3\x91\xfa\xa0\x5e\xdd\xb0\xf9\x2b\xf5\x41\xbd\xfa\x7e\x50\x6f\xeb\xa0\xf2\x63\xfa\xfd\x14\xfd\x2d\xa7\x68\x5e\x28\xfb\xfd\x70\xc3\x1e\x3e\xa8\x0f\xd2\x87\xef\xb2\x5f\xd8\x4e\xf6\xfb\xe7\xfd\x4f\xf8\xfa\xfe\xa7\xe1\xf5\xc3\xfb\x9f\xc8\xf5\x9f\x22\xb1\xaf\xb7\xb5\xc8\xf7\xce\x2e\xc2\xef\x52\xdc\xd5\xdf\xb7\x93\xe2\xd6\x1d\xb7\xdd\xb9\x3b\x29\xee\x4d\x85\xb8\x05\x82\xcf\xbc\xe4\x50\x24\x7f\x74\x6b\x8e\x5b\x13\x4a\x22\x45\x12\xd4\xf4\xa2\x49\x25\x8f\x12\x29\xa9\xf1\x90\xc4\xde\x70\x18\xf8\x22\x91\x82\x9f\xb2\xe8\xa7\xe8\x8a\x1c\x20\x1f\x0f\x28\x4b\x3c\x23\xc3\x9d\xb6\x21\x93\x9c\x3a\x8d\xaa\xe0\x09\x3d\x96\x92\xd5\x0a\xbd\x3e\x0a\x93\x2e\xec\xc5\xb1\x37\x37\x13\x19\x87\x34\x9b\x16\x56\x19\xe0\xcb\xa8\xb0\x52\x12\x7c\x44\x5d\x48\x64\x4f\x67\xfd\xc4\x8f\x83\x3e\x8a\x93\x2e\xf4\xce\x24\xb5\xbc\xe9\x14\x45\x83\x03\x8f\x78\x05\x68\x92\x42\xae\x3d\xcb\x98\x3f\x7b\x36\xa5\x3b\x46\x7f\xa3\x43\xcd\x7e\xa5\x9f\x55\x07\x37\x63\xfa\xe8\x46\x1c\x78\x04\x15\x68\x9b\x28\x9e\x33\x0c\x78\x00\x91\x3d\x42\xe4\x65\x10\xcd\x08\x4a\xcc\x4a\xf6\xc3\x09\xf2\x71\x34\x48\x4c\x55\x8f\x6c\x88\x7c\x5f\xf8\x20\x49\x36\xee\xd9\x34\x95\x5f\xc2\x7f\xf8\x0f\x74\x39\xe1\x87\x1f\x16\x4f\x93\x71\x30\x24\xe6\xca\x34\x15\x2f\xb0\xe7\xab\xaf\xa4\xdd\x2a\x5e\x4a\x6b\xac\xbe\x96\xdb\xb8\xf2\xa2\x40\x58\x1e\xda\x48\x2d\x41\x91\xca\x15\x8a\xe0\x49\x47\x10\x44\x0f\xeb\x38\x48\x14\x1b\x93\xd1\x96\xeb\x33\x56\x0b\x17\xb2\xa2\x29\x64\xc8\x8f\x89\x09\xa1\x57\xba\xd2\x12\x3c\x64\x65\xf5\xd5\x54\x18\x41\xe4\xc2\x88\xac\xc8\x2e\x0b\x01\x46\x15\xcc\x79\x06\xbb\x70\xcf\x11\x3c\x60\x96\x3b\x5b\x58\xec\x78\x76\xee\xc4\xab\x44\x5f\x2a\x6b\x1d\x25\x53\x86\xec\x18\x79\x03\xb3\x62\x93\x31\x8a\xf4\x00\x77\xa1\x65\xe0\x7b\x34\xc0\x11\xe2\x4c\x46\x64\x5f\x78\xe1\x0c\x71\xec\xef\xdb\x03\x86\xb7\xcd\x58\x49\xe1\x24\x24\x46\xde\xa4\x0b\xf7\x88\xfc\x9a\xa6\xb7\x85\x19\xc2\x83\x5d\xc0\x15\xb6\x97\xc4\x34\xfe\x27\x32\x2a\x16\xc3\xfb\x41\x2f\xc8\x0e\xed\x0e\x38\x67\x9c\x12\xab\x3e\x02\x0f\x7e\x84\xfc\x93\x47\xe0\x3d\x78\x50\x81\xa1\x19\xf4\xbc\x33\x19\x0c\x2d\x78\xa8\xc7\x60\x0e\x29\x2e\x4f\xb7\xce\x5a\x15\x4c\x3e\x3b\x3c\x85\xec\xfa\x4a\xa7\x10\x44\x23\xa0\x4b\x41\x87\x75\x81\x83\x81\xc9\x81\x81\xe9\x0b\x4c\xda\x48\x62\xb1\xbd\x10\x93\x1c\xba\xbb\x29\xb3\x4d\x09\x86\x60\xce\xe0\xf3\x67\xe0\xc2\xf4\x78\x21\x47\x17\x11\xe0\xb1\x42\x88\x1e\x2d\x88\x7f\x2e\x44\x17\x2a\x2a\x21\xc5\xf6\xab\x42\x74\xe1\x5d\x92\x2d\xa8\x9e\x10\x5d\x21\xdf\x56\x88\xcf\x45\x8d\xfb\x21\x4e\xd6\x84\xe7\x72\x88\x66\x8d\x2b\x70\x58\x19\x31\x31\xdb\x09\xe5\xf2\xe7\x0b\x03\x92\x6a\x41\xa5\xd5\x7d\x19\x55\x8a\x11\x2e\x64\x1b\xc4\xf8\x14\x0d\x62\x9a\xd5\xa5\x8c\x4c\xc1\x50\x38\x13\x43\xe0\x01\x65\xee\xe2\x4d\xac\x51\xbc\x3e\xb4\x20\x1b\x9f\xc3\x63\x7a\x1c\xec\x3e\x1e\xcc\x29\x75\xf0\x1a\x79\x94\xc6\x63\xc7\x85\x9f\x9c\x02\x44\x5d\xd1\x04\x9c\x7c\x59\x39\xc3\x6c\x2a\xcb\x53\x9c\x41\x23\xaa\x58\x9a\x03\x50\x5d\xd7\xc2\xcb\x5c\x0a\xac\x25\x75\x3d\xc3\x02\x5d\x82\xa7\xe2\x53\x1a\xed\x5a\xc7\xbd\x29\x9f\x22\xb4\x47\x68\x36\x3b\x1d\xce\x37\xd4\x6a\x9d\x7a\x5b\x6e\x5b\xe1\xd4\x9b\x8e\x90\x2d\xe0\x5c\x43\xad\xe5\x38\x55\x85\x6d\x45\xad\xd1\xa8\x4b\x6d\x2b\xcc\x66\xbb\xe5\xb4\x65\x3c\x82\x64\x41\x3f\x8e\xbb\x40\x6c\x64\x3a\xf5\x6a\x0a\xd2\xc4\xee\x07\xd1\x80\x51\x0c\x9d\x4e\xb3\x51\x91\x1d\x38\x14\xf1\x37\x6b\xcd\x8d\x17\x9b\xcd\x6a\xad\x29\x44\xf7\x6b\x0b\x13\xdb\xef\xec\x59\x82\xcc\xc0\x7e\x57\x61\x1f\x7c\xfb\xa0\xcf\x3f\x61\xfa\x13\x3d\x96\xa6\x60\xe4\x03\xd4\x9f\x8d\xba\x62\x82\xa3\xef\xf9\xe7\x28\x1a\x74\xa5\xbc\x0f\xf6\x06\xc7\x1e\x19\x77\xc1\x78\xf8\xfe\xfd\xa7\x4f\x61\x34\xba\xbe\x7e\xf8\xe9\x53\x94\x5c\x5f\xdb\x1f\x12\x1c\x89\x98\x32\x36\x58\xf4\xd7\x0c\x25\x44\x00\x40\x14\x1f\x14\x51\x9a\x32\xe9\x2a\x2d\x99\x40\x47\x43\x47\xc8\xe4\x04\x0f\xdf\xbf\xff\x38\xa6\xc7\x37\x4a\x42\x8f\x8e\x84\x8f\x5b\x4b\xc6\xc0\xde\xdd\xd9\x7f\x55\xfa\x75\x48\xa1\x34\xb1\x3f\x8e\x35\xc8\xd0\x7e\x8c\xbc\x73\x1d\xd1\x08\x1d\x11\x8a\x4a\x0f\x67\x80\x86\xde\x2c\x24\xda\x83\x46\x51\x69\x39\x09\x7f\xf9\x87\x1f\x00\x6f\x81\xec\x63\x33\x9a\x85\xa1\x96\x88\x2b\x21\x1e\x99\x25\x5d\x70\xab\x22\x36\x7e\xbd\x50\xf4\xd7\x05\x8e\x06\x8b\xf0\xf4\x36\x5c\x95\x1e\xbd\x9f\xcc\xa6\x53\x1c\x13\x34\x78\x11\x8d\x28\xdb\x6e\xa0\xc8\xb0\xc0\x60\xa0\x65\x88\x78\xf8\xa1\x17\x86\xf4\x68\xbe\x88\x46\x5d\x60\xb5\x05\x58\x2e\x22\x28\x9e\x62\x0e\x05\xd2\x03\x8c\x12\xdf\x9b\xa2\xdf\x28\xbd\xdd\x15\xde\x55\x3a\xa6\x6e\x1e\xc7\x98\x2d\xb7\x23\x44\xa8\x33\xf6\xb8\x55\xeb\xd4\x1a\xa2\xc7\x61\x8a\x8e\xdd\x86\x10\x99\x0f\x53\x53\xb7\x50\xf4\x70\xca\x4d\xdd\x96\x86\x6b\xed\x76\xab\xd9\x12\xa2\xd9\x01\xbf\x14\x3a\x2d\xc7\x11\x3d\x1e\x73\x49\x53\xb3\xd3\x12\xce\xe1\x82\x3d\x76\xdb\x55\xe1\xd3\x3e\x7b\x5a\x6f\xb6\xaa\xae\xe8\xf1\x48\x6d\xeb\x77\xa5\xb6\xf5\x9b\xa7\x0b\x70\x25\x7a\xf8\x21\x27\x20\x93\xf3\x85\x13\xb5\xa4\x7e\x92\x12\x85\x23\xfb\x5d\xc5\x9c\xdf\x4c\x52\xef\x5b\x20\x13\x00\x64\xf6\x94\xdf\x86\xb0\xfe\xd3\xb5\x05\x8b\x7e\x1c\xce\x8c\xd2\x45\xfa\x40\x29\x67\x92\xb2\x93\x98\x0b\xf0\x7d\xf6\x71\x4d\x1f\xd6\xc8\x64\xf5\x01\x3c\xa0\x37\x9b\x7f\x2b\xc2\x6d\x48\x79\x83\x7b\x66\xc2\xe6\xcf\xa4\xe6\x36\x3e\xd7\x22\x5c\x81\x11\xcd\xe9\xf8\x9c\x22\x7e\x21\x2b\xec\xf6\x29\xae\xaa\x40\xfc\x59\x59\x08\x0b\xd2\x21\x74\x2c\x48\xd8\x05\xa5\x94\xe6\x41\xb6\x36\x1d\x9d\x1d\x5c\xac\x8a\x4e\x8b\x8e\x0e\x50\x2c\x57\xac\x71\x9b\x77\xb5\xe3\x6a\xf5\x9d\x41\xa0\x4b\x41\x8b\x54\xd9\xf4\x98\x19\x94\xe9\x54\x56\xc5\x09\x7f\x0e\xbd\x20\x44\x03\x20\x98\x03\x1e\xdc\xff\x14\x71\xed\x11\xa9\x6a\xad\xaf\xa3\x03\x7c\x72\x15\x4e\xac\xd7\x49\xf3\xab\x53\xdf\x58\xc0\xc9\x8b\x9e\xfc\xf5\x9e\x63\x81\xe3\x9e\x89\x2b\x88\x4c\x49\xb7\xd2\xff\x40\x8a\x4d\x2f\xf9\x8d\xe0\x36\x9a\x42\xdb\xf1\x23\xfe\xb8\xe1\x76\x84\x17\xea\x31\xbf\x8e\xab\x0d\xe1\xd3\x7d\xd8\x05\xc3\xff\xa9\xff\x6e\xfe\x3e\xde\xfb\x69\x28\x22\x1d\xce\x69\x95\xf7\xee\xc9\x2b\xf4\xfe\xaa\xed\x3c\xef\x8b\xea\xbc\xa3\x75\x5e\xbc\x79\xde\x9c\xb4\x9a\xd3\x70\x2e\xaa\xf2\x2a\x1d\x66\xbb\xa3\xba\x9b\x4e\x24\xc8\x3f\x93\x56\x20\x3b\xf2\x26\x32\x9d\x01\x61\x15\xc2\x20\x3a\x57\xd8\x68\x22\xfb\x02\xc5\x49\x80\x45\x86\x8a\xd9\x15\x58\xb5\xe0\x95\xfd\x21\xb9\x4a\x2a\xa6\x31\x08\x2e\x0c\x29\xad\xe9\x87\x5e\x92\xbc\xf2\x26\xa8\x0b\xfb\x92\x3e\xfd\x71\x10\x0e\x62\xca\xd2\xf5\x16\xed\x56\x4c\x63\xec\xca\x5b\x5d\x7d\x4d\x42\x5d\x33\x59\x45\x7e\xa0\x53\xdd\x06\x57\xc6\x91\x4c\xbd\x48\xfd\xe2\xea\xcb\xc6\x6f\x7c\xf5\x40\xa1\x2a\x5e\x19\x9a\x7e\x1f\xcb\xb5\x94\xed\xdf\xe6\x70\x62\xd5\x28\x24\x07\x74\x7d\x78\xda\x0b\xb7\xb2\xdc\x5e\xa9\x19\xbd\x2b\x98\xd1\x38\x46\xc3\x2e\x90\x22\x65\x98\x17\x8f\x10\xe9\x82\xf1\xbe\x1f\x7a\xd1\xb9\x8c\x9d\xce\x4a\x8c\xc2\x2e\x18\x11\xc6\x53\x14\xa1\x18\x22\x1c\xa3\x21\x8a\x63\x14\x17\xbd\x28\x86\x95\xbe\xfd\x4e\x8f\xe9\x62\x3a\x49\xb7\xaa\x21\x6b\x2b\x0d\x24\xab\xa3\x33\x4e\xf0\x2c\xf6\x51\x81\xd5\x82\x14\x10\x40\xc1\xc9\x09\x5f\x5a\xaf\x2c\x40\xd6\x87\x29\x61\x78\x64\xdf\xff\x50\xd1\x23\x6a\x53\xac\xa3\x98\xb9\x37\x0d\xf6\x99\x83\x36\x87\xc1\x63\xfb\x8f\xfb\x15\xa9\x66\x4f\xc4\x66\x56\x34\x87\x92\x17\x0a\x4f\xed\x59\x82\x7e\x9d\xa1\x78\x5e\x31\x7b\xc6\xc3\x14\x6b\x32\xe3\x8c\xc5\x78\xce\xf4\xac\xd5\x41\x68\x4b\x2e\x33\x48\x12\xbc\x35\xd1\xba\x3b\x57\xa6\x6c\x4a\x86\x2c\xf7\x73\x60\x7c\xbf\x9a\x5b\xc9\x63\x80\x57\xf6\xd3\xd8\x1b\xd1\x71\x6c\x81\x77\x2f\x35\xce\x12\x09\x48\x88\xba\x60\xec\xf5\xf1\x8c\x14\xa0\x5b\xe6\xb2\x14\x65\x57\x1b\x3c\xce\x1f\xad\x93\xc2\x9e\x22\x86\xa3\x8c\xfd\xd0\x4b\xc6\xf6\xcb\x20\x0a\x8a\x10\x44\xda\x4f\x17\x8c\xaa\xed\xd8\xb5\xa2\xea\xf4\x4a\xee\x82\x31\x26\x64\x9a\x74\x1f\x3e\x1c\x05\x64\x3c\xeb\xdb\x3e\x9e\x3c\x64\x5d\xee\xd0\x2e\x1f\xe6\x7a\x5f\x27\x0f\x56\x67\xdb\xe5\x04\xda\xf6\x33\xfc\x05\xc5\x11\x0a\xf5\xe7\xe8\xd8\x4d\xbb\x0a\x3b\x70\x34\x45\x11\x24\x1c\xe5\x6c\x3d\xe3\x83\x18\x79\x13\xcf\x8f\xf1\x43\x7a\x3d\x8c\xd5\xfb\xaa\xee\x64\x9b\x15\xf8\xc3\xf3\x07\x65\x76\xd7\xb5\x9d\xc6\xf6\x93\x1d\x7b\x41\x32\xf6\xa2\xf1\xc3\x39\xed\x76\x7b\x99\x9a\xf4\x26\x17\xe2\x3a\xc1\x70\x0f\xb8\x68\xa8\x59\x75\xdb\x0d\xae\x57\xa8\x37\x3a\xb5\x0d\x53\x36\x8a\xff\x5e\x7f\x41\x0c\xae\x58\xd8\xc5\x1b\x49\xf6\xca\xde\xcf\x77\x8b\xf4\x73\x48\x52\x31\x2e\x66\x90\xb3\x3c\xab\xb0\x03\x07\x5e\x32\xee\x63\x2f\x1e\xac\x6b\x74\xb2\x12\x0c\xc1\xcc\x35\x9e\x33\x87\x71\x2a\x45\x4e\x41\x84\x5b\x40\x46\xe8\x12\xde\xbc\x7e\x61\x46\x76\xdf\x4b\xd0\x9b\xd7\x2f\x2a\xf6\x18\x27\xe4\x1a\x76\x80\x82\xd6\x9f\x92\x55\xc9\x5c\x84\xe8\xe4\x25\x3c\xdf\x3a\x66\xaf\x98\x07\xf6\x5f\x65\x09\xc2\x8a\x69\x30\x6c\x5d\x86\x92\x96\xd8\x26\x80\x92\x28\xd1\x85\xf7\x17\x29\xcf\xe8\xb8\x42\x19\xe4\x1e\x17\x14\x56\xeb\x35\xa1\x0c\xf2\x79\xaa\x86\x7f\x61\x8b\x28\xd2\xd3\xf4\xe9\x9e\x7d\x22\xd2\x20\xd1\xf2\x17\x25\x1b\xf6\x3d\x7f\x8c\xba\xf0\x5c\x66\xdf\xc6\xd5\x0c\x47\x53\xe6\x02\x28\x95\x49\x67\xcd\x05\x48\x5d\x07\x98\xe8\x3c\x99\xa2\x28\x41\x5d\xb8\xa7\xa0\x3e\x4b\x98\xe3\x88\x16\xe7\x0d\x5f\x3b\xb7\x29\x66\xc7\xdf\x73\xe9\x6f\xa7\x21\x5e\xf9\xfb\x7c\x63\x1c\xc7\x15\xf2\xe3\x4f\xb8\x74\xdc\x71\xc5\xea\xc6\x97\x72\x75\xa3\x37\x9d\x66\x88\xe2\xb0\x56\x31\x65\xa8\x65\x82\x07\x5e\x98\x74\xe1\xbe\x7d\x28\x33\x4e\xf0\x33\xb4\xf3\x46\x5e\x67\x1a\xe3\x2b\xb6\x23\x4f\xe4\x75\x42\x4c\x1b\x79\x6f\x1f\x8a\x4c\x2c\x04\xef\x3c\x95\x4f\x2e\x41\x21\xf2\xc9\xfe\xd8\x8b\xc9\x09\x99\x87\xe8\x79\x34\x40\x57\x5d\x38\xb6\x8f\x2f\xa5\x06\x96\x03\x8f\xa0\xbd\xe9\x34\x43\xbb\xc7\xf6\x2b\xb9\xfd\xa3\x12\xb2\x78\x53\xfb\x38\x0c\xbd\x69\x12\xf4\x43\xf4\x3c\xa1\x94\x00\x6d\x32\x78\xa2\xc0\x94\x25\x86\x00\x0c\x11\x4d\xf0\x05\x62\x98\x75\xef\xf8\xf9\xf2\x1d\xef\x83\xe2\xa5\x74\x61\x36\x5e\x3a\xaa\x4b\x80\xbc\x78\x3f\x5f\x5d\xea\x6d\xd7\xc7\x14\x87\x74\x5c\xa1\x16\xe4\x2d\x7b\xcc\x02\x0b\x8a\x1e\xff\xc5\x2f\x64\xd7\x71\xeb\x69\xe0\x81\x66\xd5\xa9\x0a\x71\xd9\xcf\xfc\x44\xd5\x6b\x55\xe1\x81\x7b\xc6\xd5\xff\x6e\xa3\x23\xd4\xef\xff\xc6\x4f\x54\xdb\x6d\x0a\x4f\xd4\x4f\xb0\x0b\x1e\xe5\x74\x4e\x88\xd8\x18\xf5\xd7\xac\xc2\x7e\xaa\x66\x13\x90\x0c\x7f\xc8\x21\x77\x46\x59\xf0\xf7\xce\xcb\xe3\x0e\xe9\x1f\xb9\xfb\x1d\x19\x2d\x15\x06\xb4\x5e\xad\x73\x54\xdf\x49\x76\xfe\x7a\x75\x29\xab\xc7\x4c\x90\x58\xd5\x37\x4e\xed\xcd\xe8\xb7\xd6\x3b\x47\x56\x15\xcd\x69\xc5\x60\x7a\xd5\xc4\x89\xfb\x53\x5b\xda\xf5\xd8\x4b\x4e\x90\x1f\x73\xc1\x42\xed\xd9\x71\x7b\xff\x60\x7e\x72\x2a\xa5\x12\x67\x31\x9d\xd2\xf1\x2f\xed\x67\x1f\x5e\xbf\x6d\xbc\x7b\x2e\xab\x97\x2c\xda\x74\x77\x82\xcb\xe9\x4f\x78\xff\x49\x53\x56\xb7\x4f\x18\x37\xef\xec\x1c\xbf\xba\xd8\xf7\x5f\x1f\x0b\x48\x45\x11\x08\xfe\x72\xa7\xa4\xda\x1a\xe1\x55\x78\x0a\xd1\x60\xf5\x1c\xa6\x48\x8a\xb7\xf1\xbc\xfe\xc5\x88\x37\x99\x35\x38\x2c\x44\xa4\x8a\xf1\xaa\x10\xd4\x62\xb5\xdf\xfe\x5e\x31\x99\x38\x5b\x51\x9b\x7b\xb4\x88\x90\x9a\xe2\x25\xee\xfb\x22\x42\x6a\x8a\x97\xfc\xf5\x13\x5a\xce\x9c\x00\x17\xd8\x48\x5b\xd0\xc3\x67\xca\xdd\xbf\x59\xff\x41\x71\xff\x41\x91\x69\x69\x8e\x10\x2d\x2d\x96\xc8\x13\xb1\xb3\xb0\x94\x54\xf3\x0f\x7b\x56\x64\x08\x98\x93\x63\xdb\x93\x35\x35\xaf\x8e\x00\x48\x3c\x49\x23\x0c\xf4\x64\x85\x6b\x03\xa6\x4d\xfc\x65\xbf\xab\x98\x7f\xd8\x61\xa0\xdd\x00\x2d\xbd\x3f\xec\x05\x9e\x3c\xeb\xb2\x33\x44\x3f\x6a\xc6\xca\x4a\x5b\x08\x92\x93\xf4\xe4\x9d\x75\xe9\xa9\xdd\xdd\x55\x71\x01\xf9\x52\x28\x0b\xc8\x8a\x70\x5f\x7f\x2f\x35\xd5\x41\x90\x78\xfd\x10\xbd\x66\x47\x77\x31\xce\x12\x33\x4d\x59\x34\xba\x4a\xe9\xc7\x12\x2f\x67\xd7\xc6\x16\x2b\x8c\xa3\x6c\xcc\x7e\xa9\xb7\xf8\xa6\x74\x21\xd1\xdd\x8b\xe2\x7a\xcc\x5c\x20\x9d\x3c\x3c\x58\x4c\xa6\xc8\x51\x40\x69\xfe\x59\x8e\x29\x94\xeb\xd8\x7e\x2f\xd4\xb1\xa9\x77\x2d\xbb\x43\x14\xbb\xc3\x15\x6d\x2b\x80\x24\xa9\x89\x59\xcd\x6c\xe7\x24\x95\x82\xb4\x12\xdf\x28\x19\x65\x04\xbb\x65\x02\x4f\x20\xd8\x85\x9f\xcc\xf5\x40\x46\xf0\x1f\xa8\xc2\x0f\x3f\xa4\xe1\x32\xe0\xde\x6e\x3e\x5a\x51\xf5\x8c\x3e\xca\x7f\x2f\x3a\x95\x99\x2c\xfd\x63\x1a\x6c\x48\xc8\x12\xe6\x0b\xb3\xaf\xee\x55\x65\xae\x5a\x59\x61\xa6\xd5\x3d\xa7\xa8\x1a\x5d\xdc\x5f\x4d\x5d\x09\xfd\xa2\xf1\xd4\xec\xa5\xbc\x09\x76\xee\xed\x7b\x92\x90\x56\xf9\xa2\x04\x77\xc8\x2e\x3f\xe9\xdd\x97\xeb\xad\x47\x2c\xc0\x32\x21\xa1\x94\x17\x4e\xf2\xbb\xe3\x2b\x76\x67\x06\xbb\x90\xc8\x77\x85\x39\x62\xc8\x77\x63\x08\xbb\x30\x83\xc7\xf0\xb3\xfd\x0e\xba\xf0\xcc\x96\xe9\x02\xa7\xdb\xd3\x11\xdc\xe2\xe1\x38\xc6\x53\x6f\xc4\x4c\xfc\x64\xc6\x0f\xf2\x15\xdd\x4e\xc3\x21\xd6\x6e\x20\xa4\xbc\x70\x52\xbc\x30\xe8\x42\xac\x22\x20\xa3\xfd\x30\xf0\xcf\xb5\x7c\x54\xd7\x26\x81\x65\x72\xa9\x7c\x59\xdc\x52\x91\xc6\x65\x91\xdd\x4a\x05\xd7\xb5\xd2\x2e\xd4\x5a\x25\x9d\x18\x27\xa7\x22\x6b\x45\x37\xf9\x6f\x1a\x7a\xa3\x62\xfd\xab\xfc\x2a\x29\xab\x93\x5d\x25\x06\x95\x6e\x21\xc4\xeb\xa7\x1c\x91\xca\x16\x37\xc6\x4c\xe7\xd5\x9f\x11\x22\xb7\x17\x87\x9b\x81\x47\xf0\x95\x82\x07\x8e\x7e\x41\xf3\x37\xd3\x2e\xa8\xf8\xaa\x72\x86\x21\xb9\x4d\xa4\xbf\x93\xbc\x66\xf0\xa6\x3a\xcc\xf2\x76\x1d\x7f\xe8\xd1\x74\xcb\xee\x28\xda\x24\xd0\x05\xe3\xdf\xff\xfe\xb7\xbe\xc1\x49\x01\xfa\x81\x3c\xf4\x14\xf2\x2f\xf9\xd1\xa3\x79\x91\xbb\xb2\xf0\xd0\x0e\x6f\xd5\x6c\x42\xb5\x0c\x52\x3d\x19\x70\xa5\xa9\x9e\x4d\x83\x84\x6e\x44\x32\xb7\xdf\x25\xe1\x98\x4d\x5f\x49\x39\xa6\x6b\xaf\x24\x1d\x17\xcb\xae\x24\x1b\xb3\x8b\x44\xe3\x3a\xab\x98\x0b\x9c\x22\xdb\x8c\xe5\xb5\x84\xa5\xc2\xb7\x4d\x4e\x32\xb6\xe0\x0f\xbb\x4f\x22\x19\xed\xb0\x80\x34\x29\xdd\xaa\x3a\xd0\x1a\x16\x27\x11\xe2\x06\x7a\x3b\xad\x6a\x40\xfa\xb3\xa7\x42\x79\x20\x61\x95\x7e\xfe\xe5\x70\xa7\xea\x37\xc6\x57\x4f\x45\x75\x62\x56\x07\xbb\xbf\x8d\xff\x78\xef\x27\xcd\x77\xa2\x3a\x98\x77\x56\xfb\xf5\xe0\xd9\xd5\xcf\xef\xa7\x6f\x85\xa1\x1b\x03\x56\x89\x9c\xbe\xfb\xf8\xd1\x3f\x4c\x4e\xf7\x84\xb1\x18\xd2\x51\xfb\xfb\x23\xf2\x61\xfa\xeb\xbb\x63\x51\xa5\x24\xed\xed\xe8\xb4\x5a\x7d\xf9\xd7\x24\x16\x4a\x45\x3d\xc4\xad\xf1\x1b\x1d\xb1\x39\xfe\x0c\x65\x11\x70\x17\x91\x6d\x45\xf1\x6c\x59\x68\x5e\xa1\x47\x02\x6f\xdf\x69\x38\x4e\x53\xe8\x92\x90\xce\x64\xf6\xaa\x5e\xfb\x78\x78\x75\x28\x34\x9e\x98\xa6\x95\x46\xbf\x56\x3f\x34\x8e\x7e\xda\x6f\x2b\xfc\xb6\x07\xe8\x7b\xe8\xdc\x6f\x2b\x74\xee\x58\x86\x19\xbf\xba\xd8\xb9\x03\x74\x2b\xc1\x73\x67\xe8\x6b\x8b\x9e\x9b\x9f\xd8\x3f\x39\x7c\xee\x05\x12\xe8\xa3\x24\x60\x29\x8d\xd3\xb1\xbc\xb0\x83\x81\xda\x96\xda\xeb\x23\x19\x85\x94\x1a\x53\xb3\xe0\x0c\x6a\xd9\xce\xfe\xd8\x8b\x46\x2a\xd9\x0e\x05\xa9\x30\x03\xa9\x9e\x11\x0c\x0c\x0b\x0c\xd6\x37\xfd\xc0\xba\xa0\x1f\xb2\x96\x0c\xa9\xdc\xc5\x87\x5d\xb8\x40\xfa\x7c\xf3\x82\x5f\x94\xaa\x66\xd4\xe2\xff\x4c\x82\xc0\x28\x01\x45\x3f\xbd\x29\x3a\xeb\x82\xc1\x33\x38\x18\xb0\xbb\x0b\x64\x3e\x45\x78\x08\x31\xc5\x97\x86\xc1\x04\x4d\x12\x5b\xe6\x0d\x27\x3b\xb8\xa1\xa5\xfa\x50\xb6\x15\x12\x32\x3f\x88\xa6\x33\x62\x58\x14\xcb\x29\xa6\x18\x0c\xd4\xac\xd2\x05\xf7\x2a\x2c\xe0\xf8\xd9\xfe\x76\xc1\x97\x2c\x85\x05\x41\x65\x8d\xbd\xc9\xc0\x44\x31\xb4\x31\x99\x84\x4f\x71\xac\x1e\x5f\x6e\x81\x54\x0a\xb4\x42\xfb\x9d\x6d\x0d\x87\x47\x9c\xcc\xa8\x37\xea\x42\x8f\xc4\x2b\x54\xa4\xa8\x9e\x2f\x6a\xbc\x46\x43\xc1\xf3\x0f\x22\xcc\xb1\x3e\x8a\x09\x2a\xa7\x52\x55\xab\x53\xb5\xed\x96\x37\xfc\x4a\x35\xba\x5e\x22\xb1\x41\x90\x4c\x3d\xe2\x8f\x15\xa8\xec\x0a\x99\x86\x30\xc8\x17\xe4\x14\x9b\x4c\x0e\x48\x14\x72\x40\xa6\xd3\x94\xcb\x01\x99\xf6\x52\x2e\x07\xf4\x8b\xc6\xa1\x2d\x8f\xf4\xd4\xf2\xc8\x99\x5a\x1e\x19\x16\x8d\x63\x98\x1f\x47\xa8\x18\xc7\x14\x76\x61\x28\x1f\xc7\x80\x3d\x96\x8e\x63\x0c\xbb\x30\x47\xe6\x3d\x21\xbc\x43\xea\x66\x3b\x47\xcc\xdb\x5b\x56\xa5\x0f\xbb\xf0\xa1\x04\xc2\x1f\xdb\xfe\x2c\x8e\x51\x44\x58\x88\x14\x0b\x06\x74\x19\x34\xa2\x95\x21\x9b\xfb\x5e\xe8\x88\xef\x55\x2e\x4a\x59\xc9\x45\x36\xd2\x88\x5e\xa0\xe9\xd3\x6a\xa4\x32\x2b\x1d\x57\xb9\xc0\x2c\x74\xd0\x83\x52\xb1\x06\xb8\x64\x47\xa7\xeb\xd9\xed\x75\xad\x1f\xaa\x80\x8c\x63\x7c\xc9\xcc\x16\x0f\xe3\x18\xc7\xe6\x9f\xb3\xe8\x3c\xc2\x97\x11\xb0\xdb\x8d\x59\x47\x03\x8b\xaf\xb9\x9d\xd7\x60\x4f\x4a\x22\x8c\x36\x20\x54\x4d\x5d\x6f\x11\x3d\xfe\x12\x95\x77\x8f\x50\x92\x2b\x90\x97\x7f\xca\x84\x21\x59\xc9\x64\x9f\x8a\x90\x09\xd7\xdb\xc4\xf4\xe1\xda\x37\xd4\xab\x52\x3e\x67\x60\xa2\x9e\x73\xc6\xc4\x58\x26\xbf\x4a\x92\x8b\xc2\x29\x94\x9a\x86\xe6\x54\xa0\x58\x4d\xab\x24\x25\x2d\xf0\x2c\x88\xa4\xd0\x72\x55\x12\x9f\x65\x78\x09\x82\x28\x21\x5e\xe4\x53\x9a\xf2\x30\x44\x74\xfb\x19\x27\x7e\x2f\xab\x60\x13\x6f\x44\xa9\x1b\xf8\xfc\x19\x8c\xe7\xaf\x8e\xdf\x9c\x72\xa2\x73\xfd\xb9\x4d\xf0\x9b\xe9\x14\xc5\xfb\x5e\x82\xcc\x4a\x85\x55\x3f\x8c\x08\x8a\x0d\x66\x06\x80\xec\x73\x34\xa7\x2d\x8f\x94\x1a\xa6\x91\xae\x8a\x49\x9b\x68\x8d\x64\x18\x95\x39\xce\x5d\x48\x85\x6f\xbf\xa0\xf9\x01\x0b\xa4\x29\xb3\x6c\x92\x10\xbd\xca\x71\xad\x8d\x4d\x19\xc4\x52\x6c\x68\x53\xd8\xfc\x5a\x17\xf1\x56\x82\xe7\x11\xd2\x74\xd9\xbb\x0c\x06\x64\xdc\x05\xa7\xa9\x13\x26\x65\x8c\x82\xd1\x98\xb0\xda\x45\xe7\x44\x75\x4c\xe4\xe0\xb3\xed\x3e\xe0\x92\xfb\x50\x08\x7f\x82\x3e\x02\xfd\x8d\x58\xf1\x9d\x2c\x56\x49\x40\xca\x44\x2d\x6e\x71\x8d\xad\x48\x9d\x7a\x4a\xbc\xc1\xd8\xa5\x2e\x18\x7b\xc7\xcf\xe1\x09\xbd\xb8\x35\xdf\xa3\xfc\x6a\x17\x0c\x82\xae\x88\x4e\xf5\x94\xdb\xd3\x41\xba\x4b\xae\xaf\x5f\x04\x4e\x2b\xa0\x51\x66\x49\x53\xe2\x44\x7f\x45\xf5\x5f\xc8\x16\x94\x9b\x86\x99\x98\xb9\x33\x78\x61\xa5\xc4\x2a\xe9\x64\x5c\x2c\xb9\xfe\x25\x16\x75\x2b\xe7\xd8\xed\x0f\xa9\xaf\x77\x48\xa7\xf4\xe6\xa1\x94\xff\xed\x8f\xa0\xbc\xd6\xdd\xd3\xc1\xa3\x8b\x93\x35\x28\x74\xb0\x5b\xe8\x84\x04\x19\x09\x97\x33\xbc\xa5\x99\x27\x64\x1e\xa2\x42\xd7\x99\x0c\xa9\x2b\xcd\x06\xb4\x46\xf4\x0b\xd3\x35\xeb\x08\x41\x54\x46\x6a\x97\x48\x1d\xa5\xe8\x12\x15\x87\x29\x2a\xcc\xcc\xf1\xed\x86\x26\x5a\x34\x5c\xb5\x60\xd3\x37\x2e\x17\x77\xc8\x11\xc5\x64\x5d\x2f\xda\x5c\x9e\x4e\x54\x7f\xee\xed\x97\x0e\xaf\xbe\x11\xa7\xa6\x5a\xb1\xe0\xde\x72\xa8\xdf\x42\xa0\x22\x3a\x23\xe6\xdd\xda\x7d\xf8\x90\x93\xc1\x26\x67\xf4\xd3\x49\xb0\xb0\xd0\x4c\xb4\x4b\x01\xb2\x95\x52\xcd\xa9\x3b\x2c\x7f\xa1\x78\xeb\xbf\x86\x89\xca\xa3\xf9\xf4\x1c\x0b\x8c\x97\xb3\x84\x40\x42\xbc\x98\x24\x70\x19\x90\x31\xa4\x6b\x02\x38\x86\xcc\xf9\xd7\x50\x9a\xeb\x41\xa9\x50\x4b\x05\xc3\x79\x1e\x5d\x78\x61\x30\x60\x14\x8c\x66\xaf\x4e\x99\x5e\xb3\x58\x4b\x4e\xfe\x38\xd5\x39\xae\x7b\x6b\x9f\x56\xc4\xb1\x89\x37\x3b\xd5\x3d\x34\xf7\x4c\x33\xce\x45\xf1\xe2\xb1\x0b\xe1\x3f\x50\xeb\x74\x2a\x5b\x80\x4f\xeb\x2b\x03\x9f\x38\x9d\xd1\x29\xba\x22\x9a\xdb\xd5\xba\x19\x90\x54\xf5\xba\x71\x4b\xc1\x62\x0a\x15\x6e\x95\x61\x36\x27\x1f\x81\xcb\x61\x88\x57\x0c\xac\x4f\x17\xd1\xb8\xd2\xbc\x97\x9a\x20\xeb\x16\xe5\x42\xfa\x3a\x03\x64\x55\x2d\xa8\xab\xac\x93\x7b\xf4\x54\xb9\xd5\x2f\x15\x42\xeb\x08\x89\x3d\xf4\xaa\x52\xba\x28\x8d\x9e\xdc\x05\xe3\x49\x8c\x2f\x13\x16\x3e\x87\x2c\x63\x73\xde\x93\x91\x78\x03\x44\xbc\x20\xec\xc2\xff\x3b\x1d\x07\x09\xf4\xd3\x77\x07\x18\x25\xf9\x06\x80\x07\x8a\x36\x2c\x98\x86\x88\x6e\xa0\x3f\xc6\x38\x41\xe0\x45\x98\x8c\x51\x0c\x38\x42\xf6\xff\x13\xac\x81\xa0\xd3\x4c\x04\x5a\x3c\x91\x23\x3c\x4d\x2c\x48\xf0\x04\x91\x71\x10\x8d\xe0\x12\x45\x04\x2e\x63\x1c\x8d\xee\x89\xfc\xed\xd6\x16\x55\xa0\x2c\x3a\x4e\x8d\x5a\x2e\x92\xf6\x79\x52\x7f\x76\xf1\x5a\xb4\x28\xfb\xac\xd2\xbb\xf6\xc5\xc9\xcf\x1f\xab\xc7\x7d\x21\xb3\x79\xce\xea\x1c\xbe\x1d\xbe\xfe\xf5\xf7\xa3\x5f\xda\x2f\x85\x21\xc6\xb8\x7e\xac\x53\x6b\xba\x8e\x82\x6e\x7c\xf5\xdd\x78\xe6\x1b\x33\x9e\x39\xf9\x66\x8c\x67\x5e\xfd\x53\x8d\x67\x5e\xfd\x43\x8d\x67\x24\x10\x77\xa8\x61\x17\xc3\x5c\xfc\x0b\xcc\x58\x5f\xf3\xb0\xe5\xfb\x0a\x43\xfe\x32\xd6\xac\xf8\x02\xc5\xa1\x37\xdf\x2f\xa8\x1c\xe8\x58\xda\xfa\x02\xab\x1a\x36\x25\x6e\x47\x93\x1f\x39\xfd\x65\x31\x40\xf6\x78\x6d\x1c\xac\x42\xda\x9d\xdc\xf4\x66\xc5\x14\x26\xb6\xe0\x1d\xb2\xdf\xd9\x3e\x8e\x08\x25\x66\x15\x7a\xec\xc5\x3b\x38\x7d\x27\xed\x5e\x47\x81\x50\x31\x87\x66\xc5\xa2\x18\xe4\x44\x6a\x9b\x12\xa4\xc1\x1a\x64\x2b\xb5\xba\x18\x0a\x33\xdd\x62\xfb\x90\xf5\x85\x13\x2a\x92\xae\x2d\xf0\xd5\x39\xfa\x96\x22\xa8\x40\x48\x06\x15\x52\x3b\x07\xdc\xd2\x63\x82\x26\xd8\x3c\x14\x3a\xae\xbf\xde\xb0\x05\x11\x54\x7a\xb1\xa8\x74\x38\x1c\x22\x7f\x3d\x84\x2e\xed\x69\xaf\xa4\xb9\x08\x68\x79\xe0\x67\x31\x4a\x90\xcd\x3f\x29\xe8\xc8\x2f\x1e\x19\xaf\xd0\xda\x04\x16\x08\x42\x27\x9a\x12\xc7\x0f\x7c\x9a\x8a\xe8\x49\xf7\x2e\x83\x68\x80\x2f\x6d\x46\x35\x16\x27\x44\xa0\x14\x08\xea\x55\xcf\x6c\x4e\x8d\x16\x48\x23\x83\x34\x9e\x0f\x57\x8c\x63\x75\x2a\xb5\x18\x5f\x42\x60\xfb\x78\x80\xb8\xf0\x49\x00\xa2\x20\xe7\x1f\xe8\xe8\x28\x6a\x7a\xad\xaf\x10\xe7\xfa\xde\xfb\xf6\xcb\xb8\x62\x1a\x8b\x25\x35\x94\x5a\xd6\xa8\xc8\x5f\xfe\x45\xd9\xfe\xdf\xd8\xa7\x1f\x2a\xf4\x76\x54\xf5\x6a\x01\x39\x5b\x95\x85\x1e\xa8\x75\x14\x19\x6e\x8a\xb5\x60\x25\x87\x81\x8e\x55\x22\xec\x4d\x34\x74\xae\xaa\x9e\x8c\xf1\x2c\x1c\x30\xec\x77\x14\x1d\x65\xef\x32\xf1\xb4\x30\x0b\x88\xf0\xbd\xc3\xc4\x2f\xa8\xbe\x8e\x67\x55\x2e\xda\xb7\xa3\x33\xdd\xdf\x4a\x67\x3a\x41\x4c\x7e\xad\x60\x8d\x6f\x1c\x9c\xeb\x79\xea\x91\xe0\xb8\x75\x27\xcd\x72\xd3\x6e\xb6\xc4\xc1\x6f\x4e\x51\x9a\x10\xa1\x2d\xf6\x3e\x78\xc3\x9f\xd7\x9a\xcd\x96\x30\xbe\xcd\xfb\x94\x6d\x6a\xb7\x9a\xc2\xf7\xef\xa7\xef\x57\x3b\xae\x30\xba\xce\x93\xd4\x2c\xb1\xd9\x10\xbe\xfe\x32\x9d\x4a\xc7\x75\x5d\xb7\x62\x81\xf1\xde\x71\x6a\x3f\xff\xf6\x64\xfe\xf6\xd9\x53\xa1\x7d\xd9\x53\xce\x33\x3a\x13\xf7\x5d\x12\x7d\x7c\x7a\x21\xd4\x66\x7d\x4c\xfd\x3e\x4e\x7f\x79\x7a\xf4\xb2\x7e\x3a\xfa\xa0\xf0\x96\x78\x2b\x51\x14\x64\x3e\xde\x65\x3d\xbc\x1f\xaf\x7e\xa5\x6c\x81\x04\x8c\xf8\x75\xc0\x54\xe7\x0a\x42\x31\xed\x67\x77\x77\x17\x22\x78\x0c\x6e\x1d\xe4\xb4\x08\xbf\x0d\xb8\x2a\x46\x41\x2a\xe6\x9a\x8c\xb3\x26\x45\xba\x0c\x81\x0f\x54\x72\x31\x92\x9f\xa1\xab\x49\x18\x25\x69\x20\xc7\xee\xc3\x87\x97\x97\x97\xf6\x65\xcd\xc6\xf1\xe8\xa1\x5b\xad\x56\x1f\xb2\x77\xc5\x6f\xa6\xf6\x03\xb2\x41\x67\xca\x25\x99\x3a\xf8\x22\x40\x97\x4f\xf0\x55\x17\x8c\x2a\x54\xe9\x7c\xdc\xba\xac\xa7\x61\x10\xf2\xa0\xc6\x91\x34\x06\x67\x42\x62\x7c\x8e\xba\x60\xa4\xa6\x7e\xfb\x38\xc4\xd2\x90\xc7\xbc\xf2\x5b\x3e\x7e\xc3\x55\x57\x7b\x11\x44\xc8\xf7\xa6\x5d\x30\x62\x3c\x8b\xa4\x6a\xbe\x65\xe5\x0f\x38\x88\x8a\x6a\x8b\x91\xdd\xd4\x23\x63\x35\xb6\x1b\x74\xc1\x78\xd9\x01\xa7\xe3\xef\x34\xc0\xb1\x1b\x3b\x8d\x1d\xd7\x6e\xec\xb4\x76\x6a\x13\xa7\x0e\xcd\x8b\x9d\x9a\xdd\x6e\x79\x35\xbb\xd6\x02\xf6\x87\x2e\x6d\x75\xc7\xee\xd4\x77\x5c\xbb\xe9\xf8\x35\xdb\xa9\xef\xd8\xb5\x06\x34\xed\x7a\x7d\xc7\xb1\x1b\x75\xfe\xa9\xb5\xd7\xb0\xeb\x75\x60\x7f\xd8\x2b\xe0\x56\xa1\x6e\xb7\x5a\xd0\xb0\xab\xe9\x1f\xfe\xbb\xd3\xb1\x3b\x0e\x38\x27\x4e\xdb\x6e\xd5\xec\x66\x03\x9c\x26\xb8\x76\xbd\xed\x39\x35\xbb\xd6\x06\xfe\x97\xf7\xda\x82\xea\x7e\xd3\x76\x5b\xb4\x56\xc3\xae\x76\xc0\x49\xff\xd9\x5b\x6f\xb4\xc1\xfa\xf2\xd6\xc6\x40\xc7\x07\x35\xbb\xd5\xf6\xab\xf4\x57\x97\xce\x08\x9a\x76\xd3\x61\x63\x86\xd6\xde\xda\x34\xa1\x03\x4e\xdb\x76\x6a\xbf\xb9\xae\xc4\x6d\x54\x8c\xad\x0b\x49\xeb\xbf\xd0\x4a\x94\x89\x22\x36\x32\x15\xbe\x29\xf9\x48\x4e\xa3\xdd\xb2\xb9\xd4\xcb\x92\x36\xfe\x65\xf4\xe7\x4f\x4b\xeb\xcf\xb5\xec\x90\x32\x1b\x24\x61\xc6\xe5\x7c\x59\xd8\x1f\x35\xb6\x74\x71\x5f\x8b\x8f\x6c\x8c\x9d\x1b\xc7\xe2\x4f\xfd\x6b\xd7\x3c\xac\xcb\x04\x97\x97\xba\x13\x2c\x9a\xfe\xd2\x31\xeb\x3f\x16\xd1\x4f\x3c\x68\x7d\x61\xdc\xdf\x87\x41\x92\xcc\x90\xd0\x53\x54\x3c\xe6\x3c\x64\xbe\xd5\xb3\xf2\x59\x18\xb0\x95\xb2\x5f\x53\xd7\xa5\xa0\x62\xac\x46\x30\xbe\xb3\x40\xf2\x72\xfa\xe6\xe7\x22\x61\x95\x06\x1f\xc3\x14\xd8\xb3\x88\x0b\xe8\x06\x79\xff\xa3\xd7\x68\x18\x22\x9f\xc0\xe7\xcf\x70\x2f\xfd\x6c\xfb\x38\x4a\x48\x3c\xf3\xc9\x22\xe1\xe8\x3d\x99\x11\x01\x6d\x78\xe3\x35\x3b\x19\x7b\x13\xbd\x77\x8d\x6c\xf0\xf9\x31\x1d\xc7\xf8\x6a\xbe\x7c\x5f\xa6\x06\x2f\x08\x1c\x9c\xbe\xfe\x04\xe3\x10\x79\x91\x3d\x8d\x31\xc1\xb4\x03\x6e\x74\x7f\x34\xb4\x7d\x2f\x0c\x37\x07\x6f\xa6\x2f\x58\xd0\xdb\x08\x6e\xcf\xc5\xe2\xb2\xd0\xb2\x2b\xc1\x86\x0b\xc7\x25\xcb\x04\x2a\x92\x51\x08\xf3\x21\x6d\xc4\xd3\x2f\xb4\x76\x49\x45\x35\x4f\xb8\x48\x50\xc6\x21\xd3\x6d\x51\x8b\x7b\x33\x11\xc3\xb2\x31\x32\x0e\x92\xca\x72\x0d\xb1\xcc\xb0\x06\xd2\x4b\x6f\x73\xd5\xe3\x9c\x3a\xcf\x02\x2c\x3b\x4b\x80\xc2\x04\xb1\x26\x62\x89\x2a\xb0\x38\x4e\xde\xfd\xc5\x90\x2d\x10\x05\xe4\x5a\x57\x7c\x6d\x12\x01\xcf\x74\x88\x00\x48\xa5\xfd\xef\x51\xea\x55\x24\x5d\xf1\xec\x20\xff\x8c\x4c\xb2\xa9\xd9\xca\xca\xa2\x3f\xa2\x11\xdb\x4a\xb1\xfe\x74\x4c\xcf\x57\x96\x40\x51\x79\xa1\x82\x89\x05\x9c\x14\xcf\x82\xc6\x22\x41\xc7\xb1\x37\x37\xe3\x34\x0d\x5a\xf5\x11\x04\xf0\x23\xc4\x8f\x20\x78\xf0\xa0\x02\xb8\x17\x9c\xe5\xdf\xee\x05\x67\xc5\x01\x9d\x10\xb3\xaf\xa1\x47\x34\xdd\x67\x7a\x20\xe9\x80\xcf\x28\xd0\xf8\x1e\x31\x71\xe6\x08\xc8\xd5\x29\x4c\x48\x93\x42\xb6\x05\x46\x42\x3c\xa2\x11\x8d\x9b\xe5\xe7\xed\x2a\xec\x0c\x21\x53\x7a\x97\x12\x73\xe5\xa0\xed\x34\xdb\xfe\x9e\x62\x28\xe7\x68\x4e\xb9\x04\x14\x0d\xd4\xb9\x59\x52\x7b\xd1\x12\x11\x6f\xe8\x69\xe6\xf9\xf5\xe9\x82\xd8\x6c\xbe\xda\xe9\xf2\x19\x6f\x1f\xa7\x79\xfc\xf3\x2d\x58\x60\x44\xb3\x49\x9f\x3b\x05\x64\x68\xdb\xe4\x11\x3f\x7d\x3c\x40\x15\x78\x0c\x47\xa8\x87\x29\xfb\x7c\x44\x29\x5c\xa6\xa2\xd6\x0d\x61\xa8\x43\x3a\xaf\x97\x02\x52\x7a\xbd\x6c\x72\xc6\x7f\xe9\xd1\x19\x90\xd7\xa8\xeb\x44\x06\x82\x9c\x4d\x80\x46\xac\xc7\xa2\xd8\x82\x05\x56\x38\x99\xee\x95\xee\xd7\x34\xc6\xd3\x64\xa1\x27\xd2\xc8\x06\x1e\x5b\x80\x15\xa7\x40\x72\x02\xce\x74\x40\x7b\x84\xc8\x01\x8a\x83\x0b\x34\x60\xde\xab\x4f\x63\x3c\x39\xe4\xa9\xb1\x4b\x00\xbb\xb6\x3f\x94\xc6\x3e\xa6\x07\xbf\x20\x48\x9d\x62\xb5\xa5\xcb\x51\xb1\x44\xfb\x7c\x6d\x7a\xf6\x3e\x9e\x4c\x71\x24\x51\x87\xfd\xc6\xe5\x6c\xcd\x7a\x5d\x2c\xc7\xfb\x49\x62\xc1\x02\x2c\x66\x16\xe6\x71\x96\xcf\xe3\xea\xc9\xce\x1f\x2f\xfe\x3a\xd4\x8c\x9f\xfc\x6b\x2a\x8c\x73\x7f\x6b\x9c\x1f\x04\xc7\x87\x3f\x89\xf6\xe3\x8f\xd4\xca\xe3\xa9\x3f\x1b\xbc\x3b\xf9\x2d\x10\x26\x4e\xf9\x45\xf7\x4a\x5c\xf2\xc6\x4a\x31\x17\x64\xce\x94\xf0\x58\xd7\x72\x59\x95\x85\x58\xa5\xdd\x17\x48\xc9\xca\x70\xc3\xbf\x2a\x65\xeb\xdc\xf6\x5a\x35\xcb\xdb\x91\x75\xff\xa1\x80\xe4\x52\x02\x6b\xc1\x48\x7f\x4f\x45\xc0\x8e\xdb\x16\x8a\x88\x51\xc4\x41\xb7\xd9\x72\x85\xa0\x1b\xf1\xe7\xb5\x86\xeb\xb6\x14\x96\x3b\x24\xfa\x6e\xb9\xf3\x6d\x59\xee\xc4\xd1\xb7\x62\xb9\x43\xa2\x7f\xa8\xe5\x4e\x7e\x62\xff\x24\xcb\x9d\xfc\x57\xc6\x6f\x46\x99\x2d\xc2\x4b\x34\x11\xa9\x11\xfc\x48\x7e\x3f\x4e\x71\x12\xf0\xbc\xe7\x46\x8c\x42\x8f\x04\x17\x52\xdd\xc1\xc4\xbb\x4a\x75\x01\x0e\xd2\x4c\x5b\x92\x44\x5f\x47\xc2\xa8\x45\x50\xff\xf5\x2c\x29\x69\x12\x83\x97\x5f\x4b\xf6\xa8\x5c\xfe\x81\xd5\xa1\x16\xd8\x49\x44\x91\xbd\xd7\xb6\x63\xe4\x0d\xa4\x11\x7d\x21\xd5\x90\xd1\x29\xff\x8e\xec\xb8\x62\x4a\xe3\xf2\x41\x2e\xf6\xd0\x6f\xc8\xbe\x5f\x31\x2b\xc2\x6c\x47\x59\x61\x59\xbd\xa3\x52\xc1\x94\xf5\xc9\x51\xe6\x3b\x96\x74\x01\xf3\x88\x4b\x2a\x8b\x97\xac\x0c\x3c\xe2\x25\x88\x24\x5d\xe8\xc5\x91\xc9\xff\xff\x74\x6d\xd1\x55\x7a\x7e\x58\x61\xff\x1e\xce\x7a\xe4\xcc\x9e\x4d\xd5\xe6\x46\xc2\xb1\x74\x21\x30\x8d\x37\x53\x69\x88\x10\xd1\x68\xe8\xf0\x67\x53\x1d\x1e\xc7\x02\xf5\x90\x07\xf8\x32\xda\x76\xd0\x07\xf8\x32\x2a\x3d\x6c\xda\xa1\xce\xc0\x15\xf2\x5f\x28\xe0\x17\x52\xef\x7f\x62\x81\x56\x36\x07\x14\xa5\x76\x74\x06\x89\xbd\xe1\x30\xf0\xd9\x59\x31\x58\x4a\x7d\xbc\xa5\x0b\xa0\xaf\x8c\x7f\x24\xa4\x43\x7d\x2f\xba\xf0\x92\x62\x52\x94\x79\xd9\xae\x8c\xf4\x96\xe8\x51\x61\x8a\x3e\x8f\x53\x94\x9d\x56\xab\x21\xcc\xf9\x33\xe3\xcf\x1d\xa7\x51\x13\x86\x84\x0c\x23\xce\xd2\x44\xf5\xf3\x17\xad\xcb\x17\x07\x42\xc3\xf5\x61\x54\x14\x71\x69\x1a\xad\x1a\xc8\x89\xac\xf3\x23\x0d\x43\xbb\xf1\x97\xbc\x41\xbe\x86\x1b\x40\x17\xe7\xc6\x9a\x4c\xe5\xfa\x48\x86\x91\x4e\x68\x10\x60\x39\xba\x4e\x48\xcc\xec\x0e\x9e\x3c\x2c\xd4\x50\x65\x85\x62\x8b\xfc\x6b\x5a\x28\xaf\xb8\x12\xc9\x87\x5d\x8a\x34\x92\x05\x40\xba\x44\xa4\x38\x61\x00\xa4\x17\x23\xe9\x39\x2a\xe9\x2b\x2c\x21\x6b\x5a\xee\xae\x83\x55\xf4\xc5\x2f\x5f\x54\x61\xae\x91\x7e\x1c\xf4\x4b\xc4\x34\x11\x34\xa9\x15\xd0\x3d\x2b\xe9\x9e\x32\x82\x9d\x61\x51\x44\xef\x40\x78\x00\x86\xfe\x16\x43\x7e\x9b\xf3\x2d\xb1\xab\x29\x6d\x4b\xaf\x29\xad\x74\x21\x5a\x99\x10\xd0\x19\xbd\x39\x15\x88\x55\x4d\xed\x70\xf9\x2c\x5b\x9d\x02\x9a\x28\xb6\xd3\xb9\x17\xd0\x43\x77\x7d\x36\x4f\x31\xf1\x42\x7e\xcc\xb4\xcf\x66\xb8\xc5\x4b\x3e\x8e\xa2\x57\x4c\xa0\xdd\x85\x82\x98\x26\xf0\xb5\x9d\x66\x8d\xaa\x74\x4b\x07\x25\xa3\x2f\x65\x25\x67\xf7\x8c\x2f\xa3\x10\x7b\x03\xb6\xbe\x25\x8e\x11\x27\xf9\x67\xd3\x6d\xde\x4d\xdd\x27\xb8\xc7\x64\x80\x23\x99\x8d\xf4\x7a\x29\x89\x2f\x52\x90\x59\x9e\x73\x6d\x5d\x05\xe4\x41\x6e\xf9\xbe\xf2\x1c\xae\x97\x3c\xf4\xc5\xa9\x74\xe4\x36\x51\x0b\x8f\x60\x7a\xd7\x58\xdf\x8b\xec\xf8\x57\x13\x59\x10\x68\xa1\x32\x46\x06\xdf\x04\x9b\x25\xb0\x0b\xbe\x9d\xee\x9d\xca\x43\x80\xd5\x4b\xf7\x48\x51\x6f\xc6\xea\x2d\xf7\x42\x3f\x11\x7c\x29\x71\x71\xa8\x47\x83\xf7\x6e\x14\xa4\xc8\x48\x90\xbf\x9d\xb9\x8d\x5e\x57\xab\xef\x13\xca\x29\xd2\xd3\x6d\x68\xec\xfc\x0d\xfb\x52\x28\xa8\xa0\x38\x9a\x8d\x75\xb3\xd8\x4f\x5f\x7c\x59\x0f\x52\x94\xfb\x05\x16\x56\xe2\xc7\xb1\xec\xe1\x1f\xb5\xb0\x1c\x5e\x81\xe1\x84\x2f\xb0\xb8\x05\x89\xe5\xfe\x61\x8b\x9b\x41\xed\x17\x5b\xde\xc2\x70\x8d\xff\xa8\xe5\xdd\xf3\x49\x70\x81\x60\x7f\x49\x14\x7d\x81\x25\x9e\xdd\x68\x89\xa5\x69\x69\x64\x02\x9f\xd5\xdf\x17\x04\xc9\x45\xa4\xf6\xf5\x58\x91\x2b\xdc\x8a\x45\xb5\x70\xe3\x2e\x0b\xac\x99\x49\x40\x42\xd4\x05\x64\x1a\x47\x17\x28\xbe\x08\xd0\xa5\x6c\x87\xca\x43\x5f\x0e\xf2\x7e\x42\x76\x8c\xb1\x9e\x6e\xb9\x3c\xdc\x09\xe5\x81\xe3\xa8\xd0\x39\x6a\x0b\x50\x5b\x9d\x93\x3f\xf6\x62\xfd\x0c\x51\xf9\x28\x6d\xf6\x49\x9a\xff\x5f\x0b\xb8\x87\xa9\x40\x6e\xa5\x8d\x5f\xf4\xcd\x80\x32\xbb\x03\xc3\xad\x56\xa7\x57\xb7\x25\x04\x12\xce\x2c\x29\x5a\x76\x28\x8c\xb6\x29\x3d\x82\xdb\x45\xab\xef\xa7\x12\xd4\xe1\xc8\x79\xdd\x7a\x37\x6b\xba\x86\x40\x4c\x3b\xd2\x34\x4f\xbe\xa1\x05\x46\xbf\xb4\x58\xbb\x8c\x3f\x82\xdb\xd6\xf5\x47\x28\xae\xe9\x45\xc1\xc4\x23\xa8\x0b\xf7\x8a\x6a\xfa\x55\x2e\x4f\x8f\x92\xa9\x17\xa3\xa8\x30\xe6\xa3\xef\x74\xc1\xf8\x57\xb3\x4e\xff\xbb\x2d\xd1\xbb\xa0\xcb\x2b\xbe\xed\xce\xef\x9d\xce\xf1\xf1\x33\x3f\x6a\x89\xc6\x35\x4f\x61\x03\xff\xd6\x9e\x1d\x1f\x57\x07\x1f\x44\x95\x3e\xa4\x22\xfc\x76\xbb\x2e\x94\x8c\x4c\xf8\xf3\x56\xad\xd3\xaa\x89\x9e\x5f\xf2\xe7\x8d\x4e\xbd\xd9\x12\x3d\x3f\xe2\xcf\xdb\xed\x56\x43\xf8\xfc\x98\x0f\xb2\x96\x9c\xce\x7e\xc7\x83\x3f\xe6\x9e\x30\x76\x4d\x3a\xdd\xb7\x83\x78\x3e\xfa\xf8\xf4\x37\x61\x4a\xac\x73\x56\xe9\xaf\x4e\xf4\xe4\xe7\xcb\xbd\x8b\xf0\xa3\x30\x78\x4d\xda\xdb\xfc\xaf\x93\xdf\xa7\x68\x5a\x3f\x10\x55\x7a\x95\x56\xba\xfc\xeb\xd8\x7f\xdf\x27\xaf\x84\x89\xa4\x4e\xd2\xc5\x4d\x06\x8d\xce\xf9\x47\xb4\x23\x84\x8c\xc3\x6c\x07\x9a\xde\x9b\x67\xb3\x9d\x9d\x13\x51\xa5\x83\x74\x72\xce\xab\xe7\xa7\xc7\xa8\xfe\x56\xb8\x97\xaf\xd3\x4a\xe7\x1f\x0f\x9f\xbf\xe8\xbf\xfd\xe9\x2f\x51\xa5\x17\x3a\x4a\x8e\x3d\x85\x82\xde\xa3\x24\x4d\x40\xe6\x5d\xb8\x8c\x6c\xfc\x5e\xa6\x08\x1e\x85\xb8\x8f\x58\x9d\xdf\xdf\x9c\xca\xfc\x9b\xf0\x64\xe2\x45\x03\x56\x0b\xb5\x64\x0e\xc9\xc3\x20\xe4\x0d\xbd\x7a\x2a\xf3\x49\x4c\x10\x21\x41\x34\x4a\x58\x35\xff\x17\x99\x8b\x67\x18\x44\xe7\xac\xca\xe5\xdb\x3d\xbd\x33\xf4\x3c\x5a\x46\x67\x28\xa9\x5f\x09\x12\x4e\xfc\x15\x2a\xd8\x89\x2a\xf0\x2e\x17\xaa\x05\x3e\x8e\x9e\xcb\xb2\xff\xc0\x22\x28\x09\x53\xac\x9e\xa2\x2b\xd5\x8d\x1c\xc0\x2e\xec\x45\xbd\x58\x25\x8b\xf4\xf3\xa1\x3e\xde\x45\xdc\x09\xeb\x55\x94\x3a\x37\xe9\xa6\xb7\x4f\x2a\xe6\xc0\x8e\xdf\xa8\xa9\x2f\x5c\x60\x70\x97\x8b\x45\x5b\x9a\x76\x0a\xd2\x44\x9a\x37\xa1\x71\x4e\x8a\xec\x86\xb5\xc4\x1d\x65\xa9\x6a\x41\x9f\xa7\x14\xaa\x64\xc6\xbb\x74\x19\x8d\x87\xb2\x7b\x87\x43\x4f\x17\x8c\xec\xe8\xca\x2a\x2e\xe0\xa7\x0b\x4b\x6a\x58\x74\x50\x64\x0b\xc8\xc7\x31\x8d\xf1\x55\x20\xf7\x21\x5b\x0c\x87\xa1\x08\x9d\xb1\x1c\xa7\x0d\x96\x1f\x4a\x3c\x0b\x35\x06\x92\xe2\x21\x9d\xa1\xbc\x66\x0d\x96\x1f\x48\x4e\x2c\x5e\x38\x1c\x8a\xa6\x74\xc6\x42\xb9\xca\x2d\xc7\x32\x0c\x46\xc5\xe3\xc8\xb0\xaa\xe6\x58\x86\xc1\x68\x8b\xc1\x84\x58\x63\x24\xf4\x0a\xd0\x19\xc5\x0b\xda\x98\x60\x0c\x67\x72\x36\xf5\x4d\x01\x9b\x7a\x14\xd9\x6f\x52\x3b\x26\x7b\x82\xe9\x2b\x5f\x83\xf3\xbe\xe1\x56\x65\x35\x72\xac\x8e\xac\xca\x77\x17\xfe\x75\x26\x03\xd9\x53\x8f\x8c\x8b\x5d\xf8\x5d\x07\x1c\xd7\x6e\x75\xf6\x3a\xd0\x81\x2a\x38\xf4\x3f\xc7\x76\x1d\xa8\x41\x0b\x32\x7f\xf6\xac\x92\x90\xba\xcc\x4a\x10\x05\x24\xf0\xc2\xc2\x58\xdf\x31\x26\x8c\x0b\xd9\xa9\xa9\x1c\xa8\x55\x3a\x95\x8c\x8f\xd1\xec\x68\xcb\x6e\x18\xff\x93\x5a\x6e\x16\xf4\x34\x98\xc5\x1e\xaf\x68\xb7\x14\x9d\x95\xb9\x31\x37\x78\x60\xc9\x69\x7f\x7f\x17\xa7\x3d\xf9\x7e\xdc\xbf\x85\xe3\xbe\x22\x56\xf3\x83\xd8\x0f\x0b\x9c\x0e\x7d\xba\x64\x8e\x74\xd0\xac\xca\xbc\xb0\x4a\xdc\x05\xa3\x21\x0d\x6c\xb1\x2a\x52\x44\xf6\x48\x1d\x83\x4a\x13\x69\x24\xbe\x47\x79\x26\xbb\x7d\xb7\x28\x23\xed\x46\xe2\x1d\x5d\xd4\xcb\xed\x63\x8c\xf2\xd2\xd5\x30\x88\x34\x3c\x4f\xaf\x9c\xc2\x5d\xa6\x65\xce\xaa\x15\xd5\xba\x72\xf5\x1a\xa3\xd5\x6a\xfa\x79\xf4\xef\x60\x2a\xee\xad\xce\xc5\xbd\xa3\xc9\xd4\x6d\x57\x6f\x3a\x3a\x15\xd9\x84\x1a\x76\x53\x8a\x20\x57\xa6\xc4\x2a\xde\xcd\x0e\xb5\xed\x5a\x53\x0f\xde\x74\x6a\xf2\x7d\xea\xd8\xad\xb6\xd6\xbc\x78\xcd\xbb\x99\x98\xde\xa4\xf4\x36\xaa\xa6\x37\x1b\x59\x58\xa1\x1b\x4e\xa5\xf8\x78\x94\x99\x8b\xfb\xf7\x4e\x46\xfb\x14\x69\x41\x51\xb9\x63\xc4\x41\xf8\x6f\x3e\x47\x3a\xa3\x2d\x79\x8c\xd8\x9a\x6e\x25\x14\xda\x4e\xcf\x73\xff\x4e\x4c\xd3\xc9\x18\x4d\x50\x66\x96\x3e\x1a\x7f\x35\x11\x5b\xd9\xb8\x0a\x24\xa7\xba\xb6\xeb\x99\x1b\xd2\xd8\x3e\xfd\xa9\xa2\x74\x58\x0a\x60\x17\x5e\x94\xb3\xbb\xcb\x92\x60\x92\x0f\x15\x53\x9d\x8c\x52\x27\x1a\xea\xd6\x1a\xe8\xe3\xb2\xc6\x6c\xdb\x44\xf1\x54\xf9\x75\xdf\x50\x12\x7b\xae\x2f\x89\x3d\x8d\xec\x49\x99\x54\x50\x59\xc9\x25\x10\xd6\x49\x86\x07\x0b\x58\x2c\x94\xcf\xe7\x4b\xb0\x2a\xab\xdf\x2a\x02\xc6\xf3\x48\x5b\xf5\x4d\xb0\x7e\xf0\x8b\x4c\x67\xd1\x05\xcc\x04\x22\x2c\xd3\x2e\x8b\x86\xa9\xdb\x40\x2a\xb1\x2b\xb2\x09\xc8\x4a\x4e\x78\x17\x9b\x45\xc6\xa8\xc0\xc5\x89\x51\xa1\x6e\x5d\xd7\xe6\x61\x1b\x13\xa2\x43\x7d\x30\xcc\x1f\xa5\x0f\x91\xfd\xee\x58\x6b\xcf\x52\xef\xb8\xd8\x34\x18\x86\xd3\x72\x8f\x33\xbc\x38\xf0\x76\x78\x76\xfd\x2e\x18\x69\x46\x33\x82\xc1\x80\x07\x40\x2f\xcc\xd1\x98\xa4\xb9\xad\xe0\x31\x18\x03\x2f\x3e\x37\x80\x49\x9a\xe9\x03\xe6\x22\xc1\xf1\xbc\x8e\x11\xbe\xd8\xf9\xac\x3f\x23\x04\x47\x7a\xa6\x4a\xb0\xba\xa4\x0b\x55\xd3\x41\x64\xc1\x6b\x6d\x73\xec\x45\x62\xbe\x40\xf3\x85\xe5\xc0\xd7\x57\x24\x37\x91\x37\xdc\x7c\x03\x56\x66\xf7\x5e\xc7\xa6\x03\x74\x42\xc2\xac\x22\xc1\x6d\xa0\xc2\xeb\xe3\x19\xd1\x82\x0a\xe1\x46\x15\xaa\xe4\xf2\x85\x8b\xe8\x79\x8f\xba\x8b\xbc\xdc\xd7\x03\x5d\xac\x21\x8e\xed\x1c\x69\xe6\xc3\xcd\x4a\x12\x7c\x44\xea\x9c\x88\xf9\x72\x3b\xbb\x79\x8b\x96\x74\x82\xb5\x7a\x92\x06\xe3\xa8\x37\xda\xc2\x60\x1d\x2f\xd3\x60\x1e\xed\x4e\x4b\xe8\x5a\xf9\x34\x75\xad\x6c\x39\x35\xa1\xdd\xc6\x47\xfe\xdc\x6d\x36\x1c\xe1\xf3\xb7\x99\xeb\xa6\x53\x6f\x2b\x2c\xfd\xfe\x92\x85\x96\xf8\x1e\xf5\xf0\x7b\xd4\xc3\xef\x51\x0f\xbf\x44\xd4\x43\xc9\xc9\xfc\xf9\x7b\x98\x9e\x6f\x2c\x4c\xcf\xb3\x6f\x26\x4c\xcf\xcf\xff\xd4\x30\x3d\x3f\xff\x97\x84\xe9\xf9\x6d\xe3\x6a\x16\x29\x50\x7e\x52\xc5\xea\xf1\x06\x83\x20\x1a\x31\xe5\xe3\xf4\x0a\xaa\xba\x91\xec\x54\xa6\x4c\x59\x66\xee\x67\x21\xee\x7b\xc2\xf0\x75\xb0\x8c\x37\x98\xd5\x12\xf5\x2b\x1b\x74\xd6\xc1\xeb\x99\xdc\xa6\x24\x6b\x9e\xd5\xd9\xa6\xf1\x83\x20\x46\xbe\x94\x66\xce\x9a\x4f\x6b\x09\x3a\x10\x59\xe7\xfd\x11\x95\x0e\xdb\x57\x90\x78\x0c\x96\x41\x7e\xc8\x3c\x94\x05\xa2\xdd\xc6\xe2\x3b\x0d\x62\xf2\x2c\x32\x9f\xf1\xb0\x31\x3f\x45\x14\x87\xaa\xb8\x16\x8d\xc0\xed\x82\x85\x92\x53\xa5\xbf\x14\xa8\xfa\x35\x25\x78\xdb\xa6\x26\xf9\xe1\x87\x95\xef\x05\x9c\xd0\x6a\xf8\x12\x75\xec\x28\xd8\xc6\x61\x5d\xd3\x59\x5d\xd3\x51\x3d\x58\xb7\x21\x2e\xed\x88\xac\x69\x4e\xbb\x31\x8d\x94\x34\x2d\x88\x05\x0a\xda\x61\x1a\x94\xbe\xd6\x69\x6f\xbd\xd8\x82\x40\xc6\xcc\x99\xf7\x1c\xd9\xda\x47\xf9\x4d\x42\x8a\x4d\x62\xb7\xb2\x7c\x73\x58\x3c\x2d\x71\x2c\x90\xcd\xb3\xf9\x51\xc5\x36\xfb\x63\xe4\x9f\x23\x85\x7c\x0e\x47\xfb\x63\x2f\x1a\xa1\xae\xc8\xd9\xbb\x40\x05\xe1\xd9\xc7\xb3\x18\x2d\x02\xa7\x0a\x7c\x4c\x7e\xcf\x56\xc4\xb3\x43\xef\xe3\xbc\xa2\x05\x35\xe9\x14\x8f\x63\x3c\x09\x12\x64\x53\x96\xa8\x47\x6c\x64\xb6\x5a\x4d\x46\x96\x21\x93\x32\xc7\xec\x83\xd3\xaa\x56\xce\x2a\x36\x19\xa3\xc8\x24\x76\x3f\x88\x06\xf4\x46\x6d\xd6\x3b\x9d\x96\xf0\xf2\x14\x32\xdd\x88\x6c\x3f\x48\x3a\x88\x7a\xa7\xb5\x31\x84\x4e\xa3\xde\xd4\x1f\x41\x74\x83\x11\x6c\x2c\x93\xdb\x72\xd3\xd5\x69\x54\x5b\x82\xd5\x69\xb5\xaa\x9d\xb6\xfe\xd8\xc8\x6d\x8e\x2d\xb7\x85\x8d\x56\xfa\xa9\x59\x77\x04\xa3\x74\xdd\x7a\xab\xa3\x3f\xca\xf8\x6e\x46\xb9\x5c\xcb\x4e\x5b\x34\xca\x4e\xcb\xe9\xd4\xf4\x47\x89\x89\x82\x0e\x9a\x7a\xcc\x64\x4a\x6a\xd4\x8d\x42\x44\xef\x96\x15\x91\xd9\x85\x4c\x4c\x29\x27\x58\xb2\x6e\x34\xec\x93\x45\x3d\xfe\x7e\xa3\x1e\x55\x56\xc8\xa2\xde\x10\xd9\xba\x37\x95\x99\xb1\xa8\xab\x68\xfb\xae\x0a\xcc\xdf\x45\xbd\x91\xed\x7b\x53\x5a\xb8\x8b\xfa\x8a\xb7\xef\x4b\x29\x08\x16\xf5\x75\x28\xef\xea\x9e\x73\x96\xb1\xf5\xa9\x3c\x4b\x21\x61\x0c\x24\x79\x14\x72\xd7\xdf\xd8\xfe\xed\x7e\xc5\xc4\xeb\xe2\x12\x39\xa7\xed\x17\xb7\x99\x29\x89\x5e\xd9\x4f\x63\x6f\x44\x67\x57\xd2\xf9\x78\x0f\x6d\xba\xa0\xdc\x8f\xb6\x71\x4b\xc9\x89\xd5\xe7\xa5\x5d\x28\x4b\x38\xdb\x0a\x1d\x6d\x47\xe9\x90\xd5\xaf\x0a\xbb\x0e\x64\xd0\x96\x95\x9b\xa5\xe2\x91\xee\x6e\xa2\x0b\x31\x45\xf8\x97\x2e\x06\x92\x9b\x97\x8a\xa0\x5e\x9a\x95\xb2\xf0\x84\xfd\xbb\x4c\x37\xbe\xf4\x20\xaf\x0b\x51\x04\xcc\xbf\x47\xb6\x75\xf7\x7d\xa6\x06\x22\x21\x14\x5c\xd8\x6f\xd5\xc6\xf5\xd2\x37\x8f\x74\x15\x64\xa9\x69\xec\x09\x37\x62\x7f\xa9\xa1\x79\xf2\xf8\x75\xd7\x85\xa7\xdb\xea\xd2\xa6\xf6\xaf\x33\x14\xcf\xf7\xc3\x00\x45\xe4\x38\xc6\x17\xc1\x00\xc5\x25\x34\xa0\x01\xdb\x52\x99\x77\xa4\xd6\x10\x06\xf6\x9b\xd3\x52\x5a\x32\x49\xb6\x31\xed\x30\x13\xab\x33\x58\x20\xa5\x2b\x5d\x5d\xdf\xe6\x38\xf2\x08\xf3\xf5\x26\x6e\x2c\x19\x29\x60\xbd\xdc\x00\xa1\xa9\x87\x9d\x77\xf9\x2f\x42\x72\xa2\x52\x18\xa0\x76\xb5\xb2\x5e\xdd\xdb\xd1\x6a\x6e\x83\xad\xf5\x44\x7f\x33\xc2\x53\xd0\xd6\x5b\x6e\x8d\x25\xd3\x6d\xbb\x2d\x46\x54\xa7\x34\x80\x69\x84\xd8\xf7\xc2\x31\x4e\x52\xed\x7c\x9a\x4b\x9b\xfe\x4a\x4f\xab\x4d\x9f\x30\xab\x94\xcf\x9f\xc1\xe8\x75\xbb\xce\x59\x71\x3d\xd9\x33\x7b\xe2\x11\x7f\x6c\x3e\xfc\x5f\xc7\x6d\x99\x8f\xbb\xff\x63\x9b\x8f\xbb\x6e\xa3\x57\xdd\x69\x9c\x7d\x76\x7b\xd5\x9d\xfa\x59\xaf\xba\xd3\x39\xfb\xdc\xab\x3a\x67\x8f\xd9\x47\xf6\xe7\x71\xa5\xf2\xa9\x76\x7d\xff\x61\x45\x15\xfd\x24\x24\x72\xcd\x4b\xe4\x5d\x04\x23\x8f\xe0\xd8\x4e\x50\x7c\x11\xf8\xe8\x2d\x8e\xcf\x51\x6c\xc7\x68\x14\x24\x94\x20\x42\x29\x67\xa1\x25\x22\x41\x36\x8e\x66\xd3\x81\x47\xd0\x10\xcf\xa2\x41\x39\xc9\x56\x6a\xbe\x14\x25\xc4\x0b\xc3\x20\x1a\x29\x84\x21\x99\xda\x80\x30\xbd\x0c\xb1\x71\xc4\x92\x0c\xf9\x4c\x5e\xa0\xdf\x2b\x2d\x46\xda\x21\x57\xf4\xee\x02\xe1\xf9\x8a\x58\xc3\xb2\xc5\xf1\x71\x44\x62\x1c\x86\x28\x86\xc7\x60\xfa\x38\x4a\x70\x88\xec\x10\x8f\x4c\xe3\x15\xba\x04\xfa\x18\x45\x04\x82\x04\xbc\x0b\x2f\x08\xbd\x7e\x88\xc0\x8b\x06\x70\x19\x84\x21\xf4\x11\xcc\x12\x34\x80\xcb\x31\x8a\xc0\x0b\x43\x20\x5e\x3f\x61\x2a\x15\x32\x0e\x12\x98\x7a\x23\x04\x5e\x8c\xc0\x0f\x71\x82\x06\x36\x9c\x20\x04\x59\xa6\x44\x3f\xf6\xec\x30\x88\xce\x1f\x1e\xbf\xdd\xb3\x0d\x96\x91\xf2\x87\x1f\x20\xb2\x71\xf4\x86\xad\xfa\xea\x37\x13\x31\x1d\xc2\xea\x00\xf7\x97\x83\xf3\x3d\x7f\x8c\x06\xac\x6b\x3c\x1c\x86\x41\xc4\x46\xb6\xda\xee\xc9\xcc\xf7\x51\x92\xac\x7d\xa5\x2d\x6f\x73\x32\x85\xdc\xa8\xcd\x14\xc1\x7a\x00\x96\x4d\x85\xa5\xe1\x31\x0d\x96\x0b\x08\x06\xb3\x38\x88\x46\x90\xee\x11\x5c\xb2\x4d\x02\x0e\xc1\xa9\xaf\x86\x61\x81\xc8\x54\x74\x43\x2e\x27\xa0\x4e\x86\x14\x2e\x07\xd8\x67\xe2\x53\x7b\x84\xc8\x21\xa7\x7f\x9e\xcc\x9f\x0f\x4c\xc3\x9b\x4e\x8d\x75\xb1\xdd\xd0\xac\xd8\x09\x22\x7b\xd3\x69\x5a\xd5\x1c\x92\x8a\x05\x33\x7b\x46\x41\xad\x1f\xa2\xf7\x7e\x8c\x3c\x82\x5e\x63\xcc\x1e\xd9\x3c\x81\x97\x99\xbf\x68\x38\x16\x17\xdd\x0a\x3a\xcb\xc4\x8c\x05\x56\x60\xd6\x80\x20\x5a\x1e\x76\xe5\xa9\x60\x2a\x6d\x74\x09\x6f\x5e\xbf\x30\x0d\xc3\xda\x44\x59\x31\x1a\x56\x6c\x1c\x07\xa3\x20\x62\xb2\xe6\xf5\x0a\xfc\x51\x66\x92\xa0\x38\xc6\xe9\x8b\xde\x60\x70\x78\x81\x22\xf2\x82\x62\x9c\x08\xc5\x14\xf1\x7a\x03\x63\xdd\x9e\x40\x7d\x8e\x33\x45\x83\xf1\x30\xb9\xb4\x3f\x24\xeb\x61\x65\xd6\xcb\x8c\x99\x5a\xdd\xcb\xaf\xa6\x0c\x45\xae\x97\x21\xa2\xe0\x5a\x26\xde\x8f\x37\x40\x71\x52\xe8\x58\x94\x2f\xc6\x09\xdf\xbc\x9d\x74\xf7\xba\x60\x70\xc5\x9c\x6e\xec\x60\x9d\xab\x77\x03\xb1\x93\x52\xd1\x5d\x99\x18\xdf\x4e\x67\x47\x0f\x86\x69\xa4\x98\x6f\x87\xcc\xa7\x68\xe3\x58\xc8\x4a\xbd\x5a\xcf\x61\xde\x59\x42\xaf\xc9\x0c\xc1\xc7\x14\xf1\xec\x38\x3c\x65\xb9\x1d\x44\x03\x74\x75\x34\x34\x8d\x0f\xde\x85\x97\xae\x47\x05\x1e\x2b\x2e\x31\x6f\x30\x2f\x71\x7d\x89\x0a\xb2\x67\xd1\xe2\x32\xdc\x5c\xb2\x52\x6d\xc1\x12\xe6\x17\x87\x25\x46\x14\xd8\xcd\x12\x04\x5b\xa1\x32\x21\x57\x11\xba\x8b\xdb\x5f\x4b\x4b\xb1\x89\x8b\xb5\x27\xb8\x7a\x0d\x62\x08\x22\x82\xe2\x08\x11\x58\x8a\xf3\x80\x51\x05\x36\xec\x4d\xa7\xf4\xfe\x89\x67\x51\x44\x11\x77\x10\x2d\xee\x9f\x09\x1e\xd0\x0b\x48\x6b\xac\x05\x94\xa3\x19\x51\x9c\x6f\x95\x04\x0e\xad\xe9\xae\x4c\xf5\x94\xde\xda\x97\xa8\x0f\x1e\x9f\x55\x1f\x65\x97\x11\x1a\xf0\x2b\x76\x67\x18\xc4\x09\x81\xfe\x1c\xbc\xb5\x4b\xaa\x38\x00\x5f\xb6\x85\x91\xf8\x02\x2b\x5c\x0e\xb1\x81\x94\xb5\x3a\x85\xfd\x31\xf2\xcf\xf1\x8c\x00\x19\x23\x88\xd1\x14\x77\xa1\x28\x37\xb3\xb1\xde\xc6\x6f\x28\x4e\xd2\x9b\xd6\xa8\xda\xae\xed\x34\xf2\x93\xbb\xb6\xc0\x6d\x74\xaa\xf5\xee\x1a\xc2\xb5\x60\x13\xe7\x18\xb3\x04\x41\x42\xe2\xc0\x27\xeb\x58\x9c\xd8\x03\x53\x6c\x6d\xfe\x4e\x2b\xbb\x65\x2a\x41\xb8\x12\x2c\xca\x1a\x1d\xb0\x8e\xbc\x28\x77\xd0\x70\x99\xf0\xdd\x6c\xb4\x6a\x6e\x8b\x7f\xaa\xb7\xea\xfc\x53\xbd\x53\xab\xb5\x44\x29\x27\x62\x6e\xb6\x58\xef\xd4\x85\x39\xd0\x30\xb7\x8a\x6c\x38\x4e\x53\xf4\x38\xe0\xc1\xa8\x9a\x55\x47\x68\x54\xe9\x73\x9b\xcb\x96\xdb\x11\xa6\xab\x48\x58\x0c\xa6\x56\xa7\xb9\xf7\xd7\xe5\xd1\xd3\xe4\xbd\x48\xa2\xe3\xf1\x38\x4d\xfd\x17\xef\x2e\x9e\xd7\xab\x78\x4f\x54\x67\xc6\xeb\x9c\xc4\xfb\xa7\xcf\x5a\xf3\x03\xa1\xd8\x35\xe4\x31\xa8\x3a\xbf\xcd\x7e\x7e\xfd\xfb\xde\xe4\x85\x30\x33\x86\xda\x04\x74\xca\x27\xdb\x68\x77\x6a\x0a\x6e\x66\xf0\xdd\x8c\xec\xdb\x32\x23\x1b\x7f\x2b\x56\x64\x83\x5b\x31\x22\x8b\xbf\x36\x1b\xb2\xc1\x7f\x87\x09\xd9\x05\x8b\xc3\x3e\xc4\xf1\xa5\x17\x0f\x5e\xa3\xa1\x00\xc1\xf4\x79\xe8\xf7\xa5\xa9\x88\x1c\xcb\x8c\x0a\xcc\xc8\x0b\xed\x99\xc8\xd2\xb3\x4a\x61\x4a\x81\x6c\x22\x0f\x91\x86\x53\x73\x28\x2f\x2e\x88\x49\x3b\x4d\x25\xa7\xd3\x52\xba\x21\x9c\x3a\x9b\x4c\xb3\x28\x41\x53\xaf\xc0\x67\x26\x27\x63\x9d\x69\xe9\x7d\x84\x06\xeb\xb4\x5f\x6c\x52\xc8\x94\x44\x29\x63\x1e\x2f\xf4\x4c\x5b\x10\x51\x66\x80\xd9\xdb\xc7\xdb\xf9\xa1\x5e\xc1\x2e\x5c\xac\x50\xff\x45\x97\x07\xb2\x53\x67\x1e\xe5\xb6\x0d\x82\x84\xa2\x57\x99\x9f\x1d\xbd\x98\x73\xd6\x58\x8c\x8d\x91\x25\x45\x99\xa5\x21\xfa\x5e\x60\x6f\x10\x44\xb2\x14\x48\x03\x56\xeb\x3c\x88\x64\x5d\x5e\x2c\xbb\xa4\xdc\xd2\x00\x1e\x83\x31\x8d\x83\x89\x17\xcf\x0d\x8a\x05\x24\xaf\x5d\x71\x60\xce\x76\x56\x52\x6b\xae\x03\xf2\x1f\x0a\x41\x7e\x52\x04\xf2\x97\x4b\x90\x97\xd4\x38\x4a\xad\x29\x70\x8a\x66\x7b\x46\xba\x5d\x94\xf0\xcc\x76\x85\x7e\x5e\x2c\x28\xfd\x42\xd7\x8d\xfe\xbb\x98\x27\xfb\x92\x4e\x87\x7e\xe6\xfe\x6a\x16\x18\x74\x70\x06\x4f\x04\x1f\x13\xe3\x4c\x26\x97\x3f\x96\x5b\xa2\xc2\xca\x11\x98\x2b\x0e\x4a\x6a\xa1\xf9\x41\x65\x12\xc9\xfc\x11\x27\x8a\x1a\x6c\xa0\x5d\xb8\x94\x9c\x25\xc9\x9b\xfb\xb0\x0b\x7d\x7d\xae\x78\xc6\xcf\xe1\x0f\x3f\x00\x91\xfb\x5c\x57\x2c\xe8\xcd\x2c\x20\xd2\x45\x3b\x4f\xf7\x2e\xa0\x7b\x97\x28\x51\x4d\xcf\x3b\xeb\x82\x31\x09\xa2\x60\xe2\x85\x5c\x32\x7b\x21\x9b\x21\x5c\x29\x3c\x3e\xf2\x18\x6e\xe1\x17\x38\x36\xc7\xb2\x44\x2f\x79\x2f\x5f\x19\x06\x40\x43\xb9\x1b\xeb\xc2\x13\x70\x5f\x76\x90\x53\x18\xed\x82\x2f\xd2\x53\xc0\x91\x3a\x81\x61\x2e\xb4\x7a\x1e\x7f\xeb\x61\x7f\xd8\x54\x76\xe9\x63\x7f\x58\xda\xd2\x6a\xf0\xc8\x83\x20\x99\x86\xde\xbc\x0b\x46\x10\x51\xd6\x7e\x67\x18\xa2\x2b\x1d\xc7\x3d\x3c\xf5\x7c\x16\xd2\xb5\xc0\x79\x4e\x15\x61\x07\x36\xb4\x63\xe9\x34\x47\x74\xef\xe9\xea\x1e\xeb\x38\xe6\x96\x5b\x9b\x7c\xb2\x96\x6d\xc6\x36\xb4\x5f\x16\xda\x27\x48\xdd\xf8\xa0\xc4\x34\x37\xa5\xde\x95\x55\x56\xbd\xed\x36\x9a\x9d\xaf\x83\x55\x17\xa4\x68\x28\x62\xd5\x97\x5c\xb7\x94\x31\xc6\x3c\xcc\x71\x7d\x30\xf8\x79\xe2\xfc\xda\x10\xda\x2c\x51\xd6\xdb\x78\x52\xff\xf5\xd5\xf9\xcb\xd9\x4e\x55\xc8\xf3\xfa\x5a\x0c\x6b\x52\x48\x4a\xb2\xb8\xff\x6a\x14\xe6\xeb\x18\xe7\xe4\x20\x50\x16\x33\x60\x15\xf2\xb2\x56\xc7\x8e\x36\xe1\xa7\x72\x70\xde\xce\x6c\x5e\xc3\x40\x84\x71\xcc\x2c\xf0\x71\xb2\x0a\xa9\xcc\xdd\xf4\xce\x20\xf5\x55\x19\x48\xed\x0b\xb1\x79\x29\x60\x17\xdc\x70\x77\x2d\x97\xaa\x76\x5c\xe9\x09\x29\x94\x4b\x49\xa5\x5a\x5a\x72\x29\xf7\xe0\x70\xff\x2a\x3e\x4a\x4e\x85\x21\xd4\x3d\xad\xb3\x35\xfb\x2e\x0c\xfa\xb6\x84\x41\xe1\xb7\x22\x0c\x9a\xdd\x8a\x30\x28\xf8\xda\x84\x41\xb3\xff\x0e\x61\xd0\x30\x93\xf4\x48\x53\x30\x67\x15\xc4\x92\xa2\x41\xf6\x58\x9a\xa0\x79\xac\x2f\x4b\xba\x90\xc0\x7c\xee\x7a\xf7\xd2\x8b\x38\x88\xa6\x33\xca\x7e\x86\x1a\xec\x89\x20\x39\xd8\xb5\x05\x48\x60\xd2\x20\x19\x57\xbf\x90\x30\x61\xce\x81\x0a\x01\xd7\x2a\x23\xce\x6a\xcb\x59\x66\x7a\x67\x0c\xe5\xb9\x19\xb3\x40\xff\x4c\x7e\x1a\x28\x3c\x94\x58\xc2\x45\xb9\x87\x12\x93\x03\xca\xdd\xc6\xfa\xb0\x0b\x53\x33\x12\x61\xe5\x81\x96\x22\xb0\x6f\xa7\xc1\x66\x99\x64\x87\x61\xf1\x0b\x3a\xab\xdc\x83\x5d\x11\xfd\xa3\x08\xa9\xc5\x72\xde\xc0\x2e\x68\x1a\xc1\x64\xd4\x82\x89\x6c\xe2\xc5\x23\x44\xf8\x3e\x09\x69\x2b\x0b\x7a\x17\xc2\x3e\x6f\x0a\x7c\x6a\x77\x52\x99\x78\x70\xe9\xd3\x35\x12\x42\x2f\x51\x18\xe4\x50\xc6\xa4\xe1\x76\x1a\x77\x46\xee\xbd\xfd\xbd\x0c\xb1\x36\x11\xd3\x7b\xc7\x65\xda\x10\x08\x6d\xae\x2d\xb8\xff\xa1\x4c\x1b\x47\x5f\x9e\x68\x54\x2b\x33\xa5\x34\x25\x27\x1a\x9d\xb6\xd3\x12\x9e\x6d\x0d\xa2\xb1\x98\x20\xf4\xbe\x13\x84\xdf\x16\x41\x38\xfb\x56\x08\x42\xef\x9f\xa9\x1d\xf4\xfe\xf9\x04\x61\x60\x3f\x0d\xcd\x7b\x8e\x08\xa1\x85\x3c\x79\x33\x33\xc7\x64\x96\xb1\x42\xcd\x04\xa7\x26\x27\x68\x22\x92\xaa\x2c\x28\xc9\x97\xe2\xe7\x03\x35\xa5\x39\x2e\xa4\x34\x2f\xd6\x29\x4d\xa5\x66\x53\x3a\x89\x51\x11\x49\x7c\x05\xbb\x10\x9a\x2c\xab\x92\xe0\xe9\x5c\xf9\xf4\xc3\xf2\xa9\x1c\x37\x4f\x94\x6e\x50\x7d\xf3\x83\x36\xe5\x7a\x59\x48\xb9\xe6\x5d\x70\x94\x1a\xda\xd4\xf3\x46\xa1\xec\xcb\x29\xd5\x08\x3c\x86\x4f\xd7\x20\xf7\x59\xf7\x75\xf4\x64\x1e\xec\xc2\x40\x4e\x08\x53\xfa\x76\x24\x7f\x1c\xe6\xe9\xee\x99\x82\x4e\xa6\x50\x1b\xca\xe9\xe4\x3e\x7b\x2c\xa5\x93\x27\xeb\x8a\x53\x9d\xfb\xc7\xcb\x48\x60\xd9\xa9\x96\x45\x39\xd0\x33\x39\x14\x68\x04\x58\x93\x13\x29\x55\x7d\xa9\xad\xfe\xcd\x8a\x34\xce\x1a\x5a\xc4\x58\x43\xe6\xa5\x05\x13\x95\x79\x6b\x76\xf5\xa4\x22\x80\xe3\x8a\x39\x31\x2b\xb4\x67\x65\xa4\x2f\x16\xb7\x63\xc1\x44\x50\x62\xc0\xcb\xb1\x14\xc4\x82\xbe\xb9\x41\x1f\xaf\xaf\x83\x42\x6b\x3a\x2d\xbb\x9b\xfb\x66\x6c\xc1\xa5\xaa\x43\xfa\xbc\x88\xbb\x48\x38\x77\x71\x65\x17\x3a\xa5\xa5\xbc\x83\x08\x4b\xc2\x86\xe8\x3a\x6d\x76\x5e\xdc\x6c\xae\xe9\x4b\x6d\x6f\xd5\xb4\xf9\x0f\x7a\xcd\xe7\xba\x38\xd2\x56\xfd\x08\xd4\x7f\x59\x29\xe5\xda\xa4\x8d\x35\x8f\xd4\x72\x08\x9d\x3b\x3f\x03\xec\xa1\x98\x83\x2e\xd9\x1a\xe4\x68\xe6\xbe\x79\x55\xe4\x03\x87\x59\xb5\x79\x51\x35\x16\xd3\x98\x82\x6e\x61\xf4\x56\x8a\xad\x67\xe6\x4c\xc6\xee\xe6\x4b\x16\x0a\x5c\x99\x5a\x0f\x20\x0d\x0a\x6c\x41\xa0\x11\xcb\x25\x07\x67\xc4\x82\x19\x53\xd8\xf9\x65\x0c\x79\x75\x37\xfe\x58\x8e\xf6\xf4\xe3\x22\x2e\x08\x72\x22\x88\x40\xc4\xe3\x25\x46\xe8\x12\xf6\xe2\xd8\x9b\x33\x1a\x99\x6e\x57\xf5\x11\x60\xf8\x11\xc8\x23\xc0\x94\x52\x8f\x7b\xf8\x2c\xff\x76\x0f\x8b\x02\xc9\xe4\xc6\x15\x99\x68\x25\x72\x61\xac\x41\x17\xca\xd7\x61\xbf\x98\x39\x14\xb2\x01\x8b\xa9\xc7\x10\x44\xa0\x0e\x76\xc5\x8c\xb6\x7a\xb1\x6c\x5e\x52\x8b\x28\xd2\x8b\xe9\xd2\x1c\x9b\x98\x0d\xb1\x0b\x06\x66\xf4\xf3\x6a\x3d\xe6\xee\xc6\x6b\xee\xf3\x9a\x37\xe4\xca\x16\x1f\x2d\xa8\x37\xea\xce\xd7\xa1\xf4\x15\x19\x46\x14\x88\x34\x96\xd2\x09\xa9\xb1\x34\xe6\xee\x9e\xa9\x80\x01\x8c\xf7\xb5\x97\x17\xa3\x30\x78\xf2\xea\xfd\x81\x30\x84\x71\xb0\x2a\x70\x58\xef\xcd\xd7\x88\x80\xb6\xa4\x47\x59\xf2\x2c\x05\x21\x9a\x23\x32\x23\x78\x0c\x35\xb7\x0a\x72\x1b\x13\x4e\x65\xf2\x6c\x5b\x92\x2a\xc9\x6a\x9b\xfe\xa2\x4d\x59\xea\x52\x8f\x53\xc3\x3c\xdb\x92\x82\x32\xcd\xc7\x18\x63\x81\xc5\x14\x64\x2a\xb2\x7d\x59\xbe\xea\xe1\xea\xf8\x42\x78\xbc\x96\xc4\x0b\xe4\x56\x14\x53\xde\xb4\x2c\x47\xef\x60\xb5\xe9\x29\x6d\xfa\x5f\x08\x21\xda\xe4\x54\xf2\xce\x38\x2f\x7c\x56\x99\x25\xe1\xb3\x2e\xcc\x64\x97\xb3\x9a\x10\x0a\x74\xb2\x31\xa6\x49\xd6\x64\xdb\x9a\x65\x58\x93\x8a\x5f\x57\xd2\xab\xd1\x1d\xaf\xc9\x73\xb1\x6d\x9f\x0a\x6e\x95\x56\x0a\x32\xc7\x7d\xc5\xbc\x40\x2f\xa1\x5b\x56\xed\xf5\x2c\x44\x5d\x30\xd0\x05\x8a\xf0\x40\x1a\xf0\x02\x36\xcd\x99\xb2\x45\x9e\x7a\x64\x5c\x6c\xb2\xc3\xf2\x28\xb6\x1c\xbb\xd9\xee\x40\xa3\x66\x57\x1b\x0d\xbf\x63\xbb\xb5\x1d\xc7\xae\xb7\x5b\xe0\x36\xec\x66\xbb\x0e\x6e\xcb\x76\x9b\x35\xa8\x3b\x76\xdd\x71\xa0\xd1\xb4\x9b\xcd\x1a\x38\x6d\xbb\xd1\x72\x77\xda\x76\xd5\x69\x41\xcb\xb1\x5b\xd5\xf6\x4e\xcb\x6e\x39\x2d\xe8\xd4\xec\x56\xab\x01\x55\xa8\xdb\x2d\xa7\xbe\xe3\x34\xec\xa6\xe3\x42\xcd\xb1\x3b\xcd\x9d\x46\xcb\xae\x57\x1b\xb4\xa9\xa6\xdb\xdc\x49\x9b\xaa\xd9\x9d\x8e\x6b\x57\xdb\x6d\x70\x6a\x76\xb5\x45\xab\xb6\xaa\x0d\x70\x6b\x76\xad\xda\x81\x4e\xdd\xee\x34\xc1\xb5\x5b\xf5\x1a\x38\x4d\xbb\x53\xef\x40\xcb\x6e\xd4\x5a\x50\x6f\xd9\xf5\x8e\x0b\x4e\xdd\xae\xb5\xa1\xe3\xd8\xcd\xda\x4e\xdd\xb5\x6b\xb5\x0e\x38\x2d\xbb\x5d\xab\xef\xb4\xeb\x76\xad\x05\x6e\xd3\x6e\x35\x9c\x1d\xc7\x6d\xda\xd5\x4e\x23\xfb\x5a\x77\xec\x96\x5b\x87\xea\x4e\xbb\x66\xb7\x1a\xcd\x9d\xb6\xdd\x71\x5a\x59\xa5\x1d\x5e\x69\xbf\xe1\xda\x9d\x56\x0d\x1c\xa7\x69\xbb\xf5\x3a\x34\x1b\x76\xa3\xd6\x84\x46\xdd\xae\xd6\xd9\x9c\x97\xab\xa6\xcc\x2e\x09\xb9\x44\x7d\x45\x79\x29\x56\x73\xf4\x15\x26\xc1\x29\x95\xab\x2f\x2b\x1c\x0c\x65\x5c\x46\x56\x72\xba\x8e\xb1\x8a\x50\xb7\x56\xce\xb6\x4e\x2a\xbf\xe5\x18\x8a\x56\x83\x25\xfd\x73\x9d\xa6\xdd\x28\x4c\xe3\xcf\x72\xff\xb5\x9d\xe2\x9a\x31\xad\x58\xb7\x65\x59\x00\xbf\xd0\xa4\x9c\x6a\xfd\x6f\x9e\x54\x01\xae\x82\xd2\x40\x5b\x12\x0a\x4b\x42\xba\x00\xe3\x6a\x63\x39\xc8\x30\x9d\xd3\x6a\xd8\x8d\x66\x1b\x5c\xa7\x6d\x37\x3b\x75\x7f\xc7\xb5\xeb\x9d\x3a\x38\x76\xa3\xed\xee\xd0\xd3\x5d\x07\xd7\x76\xab\xad\x9d\xb6\xdd\xa0\x38\xce\x6e\x54\xdb\x3b\x35\xbb\xea\x76\x76\xec\xd6\x4e\x83\x22\xc5\x1d\xd7\x6e\x74\xea\x3b\x2d\xbb\x5a\x6b\xec\x34\x6c\xc7\x79\xe9\xd4\x6b\x76\xa7\xed\x2c\x1a\xcd\xb5\x09\xb9\x36\x21\xd7\x26\xd4\xec\x6a\x6d\xc7\x6e\x01\x6d\xb2\xcd\x9b\x04\xda\x64\x93\x35\x59\xe0\xe3\xbc\xa5\x85\xa4\x16\xe7\xbc\xf8\x68\x01\xcb\x44\x70\x53\x7a\x38\xa5\x36\xa5\xc4\x6a\xa3\xd3\xa9\x09\x0d\xac\xb8\x2a\xad\x59\x6d\x34\x54\xa4\xa9\xdb\x11\x3e\xf6\xe5\x94\x6b\x64\xbf\x5b\xc8\xa5\xb4\x12\x73\xa9\x93\x72\xe5\x12\x72\x61\x69\x42\xae\x0d\xda\x5d\xa3\xdb\xbc\x9f\x0d\x8b\x13\x5a\x4c\x3b\x2f\xd4\xf1\x52\xd3\xec\xcc\xbb\x83\xa9\xa0\x15\x56\x0a\xea\x84\x5e\x09\xab\x11\xc9\x9d\x25\x98\x4b\x25\xcf\x6b\x43\x09\xd0\x80\x11\xa0\xb5\x0e\xfd\x8f\x65\xba\xf9\x17\xea\xd0\xff\x44\x21\x0a\x36\x2d\x3e\x63\x7b\x80\x86\xde\x2c\x94\x1b\x75\x2f\x75\xea\x72\xa3\xcf\x82\x50\xab\xb3\x28\xad\xf2\xdc\xc7\x51\x17\xee\xc9\x48\x6b\xbd\x5a\x78\x38\x64\x34\x7c\x57\xca\x1c\xe0\x28\xad\x60\xfc\xab\xd5\x71\xfb\x75\xa1\x05\x60\xda\xd4\x4f\x5e\x34\x08\xd1\xa2\xfe\x70\x38\x94\x56\x8e\xf4\xeb\x8e\x59\xcd\x83\xc0\x9b\x20\x82\xe2\x2e\xb8\xf5\x02\x8a\xdb\x6d\xcb\x5c\x56\x38\x0a\xaf\xcb\x1a\xc8\x11\x12\x46\x2c\x8d\x8e\x18\x49\x4d\x7a\x0a\x6c\xb5\x59\x42\x94\xaf\x83\x6d\xdf\xc2\x56\x7b\x19\x74\x89\x98\xae\xe3\xd6\x3b\xdb\x1b\x73\x3f\x1f\x1d\x9c\x1e\xbe\x7f\xdf\xff\x55\x6a\xcc\xfd\xde\x7d\x3e\x3c\x9a\x74\xfe\xfa\xf5\xbd\xf0\xba\xbd\x2d\x6b\x6e\x3c\x55\x69\x94\x48\xa1\x61\x95\x16\x7e\x29\xc4\x63\xb3\x05\x47\x9b\xaa\x26\xf5\x02\xcf\x42\x4e\xf6\x56\x3e\x71\x5d\xa6\x20\xe1\xf3\x53\x5d\xd3\x95\x45\x30\x0f\x51\x52\x11\x58\xd8\x4b\xa9\xdc\x89\xc2\xfc\x14\x33\xe5\xa8\x66\x92\x47\xc8\xc9\xfc\x5e\x7a\x64\x6c\x0f\x43\x8c\x63\xd3\xa9\x56\xe1\x21\x44\xa9\x54\x53\x43\x86\x9b\xa6\xa4\xcb\x02\xb1\xef\x80\x03\x8f\x81\xb6\xb2\xb3\xfc\xf1\xdf\x40\xe0\x01\x10\xe8\x02\x82\xff\xc0\x0e\xad\x41\xbf\xf0\x6b\x4b\x35\x79\xe9\xcc\x87\x37\xde\xdc\x82\x8d\x4c\x91\x5a\x68\xce\x58\x42\xb6\xff\x5b\x44\x9e\x86\x68\x48\xba\x30\x83\x7f\x43\x68\x56\xd3\x57\x14\xdb\xaf\x98\xf4\xcc\x82\xb0\x48\xa5\xe4\x6b\x45\x0a\x2c\xe5\x0d\xd1\xd3\x76\xb2\x00\x7d\x7f\x88\xd4\x5b\x6a\x28\x9f\xee\xe6\x19\x2b\xd2\x4f\x66\x08\xf1\xcf\xfb\x9f\x92\xeb\x9d\xfb\x9f\x52\x87\xcb\xeb\x3f\x35\x94\x27\x4b\xf9\xa2\xc1\x08\x91\x3e\x8e\x07\x28\xde\xa1\x9b\xa7\x8a\x97\x24\x5a\xf9\xcc\x5f\xb2\x00\x8e\xc6\x64\x12\x3e\xa5\x97\xb1\xcc\xf9\x35\x2b\x1a\x9b\x95\x15\x7d\x1f\xb4\x05\x14\x47\x85\x20\x09\xa5\x3c\xca\x56\xa0\x25\x33\x9b\xd4\x09\x0c\x3a\x28\x5e\x09\x58\x52\x03\x1a\x35\xc9\x7c\xca\x08\x0b\x6f\x10\x60\x1d\xef\xba\x54\x4b\xa9\xbe\x81\xf2\x65\x49\x3b\x32\xe0\xd1\x7f\x71\x49\x96\x0a\xe8\x82\x7c\xc9\x38\x73\xed\xd3\xb7\x1c\x5a\xb6\x1f\xe9\x21\x28\xea\x47\x95\x21\x4f\x6c\xe0\xc6\xdf\xdb\x32\x07\xb2\xdc\x6d\x89\x85\x40\xb9\x33\xa2\xed\x65\x19\xa2\x4d\x6c\x45\x7e\xff\x8e\xd5\x35\x05\x8c\xb1\xf1\xeb\xce\x7e\x72\xdc\xf8\xa3\xf6\xf4\x54\x04\xd4\x9c\xe2\xab\x3d\x7b\x51\x7b\x31\x79\xfa\xe2\xfd\xa1\x8c\xe2\x2b\xa6\xe6\xfc\x42\x6a\x4e\x41\x87\xa5\xb9\x9f\xe7\xd3\x02\xdf\xbd\x85\x7c\x7c\xec\x6a\xdd\x56\x32\x0c\x21\x11\x75\x6b\xc4\x6d\x28\xf6\xcb\x5b\x15\x8e\x95\x69\x52\x6a\xeb\x73\xb3\x98\xd9\x85\x21\xb3\xf5\xc6\x9a\xbf\x57\xca\x4a\x80\x9a\xcd\x96\xfb\x95\xb0\x56\x02\xd4\xf6\xf7\x1a\x79\x4b\xb9\x31\x7e\xee\x6a\x0d\xd7\x6d\xa9\xcf\xdd\x77\x33\xed\x6f\xc9\x4c\x5b\xc6\xf6\x7e\x75\x66\xda\xfe\x3f\xd3\x4c\xdb\xff\xe7\x9b\x69\x67\x24\x13\x56\x5a\x43\xcf\x60\x17\x02\xfb\xe4\x89\x22\xdc\x75\xb6\x71\xf4\x30\xc8\x30\x0c\x16\xa7\x51\xab\x4b\xd3\xa8\xd5\x57\x81\xb1\x2e\x05\x46\x4f\x8b\x15\xa7\x63\x08\x14\x81\x85\xa3\x0a\xfd\x25\xb5\xe6\x36\x0d\x77\xa0\xcc\xb2\xed\xa7\xc6\x57\xc8\x0c\x0a\x29\xe7\x94\x63\x08\x03\xb5\x16\x9e\x96\x81\x47\xbc\xe2\xfc\xf9\xa9\xbc\xab\x0b\x89\x99\x30\x1b\xb6\x59\x45\x9e\x93\x16\x38\xb5\x21\x7f\xc8\x88\x66\x16\x2e\xc9\x4e\x66\x7d\x0a\x85\x7d\x54\x2a\x40\x67\x46\x94\xda\x3c\x10\xb9\x2a\xb2\xea\x75\x45\xdb\x88\x51\xd9\x2d\x37\x84\x61\x61\x35\xed\x01\x4a\x48\x8c\xe7\xb2\x6e\x85\x21\xb0\x2d\xe8\x2d\x41\xd6\x02\xac\xc8\x99\x71\x6d\x01\xbb\x5b\xef\x8c\x2c\xd9\x6b\x97\xa1\x4b\x02\x21\xf7\xf0\xfc\xf0\xa6\xec\x83\x05\x27\x4f\x6e\xce\xc5\x1c\xce\xee\x5e\x7c\xdd\x6e\xb6\xea\x9c\x9e\x72\x1a\xb5\x0e\xfb\xd4\x6c\x76\x3a\x5c\xa4\x5d\xab\x75\x78\xb6\xf2\xfc\x4b\x4b\x1a\xab\x5e\x6b\xa9\x82\x2f\x38\x8d\x9a\x94\xc4\x4a\xa5\x7f\x6b\x01\xc5\x51\x82\x67\xb1\x8f\x4a\xe7\x89\x6b\xd5\x9a\x8b\x04\x62\xb9\x74\x6c\x6e\xb5\xd6\xb2\xc0\xad\x55\xca\xe4\x00\x80\xbc\x1c\x38\xd5\x5d\x95\xb9\x3d\x84\x41\xcf\x7d\x79\xb8\x2d\x2e\xc4\x4a\x15\xe9\x32\x95\x14\xc5\x76\xa7\x28\x62\x11\x6a\x41\x66\x93\x36\xc5\x41\x44\x5e\x7b\x83\x60\x96\x08\xa3\x0f\x89\xe4\x43\x89\x7c\x60\x31\x4a\xa6\x38\x4a\x82\x0b\xd4\x85\x7b\xb2\x3e\x27\x5e\x10\x11\x2f\x88\xf6\x92\x29\xf2\xc9\x6b\x8f\x04\x58\x51\x9b\x05\x8a\x51\x8a\xbe\x16\x61\x97\xa4\x19\xd3\x65\x2b\x84\x46\x28\x1a\x68\xb6\x2d\x1b\x1f\xb0\x55\x4c\x02\x16\x73\x1f\x0c\x82\xa7\xaa\x2b\x86\xc9\x6c\x8a\xe3\xa2\x0f\x71\x6a\x13\xd8\x05\xe3\x5f\xbe\xef\x17\xdd\x5a\x7d\x7c\x95\x42\x83\xab\x08\x21\x25\x93\x41\xcb\x56\x1e\xe3\x90\x04\x53\xf5\x68\x51\x94\x46\xf6\x92\xaa\x46\x69\x99\xe0\x01\x62\x61\xb1\x06\xea\x80\x58\x2c\x80\x76\x82\x7c\x52\xd0\x1e\xb7\xd9\x0c\x70\x74\x30\x4b\xb3\x1d\x80\x53\x95\xe9\x15\x64\x5a\x4e\x7c\x81\x62\xe5\xdc\xd2\x51\x47\xc8\x8b\x51\x22\x4d\xbc\xb6\x3e\xee\x92\xc3\x48\x7c\x2f\x44\xea\x35\xbe\xda\xbb\xa2\x35\x64\xa9\xb2\xb2\x92\x3b\x07\x05\xe0\x32\x8a\x83\xc1\x8b\x20\x2a\xe8\x56\xd0\xae\xba\xb2\x22\x02\xbf\x30\xa3\x72\x56\xe6\x65\xe7\xa7\x3a\x8b\x70\x83\xf9\x15\xb5\x0b\x2c\x10\x7a\x7a\x2c\x1b\x8d\x42\x1b\x2d\x58\xe0\xea\x03\x2f\x19\x77\xa1\x57\xb3\xa0\x59\x94\xdc\x97\x0d\x29\xf6\x2e\x9f\xb0\x17\x35\x56\xbd\xa0\x3d\x12\xf8\xe7\x7a\x0b\xe1\x2f\x72\x35\x21\xd8\xfd\x4f\x2e\xd2\x05\x53\x25\x3c\x4c\xa0\x48\x99\xa0\xda\x7f\x7d\xda\x50\x30\x1f\x4f\x91\xa9\x73\x80\x2f\x23\xe5\xf4\xe8\x94\x46\xcc\x40\x2d\x43\xa9\xf1\xa8\xef\x99\x4e\xab\x69\x81\x5b\xed\x58\xe0\xd4\x5c\x0b\xaa\x76\xbb\xa2\xda\x4f\xbe\x8f\xb9\x16\x56\x1b\xa8\x48\xd6\x46\xb6\x3b\xb3\xe9\x56\x63\x6e\x3b\x16\xb8\x6e\x95\x52\x28\xce\x56\x63\xce\x37\x20\x1d\xb3\x90\xb2\x94\x8c\x76\x9b\x89\x98\x9d\xb6\x05\x4e\xa7\x6a\x51\xac\x5d\x72\x06\xad\xb6\xe5\xd4\x9b\x56\xab\x53\x76\xc5\xb7\x83\x13\xd3\x69\xb2\xc5\xaa\x5a\xd0\x6c\x96\x5d\x6c\x87\xce\xb0\xd1\xb4\xa0\x5e\xff\xdb\xd6\xda\x33\x3b\x75\x0b\x9c\x56\x83\xee\x7b\x8d\xc2\x4c\xad\xe4\x34\xf2\xef\x7f\x99\x45\xf7\x4c\xa7\xd6\xa1\xfd\xb5\x28\x98\x34\xb6\x19\xf4\x4a\x03\x7f\xe3\xe2\xbb\x75\x97\xae\x5e\xdd\x82\xa6\xbb\xcd\x3c\xf2\xef\x7f\xa9\xc5\x6f\x52\x94\xd6\xa8\x5b\xe0\xd6\xdb\xdb\x8c\x39\xff\x7e\x99\xa5\x3f\x5b\xe1\xf9\xdb\xed\x56\xe3\xee\x78\xfe\x37\x65\xd8\x64\x51\x32\xf6\xbb\x64\x93\x75\x2d\x45\x3f\x49\x49\x77\xd5\xc3\x38\xf3\xf9\xdb\x7c\xbc\xe8\x18\xab\xc5\x78\x12\x51\x62\x55\x2a\x4a\xac\xae\x8a\x12\xab\x67\xd0\x05\x23\xe5\x94\x65\x76\x18\x19\xb3\xce\x1d\x28\x91\x89\xcb\xb2\xe4\x03\x14\x22\x82\x58\x03\x16\x44\x69\x33\x52\xbe\xbc\x4c\x4e\x36\x36\xbc\xa2\x06\x2d\xd6\x73\x21\xe8\x40\xa1\x85\xd2\x94\x27\x4c\xd2\x82\x58\x48\x77\x08\x7d\x89\x1d\x62\x9d\xe5\x2c\x91\x7b\xe8\x8c\x05\xcd\x4e\xff\xc5\xf2\xb8\xd9\x16\xc4\xe8\x6b\x9d\x51\x30\x04\x73\x6d\x56\x8b\x38\x08\xf4\x8b\x2a\xa0\xc1\x38\xc6\x97\x10\xd3\xf9\x3f\xe6\xff\x74\xf9\x6a\x3c\xe6\xff\x74\xd5\x6b\xe2\x87\xc8\x8b\xbb\x5a\xe9\xee\x68\x41\xf0\x38\x83\xf1\x88\xb7\xce\x91\x82\x3e\xc6\x5d\x43\x62\x85\x32\xb4\x9c\xfc\xac\xd6\xa8\x6f\x24\xe0\xaf\xb7\xe8\xaf\x05\xd6\xbb\x4c\xc6\xf7\x75\xa8\x98\x45\xea\xf1\x02\xbc\x9e\xa1\xe8\x9e\xf1\xc4\xb0\xc0\xf8\x85\xfd\x7d\xc9\xfe\x3e\x63\x7f\x4f\xd9\xdf\x63\xf6\xf7\x90\xfd\x7d\xc7\xfe\xfe\xf1\xc4\x38\x93\x2b\x70\xb0\x64\xab\x29\x2c\x22\xf8\x11\x1c\x54\x5b\xc6\xe2\xa0\xdc\x18\x3c\x11\x81\x70\x76\x31\x30\xf3\xce\x49\x10\x99\x39\x3b\x4f\xf6\x31\xc4\x23\xa7\x4a\xfb\x7a\x08\xb5\x8a\x05\x71\xce\x88\x53\x65\x80\x48\xcf\xde\xab\xd9\xa4\x8f\x62\xd3\x44\xf0\x90\xb7\x3f\xc5\x97\xa6\x83\x6a\x4c\x57\x66\x13\x7c\x1c\x23\x3f\x48\x02\x1c\x99\xb5\x4a\x85\x71\x8c\x60\xc0\x03\x88\x7b\xd1\x1a\x0e\x5c\x15\xed\x77\x5a\x9d\x7a\xed\xce\xc0\x61\x74\x53\x69\xb8\x05\xa5\xa2\xdb\x09\xfc\x64\xff\x4e\xa3\x05\x93\x98\xcd\xaa\xdb\x6e\x14\x90\x21\xac\xc3\x5a\xb5\xe9\xaa\x52\xea\x06\xdf\xed\x17\xbe\x52\xfb\x85\xf5\x85\x92\x68\x0e\xb2\x3c\xb8\x3b\xa7\xf3\x29\x32\xba\x60\xd0\x01\x04\x3c\x27\xe3\xc3\x0f\x09\x8e\xd6\x48\xf5\x4d\x12\xb1\x84\x47\x40\x82\xfc\x18\xc9\xd4\xa8\x44\x83\xc6\x5d\xf4\x79\x63\x6b\x8b\xfc\xe0\x6e\xc1\xea\x22\x2b\x99\xf5\x45\x70\x63\xeb\x8b\xac\xe8\x5b\x61\x64\xe5\x0b\x5a\x63\x04\x37\xb2\xc6\xc8\xca\x5d\x59\x65\xe4\x16\x44\x21\x84\x2c\x3c\xe5\xb2\x63\x9b\xc6\xa9\x91\xdf\x90\x51\x9a\x95\x7b\x6f\x46\xc6\x38\x0e\x3e\xb2\x43\x05\xbb\xf0\xe7\x13\xe4\xc5\x28\x86\xfb\x9f\xa2\xeb\x3f\xe9\xd1\xdf\x38\xbc\x92\x13\xe6\x6d\xe5\x9b\x38\x8b\xc3\x2e\x20\xbb\xef\x25\xe8\xcd\xeb\x17\x32\x77\xbf\x28\x20\x4a\xb1\xc0\x22\x7b\x6f\x52\x14\x26\x88\x9f\xf2\xee\xe2\xbc\x2b\xd6\xfe\x0e\x62\xfc\x68\x44\xc2\x2f\x5a\x8b\xb8\x18\x59\x31\x3f\x2a\x11\xb1\x65\x50\x62\x24\x1a\xe5\xa3\xd5\x30\x2b\x0e\xc3\x58\x26\xc0\x32\x03\x78\xb0\x0b\xc6\x63\x82\xcf\x51\xb4\x4b\xe9\x21\x14\xf9\x78\x80\xde\xbc\x7e\xbe\x8f\x27\x53\x1c\xa1\x88\x98\xb1\xd0\x26\x23\xc3\xe4\x59\x5e\x6a\xa2\x00\x3f\x83\xe7\x2e\xe5\xce\x97\xbe\x3d\x8d\x31\xc1\x3e\x0e\xe1\x71\xfe\xcb\x2e\x18\x97\x09\xad\xd4\xdd\xf8\xb5\x6b\x58\xf0\xe7\xfd\x4f\x66\xd5\xc2\xf6\x51\x52\x31\x7d\x9e\xf1\xfa\x9a\x82\xed\xfd\x4f\xc1\xf5\x9f\x2a\x0a\x8e\x51\x0e\x77\x46\xc1\x1d\x24\x37\x95\xd4\x58\x70\x54\xaa\x8d\x2d\xb8\x02\x62\x3a\x74\x15\x14\xd4\x53\x5c\x00\xab\xf2\xbd\x2d\x13\xa7\x2a\x16\xc6\xa9\xc2\x2b\x71\xaa\xe2\x8a\xc5\x60\xba\xfa\x08\x02\xf8\x11\xe2\x47\x10\xd0\xcb\x13\xf7\x82\xd5\x38\x55\x81\x8c\xd1\x65\x71\xfa\x18\xab\x7a\x1a\x4c\x10\x9e\xf1\x9b\x8f\x9e\xb6\x04\x91\xec\x27\x5d\xf3\xa5\x2c\xd6\x15\x67\xb8\xe5\x46\x54\xcc\x73\xe8\x26\x81\xb0\x64\x1c\xd6\xc2\x6e\x23\x46\xd3\xd0\xf3\x91\xf9\xf0\x7f\x1e\xde\x7f\x68\x81\xb1\x9e\xa8\x78\xcd\x50\xba\xda\xb8\xbb\xa8\xdc\xc9\x45\x19\x78\x7d\x27\x84\xf9\xab\x52\x06\x49\xc7\xc2\x36\xfe\x28\xe5\x13\x21\x4a\xe5\x62\xc1\xde\xcf\x65\xda\x10\x87\x48\xff\xed\xf5\xcd\xa3\x94\x27\xa5\x24\xbe\xa2\x08\xe3\x16\x3c\x29\xc5\x4e\x7e\x10\xb6\x71\x52\xbb\x79\xb4\xf4\xbd\x52\xee\x2e\x73\x61\x1b\xcf\xeb\x37\xcf\xf4\x33\x1a\xdf\x34\x05\xb5\x05\x87\xa5\xd6\xe3\x8d\xb0\x0d\xaf\x54\xf4\xf8\x57\x62\x36\xff\xb2\x4c\x1b\x2f\xc4\xf7\x4c\xa9\x35\x3d\x11\xb6\x41\x4a\xcd\xe5\xb5\xb0\x8d\x52\x49\x9c\xf6\x84\x4d\x04\xa5\x6c\x11\x9f\x7f\x5d\x62\x8f\xc2\x80\xfc\xed\x6a\xb5\x5e\x93\x19\xdd\x99\xc4\xac\x57\x1b\x4d\x87\x8b\x4a\xea\xad\x26\x17\x9f\xb8\x35\xc7\xad\xb1\x4f\xfc\xae\x67\x4f\x35\x85\x2b\xed\x56\xab\xd1\x12\x5a\xf9\xb1\x10\xff\x76\x64\xfa\xa2\x87\x2c\xaa\xc6\xdc\xf3\x07\x76\x9a\x88\xde\x9e\x20\x43\x99\x19\x4a\xb8\x51\x24\x9e\xab\xe4\x2a\x94\x4f\xf9\xf9\xe4\xe8\x95\xcd\xe9\xd9\x60\x38\x97\x4b\x52\x42\xec\x7b\xe1\x09\xc1\xb1\x37\xa2\x64\x33\x79\x4e\xd0\xc4\xf4\x24\x57\x33\x30\x8d\x0a\x67\xf0\x37\xef\xe9\xf5\x61\x84\x16\x0c\xad\x34\x21\x3a\x17\x46\x6d\x40\x4c\xc7\x6d\x36\xf9\x22\xb7\x1d\xc7\x6d\x7c\xcf\x98\xbe\x5e\xbe\x01\x61\x95\x64\xc3\xbe\x67\x4c\x17\x94\xef\x19\xd3\xef\x22\x63\xba\x8e\xe4\x71\x29\xc8\xf4\xa6\x53\x3b\x41\x21\xf2\x09\x1a\xec\x87\x5e\x32\xde\x3b\x7e\xbe\x8f\xa3\x61\x30\x7a\x1e\x0d\xd0\x95\x5a\x77\xcd\x5f\xf7\x57\x5e\x4b\x36\x14\x22\x20\xb1\xe1\xe8\x6b\x0e\x76\xa5\x33\xc5\x58\xf5\x7a\x1d\x6d\xd3\xeb\xda\x14\xf5\x7a\xba\xda\xa6\x27\x16\xa6\x4a\xaf\xfd\xf9\x8d\xd6\x6f\xec\xc5\xe4\x84\xcc\x43\x54\x62\xed\x3e\x6c\xd3\x63\xe8\x11\x14\xf9\xf3\x53\x94\x90\x37\xb1\xc8\xeb\x55\xd0\xd1\x64\xab\x4d\xc2\x61\xe8\x4d\x93\xa0\x1f\xa2\xe7\xc9\xd1\x14\x89\x32\x76\x09\xfa\xba\xdc\xa6\xaf\x69\x8c\xaf\xe6\x27\x38\x26\x4f\x84\xec\xc7\xe6\x6f\x47\xdb\xf4\x32\x0e\x06\xe8\x4d\xe4\x5d\x78\x41\x48\xef\xb1\xe3\x18\x5f\x05\x48\x13\xfa\x8e\xb7\xe9\xd0\x9b\x11\xbc\x1f\xe2\x04\x1d\x85\x83\x7d\x1c\x45\x9a\x7d\xed\xa7\xee\x2b\x53\xfb\x20\x61\x19\x2c\x9a\xd5\xaa\x82\x7a\x39\x97\x53\x2f\x2b\x21\xc9\xa3\x85\x74\x93\xc7\x22\xcf\x04\x99\x8c\x08\x1e\x99\xc8\xac\xac\xca\x7a\xf0\xe2\xc2\x0c\x0a\x2e\x4c\x4a\x07\x63\xb9\x08\x88\x92\x46\x7e\xd6\x79\x9a\x26\xe4\x87\x1f\xc0\x4f\x07\xc0\x7e\x89\x2b\x2a\x8f\x29\x5d\xba\xe0\x5d\xa1\xa6\x49\x2d\xe0\x25\x39\x01\xef\x8d\x64\x6c\x99\x09\xca\x32\x99\xbb\x59\xb1\x27\x5e\x7c\x9e\xbb\x25\x59\x08\x7e\x5c\x68\xc9\x12\x14\x07\x9e\xa1\x8d\x5f\xc6\x65\x63\x51\x31\xe0\x78\xf4\xa8\x02\xc9\x65\xc0\x29\x6f\x7b\x1a\xa3\x0b\x1e\xd4\x01\x5d\x6d\x4a\xa7\x44\xc5\xf7\x12\x04\xd5\x6e\x71\x45\x48\x01\xe1\xde\xb9\x89\xb5\x82\x97\x64\x25\xdd\x31\x79\xb0\x6f\x51\xc9\x54\x0d\x0a\x1d\x43\xbe\x50\xd2\xa9\xc4\x90\xf8\xfa\xc0\x2e\xd4\x0a\xb4\x7e\xf9\xd2\x8f\x91\x77\xae\x39\x1c\xbd\x6a\x4b\x5c\xd3\x8f\x67\x53\x62\x1a\xfc\x07\x43\x15\x95\x2b\x2b\x6c\xdf\x6a\xba\xfb\x26\xf7\xe1\x12\x95\x9b\xed\x58\x89\x77\xbc\xc1\x00\x0d\xf6\x48\x17\x0e\x3c\x82\xec\x08\x5f\xaa\x7c\x59\xf3\xe5\xda\x82\xd8\x34\xbc\xc1\x1a\xdd\x63\x58\x50\xea\x04\xe5\x8b\x90\xb2\x61\xdc\x90\x19\xe8\x8e\x8a\x22\xe0\x99\x89\xcd\x0a\x6d\x4b\x7b\x17\x9b\x1a\xbb\xc8\x2a\x1a\x28\x1a\x18\x9a\x5b\xbe\x80\xad\x84\xe0\x69\xd1\xb2\xaa\x5c\x39\x2a\x16\x48\x6d\xd8\x2a\xfa\xee\xc5\x42\x71\xb9\x70\xc0\xf9\x6c\x18\x0b\x76\xad\x84\x3e\x71\x7d\xb2\xf2\xdb\xe6\xd5\xf7\xdb\xe6\xab\xbe\x6d\x60\x17\xbe\xce\xcb\x86\x61\x9f\x18\x4d\xf0\x05\xba\x6b\x04\x94\x4c\xc3\xc0\x67\x51\x0f\x9c\xbb\xc5\x42\x3a\x77\xc9\x77\x2c\x74\x07\x58\xe8\xe4\x3b\x16\xfa\x8e\x85\xb6\xc3\x42\x7d\x7a\xca\x2b\xcc\xfe\x24\x60\x11\x45\x4c\x83\x0b\x34\x6e\x1b\x2b\x29\xc4\x4c\xb0\x2b\xe2\xf8\xc4\x23\x2e\x8b\x98\x40\xad\xce\x10\x95\xcb\x20\x1a\xe0\x4b\x3b\xc4\xdc\xd2\xd1\xe6\xce\x14\xda\x74\xa5\x42\x89\x21\x2a\x0c\x92\x1a\xdf\x31\xe7\x1d\x63\xce\xfc\x57\x8a\x5e\x0e\xf3\x71\x85\xfa\x78\x30\x97\x0b\x57\x0e\xc4\xf8\xee\x16\x5d\x4c\xbc\xf8\x5c\x68\x2f\xb6\x8c\x8f\x8f\xe0\x31\x98\x87\xec\x6a\x4f\x5e\x04\x09\xb1\x39\xe9\x60\x1a\x61\x30\x1a\x13\xa3\x62\x41\xfe\xa1\x37\x18\x98\xfc\x65\x26\xaa\x17\xbe\xc8\x1f\x0b\xde\x4b\x5b\xd4\xbe\x7c\x5e\x2b\x3d\x3f\x34\xa3\xf6\x66\x02\xaa\xb4\x77\x36\xe7\x2b\x33\xa2\xa8\xe9\x71\xb6\x0e\xdd\xec\xa9\x04\xe0\x0e\x98\x86\x05\x99\x46\x42\x70\x8c\x4e\x18\x76\x3f\x1d\xa3\x09\x2a\x83\xbc\x72\x32\x63\xd8\x95\xc7\x6d\x64\x68\x28\x4a\xd1\xd0\x0d\xa4\x55\x2f\xb4\xd3\x4d\xaa\x0e\x4f\x64\x1a\xde\x74\x7a\xc2\xf1\xf6\xaa\x18\x7a\x75\xee\x6a\xa5\x4c\xa4\x92\x67\x2f\x1d\x3a\x14\xb8\x80\xae\x0a\xb9\xf9\xaa\xec\x95\xc8\xc5\x28\x8d\x60\x06\x4c\x03\x4c\x17\xe6\x0d\x0b\x72\xb5\x37\x9d\x8a\xee\x32\x35\x4a\x22\x74\x2a\x3d\x74\x06\xbb\xf2\xb0\xa0\x6c\xd6\xf1\xcd\x67\xfd\x5c\x6a\x13\x26\x9c\xb8\x92\x8a\x8a\x4d\x83\x87\xf6\xda\x5f\x17\xe1\xaf\xce\x5e\xbe\x74\xac\x15\xb1\x16\xa0\xf7\xe7\xfd\x4f\xe8\xba\xcb\x4c\x94\xcf\x0a\x4e\xc9\xfe\xe2\xb2\xd6\x59\x99\xfc\x57\x8a\x12\x4e\xc5\x52\x27\x05\x2d\x21\x8e\x5c\xb4\xc6\x12\xc9\x43\x87\x2c\xc9\x2e\xae\xfc\xdd\x05\x33\xcc\x54\xc1\x14\x27\x99\x43\x45\x3c\x3a\x0a\x6b\x14\xe3\x7e\xfe\x9c\xcf\xad\x37\x84\xc7\xd9\xd7\x2e\x0c\xe9\x3b\x7b\x84\xc4\x41\x7f\x46\x18\x16\x26\xde\x0e\xed\x74\x67\x16\x87\xf4\xdd\xd5\x8b\x23\x84\xc7\x10\xc2\x32\xfd\x9c\xe3\xb6\xec\xaa\x5d\xb5\x9d\x6e\xa7\xda\x91\xe6\xac\xcb\xc8\x40\x43\x56\x61\x21\x34\x13\x05\x70\x12\x85\x1b\x59\xd5\x38\xad\xa6\xc3\x1b\x25\xc4\x23\x81\x6f\xfb\x78\xf2\x70\x84\x22\x14\x7b\x04\xbd\x77\xab\xc2\xf4\x11\x12\xdc\x22\xde\xb4\x34\x6f\x0e\xc7\xfe\xa2\x4d\x5d\x87\xcb\xae\xd8\x85\x39\xa7\x59\xea\x82\xf1\xca\x23\xb3\xd8\x0b\x45\x0d\x8a\x95\x43\x92\xf0\x38\x1b\x8a\x9d\xcd\xc0\x2b\x0a\x7f\x98\x37\x6a\x9a\x42\x83\xd5\x2a\x20\x6a\xb3\x96\x56\xec\x6f\x46\x99\xfd\x8d\x8a\x72\x66\x12\xfa\x45\x22\xef\x62\x2e\x8c\x59\x02\x4d\xbd\x38\x41\xf2\x9b\x21\x4f\x13\x17\x35\x58\x86\xcc\x13\x8c\x8e\x4e\x7a\x6c\x8e\x99\x03\xc6\x29\xa3\x5c\x15\x6e\x8f\x25\xbd\x89\xd7\x39\x83\x04\x79\xb1\x2f\xcb\x58\x9a\x95\x48\x96\x31\x37\x2b\x2c\x9b\x7a\xe6\x1a\x70\x6f\x99\x4b\x9d\xe2\x11\x23\x25\xff\x96\xfe\xc4\x8a\x86\x56\x54\x7d\x39\xfb\xe4\xff\xfd\x9f\xc7\xdc\x3e\x99\x89\x82\x88\x69\xfc\x40\x09\xbf\x98\xab\xf9\x62\xf8\x11\xc8\x42\xcd\x17\x6b\xba\x45\x31\xab\xb8\x5e\x7c\x96\xb5\xb8\xab\x0c\xbd\x99\x15\x3f\x9f\x96\x3f\x50\xa4\xe5\xcf\x97\x04\x76\xc1\x97\xa7\xe8\xcf\x17\x8f\x55\x75\x54\x0e\xd7\xb4\x44\xbd\x84\x39\xe2\x6f\x3a\x56\x78\x37\x72\x06\x92\x81\xae\x29\x9b\x26\xdf\xa7\x75\x6b\x0f\xa4\xe2\x95\x45\x73\xa3\x00\x24\x27\x63\x32\xe3\xb2\x85\x5b\x48\x26\x0c\x92\xda\x93\xd9\x63\x9c\x90\xc8\x9b\x20\x6e\x58\xb6\xfc\xba\x9b\x7b\xc6\x12\x73\x4c\x71\x4c\xd2\x4a\xec\xe3\x6e\xfa\x1b\x33\x03\x5b\x68\x7b\x53\x4d\xf6\x51\x52\xa1\x8d\xc5\x68\xc8\xde\x4d\x35\xbf\xdc\x0d\x2a\x53\x03\x2f\x7e\x2f\x65\xc6\x93\x32\x08\xcc\xf9\x3e\xa5\xdd\x7f\xf8\x61\xc1\x4b\xe4\x7f\xfe\xfc\x19\x4c\xb4\x20\xef\xd3\x5f\x2b\x16\x1c\x64\xbf\x52\x8c\x21\x25\x4b\xae\x2d\x60\x16\x85\x77\x66\xc7\xff\xec\x7d\x19\x23\xda\xa9\x60\x8d\x2c\x78\x77\x54\xa6\x8d\x81\xb0\x8d\xd3\x52\x36\xc5\x82\xdc\x9f\xd7\x16\x5c\x0e\x6f\xee\x0b\x50\xce\xd6\x5b\x64\x73\xbe\xb6\x97\x5f\xd6\xa8\x58\x6a\x35\x9c\x1a\x15\x33\x23\x5f\x59\x96\x2d\x3b\x32\x03\xa9\x01\xb0\xd9\xa8\xd6\x3b\xc2\x77\x3d\x1e\x35\xd5\x71\xdb\xc2\x81\xcd\x78\xcf\x05\xd6\xb0\xe1\x77\x6b\xd8\x6f\xcb\x1a\x76\xf8\xad\x58\xc3\x86\xff\x4c\x6b\xd8\xf0\xbf\xc3\x1a\x76\x5a\xd6\x04\xce\x4f\x75\x90\x7e\x19\x33\xcf\xc1\x0d\x7b\xe9\x19\x21\x1e\xed\x84\xe8\x02\x85\x86\xc8\x72\x56\x8e\xf7\x64\x46\xe5\xe5\x34\x60\x51\x9e\xcc\xf5\x37\x35\x60\x91\x5a\x68\x95\x35\x83\x2d\x1d\x25\x98\x2f\x50\x82\x15\xbb\xd6\x6f\x28\xc1\xa2\x4c\x09\x16\xdd\x91\x12\x6c\x91\x30\x31\xed\xa7\x6a\xa5\x5d\xc1\x2e\xd4\x2c\x48\xec\x53\x39\x4e\xdf\xe8\x54\xd7\x6a\x09\xa7\x14\x65\x44\x72\xbd\x39\x55\x4d\xbd\x11\x33\xd7\xba\x4d\x13\x1c\x10\xac\x43\x93\x8e\x8c\x54\xd9\x40\x79\x40\xb1\x2a\xa3\x3c\x28\x00\xcd\xec\x71\xab\x62\x1a\xde\x34\x48\x25\x97\x15\x46\x39\x6f\x6b\xeb\xe5\x94\x31\xd2\xc3\x36\x3e\x2f\xa5\xe6\x5b\xae\x6f\xfd\x6b\x30\x89\xf3\x71\x94\xe0\x10\xd9\x21\x1e\x99\xc6\x61\x1c\xe3\x18\x86\x88\x82\x7a\x8a\x24\x0c\x7a\x3e\x13\xe2\x91\x59\x72\x4a\x01\xfe\xae\xd6\xbc\x5e\x16\x2e\xb2\x55\x6c\xd2\x01\x7e\x48\x70\x24\x14\x73\x88\x3b\xd3\x05\xc2\x20\x77\x2e\x48\xaa\x30\x79\x98\x2e\xcc\xbf\xd8\x32\xed\x2f\x56\xe9\x06\x7a\xdf\x35\xbc\x5c\x52\xcf\x4b\xa9\xe0\x98\x27\x8c\xc8\x1a\x1a\x7b\x17\xe8\x29\x1d\x1e\x1a\xf0\x01\x52\x0a\xc4\x8e\xe9\xc0\xba\x40\xca\xd9\x01\xac\x0c\x75\x7d\x0d\x28\xc6\xfe\x69\xbd\xb3\x9b\x2c\xc6\xea\x82\x6c\xce\x63\x57\x1a\x07\x5c\xb2\x3e\xda\x0b\xa9\x0b\x3c\xae\x0e\x76\xd8\x56\x09\x1d\xdd\x54\x09\x0d\x99\x9d\xb9\x42\x40\x53\x61\x04\x13\x25\x54\x2d\xe8\xa9\x9b\xea\x55\x2d\x68\x2a\x52\x1d\x2a\x48\x4a\x6d\x7d\x37\xd2\xd4\x77\x47\x5f\xd0\x52\xe8\xa2\x84\x66\xad\x90\x25\x50\xd1\x38\xa4\x48\xb5\x24\xa7\x5e\x8a\x89\x8f\x0d\xea\x85\x64\xb7\x29\xb9\x23\xea\x25\xb1\x2f\x53\xb6\xaf\x5c\x44\xd1\xf5\x72\xcf\x49\x33\x84\xe2\x73\xe6\xff\xb0\x79\x49\x71\xb5\x5d\xee\x96\x42\xf9\x5b\x4a\xf7\xd4\xdf\x00\x53\xf1\x90\x94\x5a\x23\xdb\x14\x96\xc9\x47\xb4\xb9\x72\xa5\x46\x15\x9b\x94\x36\x2f\x63\xbf\x18\xa7\x38\x3d\xbd\xc9\x8e\xa6\x24\x98\x04\x09\x09\xfc\x37\xa9\x62\xf4\x4e\x2e\xb8\xa1\x39\x64\xaa\x87\x8d\x67\x92\x70\x24\x92\xe1\x6b\x23\xed\x3b\xc4\xd9\xe4\x36\x0c\x87\xe4\x99\xcb\x4b\x20\x52\x1d\x4c\x42\xbe\x84\xd5\x50\x5f\xac\x8f\xf6\x33\xb5\xb2\x64\x98\x53\x1c\x93\x2e\xb4\xda\x1d\x59\xbe\x08\x23\xc1\xfe\x79\xb2\x43\xeb\x19\xac\xa2\x2c\x21\x87\x11\xa3\x41\x10\x67\x15\xa5\xcd\x79\x61\x88\x2f\x77\x42\x2f\x32\x14\xc9\x3d\xd2\x6c\x25\xaf\x67\xa1\x34\xc9\x59\x8e\x91\x66\xd9\x58\x86\x58\x10\x9d\x5b\xc4\xc2\x6f\x10\x38\x02\xed\xe8\xf2\xeb\xb5\x05\xf5\x4e\xc3\xbd\xbb\x98\x50\xaf\x4b\xc5\xc7\x11\x27\xdb\xfa\xbd\x54\x4c\x28\x71\xb2\xad\xbd\x52\x71\x69\xc4\xe1\x45\x4f\x7f\xba\x69\x7c\xd1\xb2\x72\xf5\xad\x12\xab\x2e\xa5\xe9\x6d\xb7\xd5\xda\x88\xcd\xb0\x94\xa1\xbb\xb4\xc8\x64\xe8\xa5\xc4\x40\x21\x1e\x25\xec\x8f\x1e\x8c\x06\x5b\xb5\x4f\xbc\x40\xd3\xe5\xd6\xdf\xaa\x7d\xae\x53\xa6\x97\xbd\x5e\x2f\xc9\x22\xd1\xd9\xb1\x53\x31\xb1\x05\x81\x05\xfe\xea\xa5\xa6\xb0\x2a\x82\xf5\x60\x60\xbd\xb3\x34\xfc\xd7\x23\xc0\xf0\x1f\xa6\x21\xc6\x3b\x3b\x15\x88\xb9\x1f\x13\xea\xe1\x33\x19\xde\x0e\x86\x60\xd6\xaa\xd5\x94\xc0\xe1\xb2\x65\xc5\xe5\xb1\xe8\x96\xee\x83\xdb\xe9\x3c\x82\x00\xfe\x43\xfb\x0d\x56\xfa\x0b\xa4\xfd\x65\xca\x3f\x23\xf5\x27\x7d\x0c\x31\x74\x85\x52\x7f\xcd\x44\x6c\x53\x6f\x1e\x62\x6f\x60\x13\xfc\x02\x5f\xa2\x78\xdf\x4b\x90\x59\xb1\x59\x0e\xaa\xa3\x21\x25\x4b\xe9\x7a\x94\x91\xb4\xaa\xa2\xe3\x16\xc4\x6b\xd4\x11\xe6\x45\x26\xc5\xcf\x09\xa7\x67\x4e\x16\x70\x53\xce\xe4\x6f\x0d\xe8\x78\xba\xee\xfc\x02\x6c\x2f\x5a\x56\x06\x62\xbc\x05\xb3\xc7\x25\x0e\x29\xca\xfb\x89\xcd\x58\x55\x85\x49\x26\xd4\x55\x3c\xd8\x85\x84\x02\x80\xdb\xe9\xc0\x63\x66\xcb\x95\xc0\x03\x70\x24\xb0\xe9\xf7\x3c\x66\x62\x60\x65\x9b\xb4\x37\x9d\xa2\x68\xf0\x02\x97\x12\x22\xe4\x50\x0e\xec\x8a\xae\x03\xd0\xdf\x89\xfc\x57\x16\x3d\x47\x66\x5a\x97\x41\x82\xc4\x7e\x8c\x8e\xa8\x4b\xd1\xc4\xe6\x23\x3a\xce\x2e\xec\x28\xef\x79\xa6\x79\xdc\xe2\x9e\x97\x00\x52\x7c\x1b\xa7\xe8\x4f\x3c\x45\xd1\x4b\x3c\xf0\xc2\xee\xfd\x4f\xe8\xfa\xcf\x52\xe7\x67\x42\xdf\x4b\xb8\x89\xa8\x34\x95\xdb\x8d\x0e\x4b\x41\x20\x42\xcd\x39\xfa\x21\x4e\xd0\xad\x4c\x52\x96\x34\xb1\x3c\x1c\xca\x09\xb6\x71\xeb\xe6\x41\x3c\x5f\xc6\x37\x0d\xe2\x59\x96\x50\xd2\x88\x5b\x20\xa2\x83\x24\xbe\xd5\x0b\x11\x74\x11\xed\xdc\x72\x5c\xe7\xee\x72\xf0\x9f\x94\x8a\xc7\x28\x8e\x73\xf7\xaa\x54\xac\xbc\x58\x18\xae\x05\x5e\xcf\xcb\x34\xf2\x44\xd8\x46\x52\xca\xb0\x45\x14\xa5\xce\x82\x79\x70\xf3\x68\x79\xc7\xa5\x0c\x7d\x4e\x85\x6d\x78\x37\x8f\x83\x78\x50\x2a\x57\xc1\x7d\x61\x1b\xcf\xf7\xca\xb4\xf1\xd7\x2d\x1c\xb3\x03\x31\x78\x94\x8a\x5f\x8a\xc5\x30\x76\xbf\xd4\x40\x90\xb8\x91\x71\xa9\xc8\xa1\x7f\x08\xdb\x38\x7f\x51\xa6\x8d\x97\x62\x6e\xb3\xd4\x8a\x3c\xdd\x86\xcb\xcb\x59\x4f\xad\xd9\x4c\xb1\x4f\xad\x6a\x9d\x47\x36\xec\x38\xd5\x5a\x3b\x8d\x7b\xd8\x76\xfe\x9e\x30\x8d\x0a\x83\xab\xc2\xa0\x8a\xa6\x5e\x7a\x2e\x16\xf6\xd1\x71\xeb\x9d\x35\x83\x32\xce\x02\xb3\xa7\xad\x2a\xff\xc9\x6d\x57\xeb\xc2\x00\x8f\xdc\x42\xab\xd3\x6a\x35\xaa\xa2\xc7\x61\xfa\xb8\x53\xaf\x29\xb8\x8b\xe1\x77\x03\xae\x6f\xcb\x80\x6b\xfa\xad\x18\x70\x0d\xff\x99\x06\x5c\xc3\xff\x0e\x03\xae\x01\xec\x82\xf1\x70\xca\x3d\x5b\x14\x7c\x55\x81\x21\xd4\x85\x96\xb0\x5d\xa5\x86\x54\xb5\x6e\x5e\x14\x86\x10\x28\xf0\x24\xb5\x20\xb6\x54\xf6\x53\x5b\x07\x10\xb8\x71\xf0\x00\x6d\xad\x63\x86\x40\xd2\xa5\x08\xed\x51\xc5\x8c\x52\xb7\x0d\x62\xcf\xe2\x90\xcb\xe9\x88\x1d\x44\x01\xb1\x72\xf1\xa8\x2c\x6e\xe7\x62\xc6\xf0\x00\x06\x16\xe0\x22\x5d\x92\xb6\x41\x55\xc6\xe4\xa4\xc1\x22\xa2\x7c\xaf\x4d\xba\x59\x5a\xc6\x2a\xda\xc6\x52\xb2\xd0\x56\x56\xda\xbb\x56\x47\xad\x82\x8e\x4a\xe9\xc6\xb4\x1d\xea\x65\x09\xf5\x24\x8e\xf4\xf4\xa2\xa9\xdc\xf0\x44\xf5\x75\x9c\x47\x47\x37\xec\x64\xa4\x3e\xb6\xa3\xe2\x63\x6b\x81\xd2\xf4\x31\x33\x7b\x64\x22\x6c\xcf\x82\xd9\x37\x7f\x7e\xb1\x7e\xdc\xb4\xc8\x9b\xa0\xae\x48\x96\xb1\x5e\xae\x79\x8c\xc6\x15\xb4\x40\x09\xdc\x80\xa3\x05\x8f\x7d\xe4\x68\x81\x12\x93\x7f\xde\xff\xe4\x5f\x67\x38\xff\xe1\xfd\x4f\xe4\xfa\xcf\xdc\xc9\x6d\x64\xf8\x62\x66\xc1\xd4\x9c\x32\xe5\xb5\x57\xb1\xe0\x93\x3c\xb1\xf1\x7a\x99\x20\x32\xc6\x83\x2e\x18\xc7\x6f\x4e\x75\x32\xdc\x03\x4b\x02\x3c\x98\x77\xd7\xa3\x88\xcb\x72\x79\xac\x4c\xbe\x50\x39\xae\x1d\x51\xe3\x56\x30\x4c\x11\x2a\xfb\xc7\x60\x98\xab\x42\xd3\xa1\xf9\x0d\x7b\x98\xab\xd1\xcb\x5c\x0b\xbd\xa8\xb9\x12\x6b\x15\xbd\x58\x30\xcc\x47\xf0\xf8\xe6\xb1\x0d\xcb\x05\xbd\x8c\x43\xe2\xae\xb9\x93\x0f\x7b\x2e\x25\xf9\xd9\x3f\xba\x4e\xdc\x3c\x2d\x64\x1e\xd5\x50\xdc\x83\x39\xaa\x61\xba\x95\x14\xd5\x50\xb4\xf3\x27\xe1\xd9\x7c\x76\x1b\xd5\x6a\xf5\x87\x59\x1c\xee\xde\xff\x14\x53\x74\x93\xe2\xa1\x20\x8f\x87\x04\xfe\x97\xa4\x72\xfd\x70\x80\x42\x6f\xfe\xf8\xfe\x27\x6f\x05\x4d\x35\x73\x68\x4a\x98\x57\x6d\x63\xd9\xbe\xd3\x18\xab\xbf\xdf\x1c\x03\x7c\x50\x33\x05\x93\x1b\x36\x3f\x51\x1f\xff\xc9\x77\xa6\xe0\x76\x98\x02\xc6\xff\x5d\x04\x03\x14\x27\x0b\x4e\xf0\x36\xf9\x84\x60\x08\x66\xbd\x5a\xe7\xd1\x33\x96\xdc\x42\x25\xb5\x63\xd4\x36\xb1\x5b\x9e\xfd\x32\xfe\x1a\x1a\x14\xc4\x4d\xf0\x82\xe6\xd8\x17\x2b\xdc\xd5\x0a\x02\xb6\x21\x59\x5d\x2f\xe5\x31\x5a\xba\x76\xed\x72\x8c\x59\xfb\x4b\x21\xcd\xce\x7f\x0b\xd2\xbc\x2c\x24\x9b\x8e\x6e\xd8\xc3\x91\x1a\x6f\x1e\xdd\x26\xd9\xf4\xcd\xa3\xce\x78\x1d\x75\x62\x26\x68\x66\xa8\x33\x60\x1f\x39\xea\xa4\x94\x4d\xc6\x0e\x05\x37\x60\x87\x74\xce\x7e\x0e\x51\xd7\x33\x44\x8d\xc5\x88\xfa\xa1\x01\x0f\xe8\x4d\xa6\x47\x02\xe9\xf8\x1e\xdd\xca\x69\x2e\xe2\xb6\xfe\x31\xa7\xf9\xb8\xf0\x34\xef\xdf\xb0\x87\x7d\xf5\x69\xde\xff\x7e\x9a\xe1\xef\x39\xcd\xcf\x0e\xef\xe8\x34\xb3\x67\x63\xe4\x85\x64\xec\x8f\x91\x7f\x6e\x7c\x3f\xde\xac\xdc\xe5\xf1\xce\x7f\xa5\x67\xe2\x9c\x69\x55\x9b\xd5\x86\x2a\x2a\xc6\xbb\xf2\x29\x79\x59\x6c\xa7\x59\xc4\x15\x43\x83\x7c\xe6\x67\xae\x07\x85\xcf\x9f\xb3\xe0\x72\x80\x7a\xfc\x37\x3b\x20\x94\xff\xc6\xf1\x99\xf4\xbc\xd0\x66\x59\x72\x5e\x3b\x48\x78\x92\x5e\xc4\xc2\xce\x99\x6b\x89\xf2\x55\x21\x37\xa1\x4c\xac\xaf\x95\x18\x55\xcb\x49\x2c\xe3\x52\xbd\xe2\x9d\x29\x9a\x58\xd3\x3b\xb3\x7c\xd2\xb4\x19\x9b\xe0\x13\xd6\xb0\xed\x7b\x61\x68\xa2\x8a\x9d\xb0\x78\xe5\x6d\x0b\x76\x1c\x55\x83\x06\x6f\xc9\x58\xa6\x93\x61\x4e\x37\x09\x89\x67\x3e\xc1\x3c\x9b\x76\x1a\x61\x69\xf9\xab\xcd\x62\x17\x15\xcd\xf4\xa5\x37\xcd\x9a\xfd\xfc\x19\x8c\x13\x94\xf5\xb2\x98\x2f\x5f\xfd\x61\x8c\x27\x6a\xb7\x75\xd6\xdc\x5e\x06\x88\xb9\x46\x1f\xfe\xaf\xf9\xb8\xfb\x26\xf8\xfc\xbc\x12\x11\xf3\x71\xb7\xfd\xd9\x69\x7e\xae\xb9\x15\xf3\x71\x77\x3f\xf4\x26\x53\x34\xa8\x3c\x66\x7d\xdc\x7f\x68\x13\x94\x30\xbd\xe4\xda\x5a\x4b\x8e\x87\x89\x78\x08\x42\xa6\x47\xe7\x81\x90\x22\x16\xb8\x73\x65\xe3\x32\xfb\x6c\x15\x74\xf0\xe0\x4c\x2c\x0e\x6a\xd1\xc6\xb2\x60\x62\x05\xa2\x5f\xbc\x1e\x70\x4d\x15\x14\x2d\x9d\x6a\x01\x92\x4e\xba\x80\x8b\xc2\xaf\x69\xd9\xc0\x08\xba\x8e\xe1\x3f\x4b\x3b\x76\x78\xac\x7b\x5f\x0c\x70\x84\xba\x5a\xce\xbc\xd7\xa0\x4c\xaa\x2f\x68\x54\xe6\xc9\xb3\x5e\x2e\xbc\x70\x86\xba\x80\x7a\xf1\x83\x07\x0a\x27\xd7\xc5\x40\xd4\x55\xae\x2d\x40\x5d\x6d\x77\xac\xac\x70\x37\xc2\x02\xf7\xc0\x6b\x0b\x86\x5d\x91\xe9\x65\xc1\xd0\x24\x3f\xf3\x3e\x23\x74\x09\xa7\xf3\x29\x62\x5e\x8b\xa6\xf1\x3c\xba\xf0\xc2\x60\x00\x1e\x21\x68\x32\x25\x40\x30\x70\x04\x8b\x20\xc2\xd1\x0e\xfb\xdc\x0f\x11\x04\x51\x42\xbc\xc8\x47\xf6\xff\x44\xcf\x23\xc0\xf1\x00\xc5\xb4\x6e\x1f\x41\x56\xc5\x62\x2f\x78\xf4\x54\x02\x66\xb8\x27\x81\xc9\x2c\x21\xcc\xdb\x09\x3c\xd8\xc0\xdf\x66\x25\x25\x1f\xec\xf5\xdc\xe0\x92\x49\x30\x6b\x50\x4e\xae\xdc\x93\x1d\xa7\x84\xd9\xe0\xca\xc3\xf4\x4b\xf6\x46\xcf\x7b\x09\xb2\xa8\x74\x82\xb9\x48\xb6\xc2\x2a\x71\xc4\xb2\x40\x8a\xdc\x4d\x57\x29\x92\xc8\x7c\xb1\x18\x02\xa7\xf0\x2f\xf5\x35\x2d\x07\x9f\x09\x5f\x5b\xae\xc6\x96\x36\xa8\x17\xbb\x0c\xf4\x82\xcb\xfb\xf9\x5b\x9e\xd8\xe9\xcc\x3e\x7f\x5e\x7c\x56\x52\x41\x30\x0c\x22\x2f\x0c\x0b\x7b\xa1\x37\x4d\x52\x49\xcf\x80\x22\xce\x82\xfe\x91\xd2\xb6\x50\x7f\x25\xa7\x34\xcc\x6c\xde\x11\xbf\x93\xfe\x93\xbb\x7a\xe8\xed\xc2\xd3\x53\xa4\xbf\x08\xc0\x61\x25\xa6\x65\xd5\x5a\x44\x32\xe4\x54\x4f\x54\x79\x04\x04\x7e\x84\xe8\x11\x90\x07\x0f\x2a\x10\xf7\x08\x73\xbb\xe8\x11\x51\x9c\x44\xb1\xb5\xb8\x32\xad\xc6\x77\x23\xba\x6f\xc9\x88\xee\xf0\x5b\x31\xa2\x3b\xf9\x67\x1a\xd1\x9d\xfc\x77\x18\xd1\x1d\xc8\x6d\x3a\xa6\x59\xcc\x68\x61\x24\x6a\x5a\x98\x7a\x53\xf1\x7c\x14\xe3\xd9\xf4\x95\x37\x41\x32\x2f\x2b\x5a\x92\x31\xbe\x64\xbe\x3c\x2c\x02\xf5\x71\x8c\x2e\x24\x21\xa8\x41\xe2\x35\xfa\x5a\x2f\xf8\x71\x16\xa1\x64\x16\x6a\xfa\xbc\xbe\x80\x5d\xe8\x19\x07\x41\x4c\x19\x33\x0b\x8c\xa7\x5e\x18\xf6\x3d\x26\xd3\x30\x5e\xa3\x0f\xe9\xaf\x3c\x53\x01\x8e\xe9\xe7\x37\xaf\x5f\x9c\xa2\x84\xfd\xfc\x02\x7b\x83\x27\x5e\x48\x89\x30\xf6\x24\x3a\x8f\xf0\x65\x64\x88\x16\x61\xaf\xac\x6f\x6d\xba\x31\xd9\xbf\x7a\xb3\x79\xbe\x6d\x2f\x6c\x93\xf5\xfa\x38\xdd\xb6\x8f\x25\xa0\xe8\x75\xf4\xe6\x26\x4b\x36\x3f\xce\x64\x57\xf4\x1a\xef\x69\xe6\xa3\x7e\xbf\xf5\xfa\x79\xd1\x88\x07\x60\x9f\x97\x98\xe1\xfd\x6d\xbb\x93\x1c\x27\x41\xaf\x72\xe1\xd0\x93\x5b\x0d\x1d\x28\x13\xef\x6a\x86\x0e\xcc\x5b\xb8\x84\x16\x0c\x2d\x98\x5a\x30\xb0\xe0\xc2\x82\xbe\x05\x23\x0b\xae\x2c\x98\x5b\x30\xb1\xe0\xd2\x82\x23\x0b\x8e\x2d\xd8\xb7\xe0\xdc\x82\x57\x16\x9c\x58\x70\x60\xc1\xeb\xed\xd2\x6f\x7d\xd5\x91\x07\x53\xa9\xac\x6b\xc1\x71\x8c\x27\x41\x82\x6c\x2f\x0c\xcd\xde\xd8\x44\x15\x8b\x19\x37\x48\x5d\xcd\x37\xfa\xd6\x89\xbb\xb2\x98\x6d\x3e\xda\x9a\x20\x04\x7a\x1a\xb6\xbc\x7a\xc6\xcd\x64\xfc\x9e\x73\x66\x71\x37\x0f\x64\xce\xec\x85\xd0\xb8\xc2\x8d\x95\xc2\xe5\x2f\x16\x8b\xc7\x19\x66\x60\x6c\x31\xeb\xee\x43\xf3\x90\x89\xb9\xa7\xb4\xe1\xec\x51\xc5\x62\x89\xec\x23\x64\x0e\x2a\x16\x8b\x62\xb2\x18\xc3\x05\x1f\xc3\x08\x76\xa1\xcf\xc6\x70\xc5\x3e\xd1\x31\xcc\x61\x17\x9e\x9b\x31\x4b\x0a\x3d\x61\x4d\xd3\x86\xe7\x15\x8b\x65\xf8\xae\x3e\x82\x4b\xf8\x11\xae\x16\xf4\xd3\x25\xa5\x9f\x8e\x60\x17\xae\x7a\x97\x67\x16\x4b\x97\x3d\xe8\x1d\x9d\x51\x84\xa1\x29\xe6\x00\x96\x84\x21\x21\x38\x9e\x77\x85\x48\x46\x54\xae\x2d\x96\x2d\xfb\xd8\x4e\xdf\xb4\xc0\x3c\x87\x5d\xd8\xef\xed\x67\xb2\x9b\x1d\x70\xce\x2a\x12\x41\xd8\x39\xc7\xd5\x8c\x5c\x9e\xd0\xd1\x96\x4a\x73\xcb\xdb\xeb\x66\xad\x68\x0e\x58\x37\x6f\xd9\xab\x34\x1e\xc3\x09\xec\xc2\x3b\xf3\xea\x8e\xd2\x9d\x31\x10\x3d\xb1\x13\xb3\xf2\x08\xee\x99\x94\xb6\x39\xb1\x23\xb3\x52\x61\x4c\xf7\xa3\x0a\x23\x15\x0e\x6c\x26\x52\xb2\x60\xda\x7b\xcd\x36\xf4\x15\x0f\xcf\xf0\x7a\x9b\xa4\x68\xfa\x43\x3b\xb1\xe5\x39\x25\x36\xbb\xd0\xe4\x93\x57\x3b\x18\x6a\xe7\x75\xd3\x5c\xfc\x2c\x92\x60\x7a\xf2\x78\x34\xc5\xe3\x85\x99\xcd\x0d\x82\x4d\xad\x91\x30\xf4\x78\x59\x42\x7a\x00\x76\x29\x8a\x5f\xa3\x46\x60\x97\xa2\x7b\xe9\xad\xbe\x4b\x2f\x09\xf9\x05\x0c\xbb\xf0\x4a\x17\xba\x6f\x37\x5c\xe5\xdf\x16\x71\xf0\x5a\x11\xb1\xeb\x5b\x0f\x03\xf8\xf2\xb6\xc3\x00\xca\xe8\x15\xcd\x30\x80\x22\x52\xe2\x6b\x0c\x03\xb8\x88\x35\xb6\x0c\x62\x4c\x72\x36\x76\x97\x85\x4a\xb0\x95\x5e\x75\xa3\x18\x2f\xba\x68\xdd\x45\xe0\x62\x1d\x4b\x79\x3e\x8a\x74\xd2\x0d\x3a\x69\x16\xb1\x98\x2c\x22\x16\xeb\x76\x56\x64\x2b\x9b\x95\xd8\xa4\xf4\xb4\x76\xb3\x3a\x66\x6b\x7f\x6f\x18\xbc\x12\x71\x49\x1b\x77\x1d\x97\xf4\x6f\x0b\xa7\x27\xc1\x46\x4f\xbf\x16\x6c\xc4\xdc\x8f\xb6\x63\x7c\xbe\x46\x6c\x85\x19\x95\xae\x7b\x19\x97\x88\x0d\x7e\xcf\xc4\xf0\x23\x44\x99\xd8\xbe\x14\x1d\xb3\x40\x66\x8e\xfb\x35\x84\x09\x5f\x6c\x82\x9b\x43\xe5\x8d\x0c\x95\x2b\xa2\x9d\xe5\x4b\x49\x3c\x9a\xf6\xd2\xb9\x0b\x6c\xae\x8b\x60\x17\xf3\x6e\x6d\x60\xf3\x8d\x58\x7d\xd2\xce\x8a\x8c\x78\xb3\x82\x1f\x3c\xc8\xad\xae\x2c\x66\xd6\x7a\x29\x35\x6f\x47\x97\x23\x2f\x79\xb3\x38\x77\x99\xd4\xfe\xcb\x5e\x2d\xae\x05\xad\xff\xb6\xab\xe5\x63\xe1\xd5\xf2\xf6\x86\xf6\x9a\x6f\xd5\xf6\x9a\x6f\x6f\x66\xaf\xf9\xed\x98\x62\xa2\x1c\x4d\x9c\xf7\x3b\x39\xe6\x13\xbc\x2d\xe7\x12\x54\x86\x16\xd6\xc1\x20\xda\xb8\x1b\xe5\xe8\x5f\xc4\x31\x26\xd2\xa5\x7f\xbf\x52\x3f\x31\x0d\xcc\xa1\x22\x48\x45\x18\xe3\x36\x8c\xac\xff\xfa\x5a\xe8\xc1\x6f\x8c\xde\x5b\xe0\xd7\xa5\xa0\xfb\x63\x39\x8e\x54\xfb\x12\x5d\xeb\xa9\x6e\x95\xbd\x57\x75\x6c\x97\xbf\x07\x2e\xd7\x1a\x75\x89\xeb\xf0\x67\xf5\x65\xf5\xf3\xad\x07\x70\x48\x95\x4f\xdf\xbc\xa3\x01\xca\x9d\xa9\x99\x7d\xff\x17\xb3\xf0\x4c\x69\x9f\xa7\x6c\xf1\x71\xce\x53\x12\x9f\xc3\xe7\xcf\xab\x39\x18\x66\x11\xb3\x52\x24\x38\x4d\x63\xe4\x85\x21\xad\x10\x21\xb6\x60\x82\x74\x46\x79\xd7\x69\xcd\x44\x42\xda\x5e\x86\xf9\x18\x30\x3c\xf2\x44\x6e\x28\x5c\xa1\xd5\x4b\x95\x58\xef\xcc\x42\x67\x06\x28\xa7\xb4\x60\x9b\x1f\x66\x0a\x0b\xae\x13\xcb\x29\x2c\x4c\x96\xa4\x8e\x2b\x2c\x2a\xb6\x3f\xf6\x82\x28\x59\x09\xe2\x0c\x3b\x0e\xfc\xf0\x03\x4c\xd7\x9f\xc5\x15\xf8\x11\xaa\xf4\x91\xc7\xb5\x1b\x53\x3b\x18\xe8\x44\xa4\x28\xaf\xdc\x08\x35\x15\x1b\xa5\x95\x1a\xa1\x9e\x42\xa3\x8c\x0b\x6c\xc6\xb5\xd5\x56\xd5\xa6\x9e\x3d\x29\x73\x62\x05\x4d\xcf\xec\x93\x09\x45\x28\x74\x97\x18\x19\xa5\xa3\x4d\x52\xa0\xdf\xac\xe8\xf1\x6d\xdf\x9e\xcf\x8a\x04\xa7\x3f\xcb\x4c\xc0\xb8\x7f\xbb\x0a\xc1\xff\x76\xc3\xae\x7e\x53\x5f\x1f\xbf\xe9\x5e\x1f\xdc\x01\x4d\x79\x89\x7c\xfb\xbe\x69\x32\x86\xa8\x6f\x66\xf3\xbf\x4d\x87\xfb\x7b\x0e\xf3\xb7\xe7\x48\xb9\x4c\xea\xbe\xbf\xd1\xcb\x7e\x69\xae\x9f\x9a\xea\x0f\xbd\x20\x44\x03\x7a\xc7\xa5\x9b\xc4\x94\x94\x5d\x88\x51\x92\xbb\xdb\x0a\x93\xef\x69\x5f\x63\xa8\x94\x2c\x52\x9b\x9b\xd4\xd1\x46\xa4\xee\x11\x19\x8c\xb4\x05\x3c\xa5\xb5\x42\x00\xd0\xc7\x16\xac\x2d\x51\xba\x42\x46\x85\xbf\xae\x85\x18\x75\x68\x92\xc8\x7c\x62\xc6\x95\x8a\xc5\x8e\xf3\xb9\x7d\x75\x58\x31\x89\x59\xe1\x16\xdb\xf4\xbe\xdf\x63\x5f\x2d\xf8\x95\xc2\xb2\xaf\xed\x4b\xb9\x50\x51\x17\xbb\xed\x64\x25\x20\x68\xc2\xdf\xd0\x48\x1d\xa8\x19\x1b\xca\xf9\xfa\xfc\x19\x35\x39\xf1\xf6\x17\xe6\xc4\x7f\x52\x22\x7c\x1d\xd4\x8b\x4c\x63\x19\x79\x7e\xd5\xbc\xae\x5c\x26\x84\x02\x5b\xbd\x9b\x07\xa6\x97\x2c\xc1\xaf\xca\xc0\x7a\x99\x95\xfe\x36\xd9\x56\xb8\xb7\x72\x8f\x58\x10\x9d\x71\x7f\x14\x91\x07\xe9\xa2\x30\x6b\x7e\x96\x0f\x85\x1e\xc3\xd8\x8e\xf0\xe5\xa3\x0a\x60\x7b\x16\x25\xe3\x60\x48\x4c\xf6\x4b\x25\xf3\x7b\xa6\x4f\x95\x37\xa8\x28\xde\x3d\xbb\x9f\x97\x86\x24\xf4\x4b\x76\xfe\x44\x07\xeb\x5e\x89\x69\xff\xac\xcd\xe5\x5e\x33\x8b\x89\xfc\x28\xe2\x5e\x75\x1d\xc0\xe5\xfb\xf5\x87\x4e\x20\x44\x4d\xf9\x51\x5c\x40\xd0\xc4\xa6\x92\x8e\x01\x35\xbd\xa2\x96\x3d\x81\x88\x66\x89\xb3\xfb\x22\xbe\x23\x11\xd2\xb3\x34\x83\x50\xb6\x86\x0b\xca\xdc\x02\xbc\x6e\xd9\xc4\x07\xc5\x6c\x84\x6e\x62\xd8\x94\x2d\xf4\x86\x81\x53\x09\xf5\x60\xdc\x8b\xce\xd8\xa9\xe8\x45\x67\x14\xf4\xb9\xf7\x4b\xf6\x65\x57\x2a\xcc\x59\x2f\x5f\x49\xe6\xbd\xf8\x36\x04\x58\x22\x1f\x1b\x28\x6f\xbb\xa4\xe5\x2b\x14\x7f\x41\x19\xd6\x2f\x5f\x50\x3a\x2c\xe3\xa7\xf2\xcd\x08\x6c\xad\xff\x39\x26\x04\xb9\x98\xbf\x9c\x14\x7c\x32\xaa\x98\xd8\xe4\x3e\x5d\x4b\x9e\xe6\x2a\x45\xba\x85\x3c\x0d\x94\xb5\x7d\xca\xb9\x81\x92\x54\xe0\xe4\xc1\x2e\x18\x86\x95\xe5\x52\xf5\xd3\x5c\xaa\x26\x33\xa3\x5e\x4b\xe9\x9d\x0b\x83\xe5\x97\x4c\xa6\xad\x43\xc5\x43\x16\xaf\x3f\x1d\x5a\x08\xbb\x30\xe3\xf6\x96\xdc\x5a\xfb\x79\xba\x58\xd3\x9c\x65\xf6\xb0\x5c\x00\x12\x5a\x7a\xd1\x99\xb6\xaf\x78\x56\x10\xe5\xa9\xba\xe0\x69\x12\xda\x59\xc9\x4c\x9a\x05\x0e\x3f\xb2\xa2\x69\x71\x71\xcd\x93\xb2\xc6\xe8\xaf\x19\x4a\xc8\x01\x5d\xa4\xa7\x38\x66\xf7\xc7\x11\x77\xf9\xb9\x05\xe3\xd8\xcc\xd6\x75\x7a\xeb\x08\xff\x1b\xb0\x04\xf8\x82\x18\xff\x4b\x6a\x2d\x7e\xff\xae\x0f\xcc\xca\x4d\xf5\x81\xb1\x99\x5e\x9f\x5f\x05\x9d\xf3\xf5\x40\xfd\xd7\x06\xf2\x08\x7d\x4d\xee\x64\x3a\x21\xd9\xe1\x9b\x75\x0c\xa3\x5c\xf8\xfb\xd4\xcd\x29\xca\x5b\xae\xe4\xb4\x1d\x78\x5d\xdb\x51\x3c\x1f\x41\x4f\xc4\x4c\x51\x99\x3e\x3b\x72\xeb\x04\x15\x25\xe5\xde\xa4\xb3\xf5\x99\x7e\x2e\x60\xf3\x5e\x1a\xb7\xf8\x4c\xb5\xa6\xd9\xad\xae\xbd\x61\x30\x04\x33\xa5\xd0\x16\xba\xba\x52\x4b\x18\x2d\x15\x51\x5f\x83\xdd\x28\xa5\xfa\xbc\xcc\x2b\x6a\x39\x36\x27\x35\xb9\x98\x15\xc6\x99\xca\x0a\xa7\x2d\x74\xad\x6f\xa3\x3b\x75\x05\xd0\x22\x71\x56\x86\xe1\xb4\xef\x64\x1c\xba\xb6\xb4\x0b\xb0\x75\x1a\x74\x17\x98\x00\x3d\x4a\x65\x16\x0d\x0a\xe0\x36\x32\xe9\xcf\xfa\x1b\xa1\x4b\xf5\x2f\x9c\x76\xb2\x01\x30\x0e\x63\x68\xb2\xb3\x34\x0c\xa2\x20\x19\x9b\x4e\x5b\xff\x96\xd5\x05\x80\x0d\x67\xd6\x9a\x05\xa4\x9c\xe9\x8d\x7b\x97\x84\xec\xed\xb8\x5d\xe9\x9a\xb4\x36\x2c\xb6\xf3\x74\xf1\x5d\xe7\xae\x6d\x5b\xbf\x42\x3f\xae\x48\x46\x26\xb0\xcb\xdf\x62\x04\xaf\x34\x88\x04\x4f\xf7\xad\x8a\xb9\x83\x21\x88\x40\x8e\xa6\xb3\xdc\xa5\xa8\x87\x45\xcd\xd0\x12\xd0\xdb\x93\x72\xe7\xab\xd1\x0a\xd9\xcf\x15\x78\xcc\x88\xe0\x59\x32\x36\x71\xc5\x02\xe3\xd9\x8b\xa3\x27\x7b\x2f\x78\x8c\x3c\xbc\x88\x0e\xc4\xeb\x56\xa0\x0b\x2f\x16\xa6\x1a\x81\x4d\xe6\x53\xb4\xb0\xd7\x88\xb3\x46\x04\x8b\x29\x25\xa1\x78\x88\x9c\x88\xbf\x9a\xf5\x5d\xe1\x6b\x46\xf4\x8d\x1b\xd2\xd6\x7a\xd1\x62\x70\xa8\x62\x01\x12\x45\x48\xa8\x54\xec\x04\xc7\xc4\x34\x35\xd9\xad\x4c\xb3\xd4\xab\x9e\xc1\x0e\x44\xbd\xaa\xa4\xd1\xb2\x63\x45\x3d\xd1\x59\xe1\x91\x7a\x7a\x94\x20\x3c\xd3\x85\x3f\x22\x83\xbf\x95\x88\x3b\xab\x41\x92\x16\x50\xc9\x00\xf0\xd3\xb5\x95\xfa\xa9\x40\xde\xa7\xe4\x11\xe0\x82\x68\x3c\x1c\xf0\xa2\x1e\x3e\x93\xc2\xde\x10\x4c\x63\x80\x86\xde\x2c\x24\x06\xd3\x8e\x07\xec\x56\x66\x9e\xe0\xfb\x78\x32\xf5\x48\xd0\x0f\x51\xf6\xe8\x02\x8d\x03\x3f\x44\xa7\x0c\xb0\x8a\x0c\x09\x98\x89\x02\x03\xce\x85\xf3\x7d\x92\xce\xca\xe3\xb3\xf1\xe0\x47\xf0\x17\xb3\xf1\x14\xb3\xc9\xcf\x8a\x07\x00\xf0\x64\x53\xca\x4a\xdc\xe3\x04\xc6\x19\xec\xc2\xcc\x82\x84\x03\x71\x4a\x74\x28\x70\xab\xfc\x51\x90\x73\x2b\x4e\xb2\x80\x4d\x66\x50\x02\x6b\x49\x0f\x9a\x3c\x54\x4e\x16\x22\x9f\x48\x30\xd4\x22\x9a\x8e\x28\xc1\xf3\x06\x8c\xe6\xbf\x32\xa5\x02\x92\x3b\xf3\x0b\x84\x50\xac\xa3\xf2\x82\x90\x12\xc1\x25\x6f\x49\xe8\x9c\x6f\x4e\x11\xc5\x59\x30\xd6\xed\x04\x17\x59\xb9\x15\x01\x46\x56\x4a\x31\x6a\x6b\xd3\x08\x18\xc3\x86\x17\x2c\x4c\x24\x08\x71\x56\x8e\xb9\x58\xef\x20\x87\xcb\x99\xbd\x60\xb9\x96\x04\x38\xb9\x1c\xbb\xb8\x36\x9c\xb8\x24\xdb\x98\x1b\x87\xb5\x62\xa3\x9d\xe7\x68\xb5\xac\x32\xb3\xa2\x6d\xb2\x2d\x18\x3d\xc9\xd9\xa1\xea\x1b\x89\xaf\xf4\xac\x63\xcb\xb3\xf2\x42\x19\xc2\x75\x63\xb8\x3a\x04\x6c\x56\xb4\x72\x7b\xc8\x65\x54\xcb\x3a\x85\x8b\x52\x5e\x52\xbb\xf6\x66\x39\xf1\xd5\x62\x64\x8a\xdb\x44\x11\x12\x54\x66\xf3\xd1\x85\x9f\x24\xb8\xde\x5f\xa9\xb7\x17\x0d\x4e\xc7\xbc\x01\xfd\xd0\x9e\xdb\x61\xe4\x5b\x90\x91\xe5\x9b\x5b\xca\xca\x6e\x86\x97\xf5\x31\xc6\xad\x08\xce\xb2\xb2\x15\x5e\xa6\x94\x16\x33\x3b\x31\x33\x8c\xcc\x83\x7e\xee\x72\xab\xf6\x60\x69\xbc\xb3\x34\x19\xd8\x27\x57\x2c\x4c\x75\x9a\x9e\x8c\xd3\xfc\x8f\xb3\xaf\x5d\xc0\x36\xd1\xbb\x06\xd7\xcb\x82\x35\x6e\x94\x40\x33\x59\x29\x21\x2f\xca\x8a\xa6\xdc\x28\x2b\x0b\x51\xe0\x8d\x2f\xab\x5b\x32\xad\x52\x76\x71\x03\xb3\x2b\x55\x11\x9a\x64\x15\xbc\x60\x51\xce\x7a\x35\x89\x41\xe9\x8b\x44\x57\xae\x94\x15\x6f\x05\x7a\x17\xa4\x3e\xb3\x09\xf3\x2c\xf0\x59\x26\x77\x43\x8a\xba\x6e\x63\x1b\xf4\xb6\x20\x1f\xbb\x67\xf5\x90\xc1\x6e\x7a\xa6\x4a\x2f\x78\xd9\xc5\xd5\x15\x9d\xc1\x2d\xdc\xd2\x7a\x62\xa6\xac\x68\xde\xd2\xb2\x68\x3f\xcb\x3a\x5b\xdd\xd2\x7a\x08\x78\x2b\xe9\xd1\x62\x64\xdb\xdc\xd2\x02\x9e\x4a\x70\x37\x63\x94\xde\x8f\x9e\xed\x47\x15\x53\x32\x93\x73\x34\xef\x82\xc1\x8c\x91\x9f\x32\x5a\x9c\x19\x6a\x4b\x43\xa0\x32\x9e\xbc\x0b\x86\x20\xa1\xca\x75\x6e\xb8\xd7\x16\x74\x6a\x4d\xd7\x29\xe4\xcb\x8c\x59\x82\x20\x21\x71\xe0\x13\x63\x6d\x87\x22\xfb\x9d\x98\x0d\xc4\x17\x28\x66\xa1\x58\x8d\xf7\xee\x0c\x3d\xad\x7e\x98\x7c\x98\x4f\x44\x43\xf6\x71\x44\x50\x44\x87\xfb\xe6\x5d\x63\xf8\xd7\xfc\x60\xff\xa8\x6f\x48\xb9\xcf\xf4\x63\xb6\x94\xb2\xe3\x2f\x19\x31\x23\x48\x72\xdf\x79\x78\xec\x2b\x7a\xbc\xaf\xd4\x21\x5b\x17\x11\x8a\x37\x74\x37\x99\x84\xaa\xd5\x6a\x5a\xd0\x6e\x5b\xe0\xb4\xaa\x16\xb4\x1b\x2d\x0b\x9a\x75\xc7\x02\xb7\xe5\x5a\xd0\x69\x3b\x16\x34\xaa\x2d\x0b\xea\x9d\x96\x05\xad\x5a\xf3\x8c\xf1\x30\xc8\x3e\xa4\x48\x4e\x3a\xbf\x9c\x84\xb6\xd7\x68\xd7\x3a\xb4\xa9\x66\xc3\x82\x4e\xab\x65\x41\xa3\xde\xb0\xa0\xe9\xd6\x52\x79\xd2\xd9\xff\xf9\xff\x58\x38\x8d\x87\x0f\xff\x05\x09\x9e\xc5\x3e\x7a\xe9\x4d\xa7\x41\x34\x7a\xf3\xfa\xc5\xae\x37\x9d\xda\xcd\x56\xb5\xd9\x6f\xb7\xdb\x8d\xba\x5b\xef\x74\xea\x9e\xdf\x1c\x22\xfb\x43\x42\x07\xf2\xff\x07\x00\x00\xff\xff\xc1\xc1\x80\x0c\x99\x6d\x02\x00") func ghPagesApp6706b8885424994ac6feJsBytes() ([]byte, error) { return bindataRead( @@ -599,7 +588,7 @@ func ghPagesApp6706b8885424994ac6feJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gh-pages/app.6706b8885424994ac6fe.js", size: 159129, mode: os.FileMode(438), modTime: time.Unix(1622047819, 0)} + info := bindataFileInfo{name: "gh-pages/app.6706b8885424994ac6fe.js", size: 159129, mode: os.FileMode(438), modTime: time.Unix(1622917482, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1468,8 +1457,8 @@ func ghPagesYacdIco() (*asset, error) { // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) @@ -1494,8 +1483,8 @@ func MustAsset(name string) []byte { // It returns an error if the asset could not be found or // could not be loaded. func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) @@ -1595,13 +1584,13 @@ var _bindata = map[string]func() (*asset, error){ // b.png // then AssetDir("data") would return []string{"foo.txt", "img"} // AssetDir("data/img") would return []string{"a.png", "b.png"} -// AssetDir("foo.txt") and AssetDir("nonexistent") would return an error +// AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { @@ -1738,6 +1727,6 @@ func RestoreAssets(dir, name string) error { } func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } diff --git a/static/gh-pages/app.6706b8885424994ac6fe.js b/static/gh-pages/app.6706b8885424994ac6fe.js index 219cab2..7144296 100644 --- a/static/gh-pages/app.6706b8885424994ac6fe.js +++ b/static/gh-pages/app.6706b8885424994ac6fe.js @@ -441,7 +441,7 @@ title: "About" }), n && n.version ? (0, N.jsx)(S, { name: "Clash.Mini", - version: "0.1.1", + version: "0.1.3", link: "https://github.com/Clash-Mini/Clash.Mini" }): null,(0, N.jsx)(S, { diff --git a/static/handler.go b/static/handler.go index d546019..a9f1439 100644 --- a/static/handler.go +++ b/static/handler.go @@ -3,9 +3,12 @@ package static import ( - "log" + "fmt" "net/http" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/elazarl/go-bindata-assetfs" ) @@ -17,8 +20,8 @@ func init() { AssetInfo: AssetInfo, Prefix: "gh-pages", }) - if err := http.ListenAndServe("127.0.0.1:8070", handler); err != nil { - log.Panicln(err) + if err := http.ListenAndServe(fmt.Sprintf("%s:%s", constant.Localhost, constant.DashboardPort), handler); err != nil { + log.Fatalln("ListenAndServe error: %v", err) } }() diff --git a/sysproxy/sysproxy.go b/sysproxy/sysproxy.go index 5f86be5..7468c1c 100644 --- a/sysproxy/sysproxy.go +++ b/sysproxy/sysproxy.go @@ -1,8 +1,11 @@ package sysproxy import ( + "fmt" "strconv" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Dreamacro/clash/proxy" ) @@ -41,7 +44,7 @@ func GetSavedProxy() *ProxyConfig { } else { Ports = proxy.GetPorts().Port } - if p.Enable && p.Server == "127.0.0.1:"+strconv.Itoa(Ports) { + if p.Enable && p.Server == fmt.Sprintf("%s:%d", constant.Localhost, Ports) { SavedProxy = &ProxyConfig{ Enable: false, Server: ":" + strconv.Itoa(proxy.GetPorts().MixedPort), diff --git a/systray/systray.go b/systray/systray.go deleted file mode 100644 index b1fcce3..0000000 --- a/systray/systray.go +++ /dev/null @@ -1,315 +0,0 @@ -package systray - -import ( - "fmt" - "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" - "github.com/Clash-Mini/Clash.Mini/cmd/sys" - "github.com/Clash-Mini/Clash.Mini/cmd/task" - "os" - "path/filepath" - "runtime" - "time" - - C "github.com/Dreamacro/clash/constant" - "github.com/Dreamacro/clash/proxy" - "github.com/Dreamacro/clash/tunnel" - "github.com/getlantern/systray" - - "github.com/Clash-Mini/Clash.Mini/cmd" - "github.com/Clash-Mini/Clash.Mini/controller" - "github.com/Clash-Mini/Clash.Mini/icon" - "github.com/Clash-Mini/Clash.Mini/notify" - "github.com/Clash-Mini/Clash.Mini/sysproxy" -) - -func init() { - if runtime.GOOS == "windows" { - currentDir, _ := os.Getwd() - C.SetHomeDir(currentDir) - } - go func() { - runtime.LockOSThread() - systray.Run(onReady, onExit) - runtime.UnlockOSThread() - }() -} - -func onReady() { - systray.SetIcon(icon.DateN) - systray.SetTitle("Clash.Mini") - systray.SetTooltip("Clash.Mini by Maze") - - mTitle := systray.AddMenuItem("Clash.Mini", "") - systray.AddSeparator() - - mGlobal := systray.AddMenuItem("全局代理", "Set as Global") - mRule := systray.AddMenuItem("规则代理", "Set as Rule") - mDirect := systray.AddMenuItem("全局直连", "Set as Direct") - systray.AddSeparator() - - mEnabled := systray.AddMenuItem("系统代理", "") - mURL := systray.AddMenuItem("控制面板", "") - mConfig := systray.AddMenuItem("配置管理", "") - mOther := systray.AddMenuItem("其他设置", "") - mOtherTask := mOther.AddSubMenuItem("设置开机启动", "") - mOtherAutosys := mOther.AddSubMenuItem("设置默认代理", "") - mOtherMMBD := mOther.AddSubMenuItem("设置GeoIP2数据库", "") - MaxMindMMBD := mOtherMMBD.AddSubMenuItem("MaxMind数据库", "") - Hackl0usMMBD := mOtherMMBD.AddSubMenuItem("Hackl0us数据库", "") - - systray.AddSeparator() - - mQuit := systray.AddMenuItem("退出", "Quit Clash.Mini") - - if runtime.GOOS != "windows" { - mEnabled.Hide() - mOther.Hide() - mConfig.Hide() - } - - go func() { - t := time.NewTicker(time.Second) - defer t.Stop() - SavedPort := proxy.GetPorts().Port - if controller.RegCompare(cmd.Sys) { - var Ports int - if proxy.GetPorts().MixedPort != 0 { - Ports = proxy.GetPorts().MixedPort - } else { - Ports = proxy.GetPorts().Port - } - sysproxy.SetSystemProxy( - &sysproxy.ProxyConfig{ - Enable: true, - Server: fmt.Sprintf("127.0.0.1:%d", Ports), - }) - mEnabled.Check() - notify.Notify("SysON") - } - - for { - <-t.C - switch tunnel.Mode() { - case tunnel.Global: - if mGlobal.Checked() { - } else { - mGlobal.Check() - mRule.Uncheck() - mDirect.Uncheck() - if mEnabled.Checked() { - systray.SetIcon(icon.DateG) - notify.Notify("Global") - } else { - systray.SetIcon(icon.DateN) - } - } - case tunnel.Rule: - if mRule.Checked() { - } else { - mGlobal.Uncheck() - mRule.Check() - mDirect.Uncheck() - if mEnabled.Checked() { - systray.SetIcon(icon.DateS) - notify.Notify("Rule") - } else { - systray.SetIcon(icon.DateN) - } - } - case tunnel.Direct: - if mDirect.Checked() { - } else { - mGlobal.Uncheck() - mRule.Uncheck() - mDirect.Check() - - if mEnabled.Checked() { - systray.SetIcon(icon.DateD) - notify.Notify("Direct") - } else { - systray.SetIcon(icon.DateN) - } - } - } - if controller.RegCompare(cmd.Task) { - mOtherTask.Check() - } else { - mOtherTask.Uncheck() - } - - if controller.RegCompare(cmd.MMDB) { - MaxMindMMBD.Uncheck() - Hackl0usMMBD.Check() - } else { - MaxMindMMBD.Check() - Hackl0usMMBD.Uncheck() - } - - if controller.RegCompare(cmd.Sys) { - mOtherAutosys.Check() - } else { - mOtherAutosys.Uncheck() - } - - if mEnabled.Checked() { - var p int - if proxy.GetPorts().MixedPort != 0 { - p = proxy.GetPorts().MixedPort - } else { - p = proxy.GetPorts().Port - } - if SavedPort != p { - SavedPort = p - err := sysproxy.SetSystemProxy( - &sysproxy.ProxyConfig{ - Enable: true, - Server: fmt.Sprintf("127.0.0.1:%d", SavedPort), - }) - if err != nil { - continue - } - } - } - - p, err := sysproxy.GetCurrentProxy() - if err != nil { - continue - } - - if p.Enable && p.Server == fmt.Sprintf("127.0.0.1:%d", SavedPort) { - if mEnabled.Checked() { - } else { - mEnabled.Check() - } - } else { - if mEnabled.Checked() { - mEnabled.Uncheck() - } else { - } - } - - } - }() - - go func() { - go func() { - userInfo := controller.UpdateSubscriptionUserInfo() - time.Sleep(2 * time.Second) - if len(userInfo.UnusedInfo) > 0 { - notify.NotifyINFO(userInfo.UsedInfo, userInfo.UnusedInfo, userInfo.ExpireInfo) - } - }() - for { - select { - case <-mTitle.ClickedCh: - fmt.Println("Title Clicked") - case <-mGlobal.ClickedCh: - tunnel.SetMode(tunnel.Global) - case <-mRule.ClickedCh: - tunnel.SetMode(tunnel.Rule) - case <-mDirect.ClickedCh: - tunnel.SetMode(tunnel.Direct) - case <-mEnabled.ClickedCh: - if mEnabled.Checked() { - err := sysproxy.SetSystemProxy(sysproxy.GetSavedProxy()) - if err != nil { - } else { - mEnabled.Uncheck() - systray.SetIcon(icon.DateN) - notify.Notify("SysOFF") - } - } else { - var Ports int - if proxy.GetPorts().MixedPort != 0 { - Ports = proxy.GetPorts().MixedPort - } else { - Ports = proxy.GetPorts().Port - } - err := sysproxy.SetSystemProxy( - &sysproxy.ProxyConfig{ - Enable: true, - Server: fmt.Sprintf("127.0.0.1:%d", Ports), - }) - if err != nil { - } else { - mEnabled.Check() - systray.SetIcon(icon.DateS) - notify.Notify("SysON") - } - } - case <-mURL.ClickedCh: - go controller.Dashboard() - case <-mConfig.ClickedCh: - go controller.MenuConfig() - case <-mOtherAutosys.ClickedCh: - if mOtherAutosys.Checked() { - controller.RegCmd(cmd.Sys, sys.OFF) - time.Sleep(2 * time.Second) - if !controller.RegCompare(cmd.Sys) { - notify.Notify("SysAutoOFF") - } - } else { - controller.RegCmd(cmd.Sys, sys.ON) - time.Sleep(2 * time.Second) - if controller.RegCompare(cmd.Sys) { - notify.Notify("SysAutoON") - } - } - case <-mOtherTask.ClickedCh: - if mOtherTask.Checked() { - controller.TaskCommand(task.OFF) - time.Sleep(2 * time.Second) - if !controller.RegCompare(cmd.Task) { - notify.Notify("StartupOff") - } - } else { - controller.TaskCommand(task.ON) - time.Sleep(2 * time.Second) - taskFile := filepath.Join(".", "task.xml") - taskPath, _ := os.Getwd() - Filepath := filepath.Join(taskPath, taskFile) - os.Remove(Filepath) - if controller.RegCompare(cmd.Task) { - notify.Notify("Startup") - } - } - case <-MaxMindMMBD.ClickedCh: - if MaxMindMMBD.Checked() { - return - } else { - controller.GetMMDB(mmdb.Max) - if !controller.RegCompare(cmd.MMDB) { - time.Sleep(2 * time.Second) - notify.Notify("Max") - } - } - case <-Hackl0usMMBD.ClickedCh: - if Hackl0usMMBD.Checked() { - return - } else { - controller.GetMMDB(mmdb.Lite) - if controller.RegCompare(cmd.MMDB) { - time.Sleep(2 * time.Second) - notify.Notify("Lite") - } - } - case <-mQuit.ClickedCh: - systray.Quit() - return - } - } - }() -} - -func onExit() { - for { - err := sysproxy.SetSystemProxy(sysproxy.GetSavedProxy()) - if err != nil { - continue - } else { - break - } - } - - os.Exit(1) -} diff --git a/tray/func.go b/tray/func.go new file mode 100644 index 0000000..290b285 --- /dev/null +++ b/tray/func.go @@ -0,0 +1,193 @@ +package tray + +import ( + "bytes" + "encoding/json" + "fmt" + "github.com/Clash-Mini/Clash.Mini/util" + "github.com/Dreamacro/clash/config" + "github.com/Dreamacro/clash/tunnel" + "net/http" + "os" + path "path/filepath" + "time" + + "github.com/Clash-Mini/Clash.Mini/cmd" + "github.com/Clash-Mini/Clash.Mini/cmd/auto" + "github.com/Clash-Mini/Clash.Mini/cmd/cron" + "github.com/Clash-Mini/Clash.Mini/cmd/mmdb" + "github.com/Clash-Mini/Clash.Mini/cmd/startup" + "github.com/Clash-Mini/Clash.Mini/cmd/sys" + "github.com/Clash-Mini/Clash.Mini/cmd/task" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/controller" + "github.com/Clash-Mini/Clash.Mini/icon" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/notify" + "github.com/Clash-Mini/Clash.Mini/sysproxy" + "github.com/Dreamacro/clash/proxy" + stx "github.com/getlantern/systray" +) + +var ( + _, ControllerPort = controller.CheckConfig() + + NeedLoadSelector = false +) + +func LoadSelector(mGroup *stx.MenuItemEx) { + if NeedLoadSelector && config.GroupsList.Len() > 0 { + groupNowMap := tunnel.Proxies() + SelectorMap = make(map[string]SelectorInfo) + util.JsonUnmarshal(util.IgnoreErrorBytes(json.Marshal(groupNowMap)), &SelectorMap) + for name, group := range SelectorMap { + if group.Now != "" { + proxyNow := SelectorMap[group.Now] + log.Infoln("load: %s -> %s", name, group.Name) + SwitchGroupAndProxy(mGroup, group.Name, proxyNow.Name) + continue + } + } + NeedLoadSelector = false + } +} + +func mConfigProxyFunc(mConfigProxy *stx.MenuItemEx) { + configGroup := ConfigGroupsMap[mConfigProxy.Parent.GetId()] + GroupPath := mConfigProxy.Parent.GetTitle() + ProxyName := configGroup[mConfigProxy.GetId()] + + url := fmt.Sprintf(`http://%s:%s/proxies/%s`, constant.Localhost, ControllerPort, GroupPath) + body := make(map[string]interface{}) + body["name"] = ProxyName + bytesData, err := json.Marshal(body) + if err != nil { + log.Errorln("putConfig Marshal error: %v", err) + return + } + reader := bytes.NewReader(bytesData) + request, err := http.NewRequest(http.MethodPut, url, reader) + if err != nil { + log.Errorln("putConfig NewRequest error: %v", err) + return + } + request.Header.Set("Content-Type", "application/json;charset=UTF-8") + client := http.Client{} + resp, err := client.Do(request) + if err != nil { + log.Errorln("putConfig Do error: %v", err) + return + } + if resp != nil && resp.StatusCode != http.StatusNoContent { + log.Errorln("putConfig Do error[HTTP %d]: %s", resp.StatusCode, url) + return + } + if err := resp.Body.Close(); err != nil { + return + } + log.Infoln("PUT Proxies info: Group: %s - Proxy: %s", GroupPath, ProxyName) + +} + +func mEnabledFunc(mEnabled *stx.MenuItemEx) { + if mEnabled.Checked() { + err := sysproxy.SetSystemProxy(sysproxy.GetSavedProxy()) + if err != nil { + } else { + mEnabled.Uncheck() + stx.SetIcon(icon.DateN) + notify.DoTrayMenu(sys.OFF) + } + } else { + var Ports int + if proxy.GetPorts().MixedPort != 0 { + Ports = proxy.GetPorts().MixedPort + } else { + Ports = proxy.GetPorts().Port + } + err := sysproxy.SetSystemProxy( + &sysproxy.ProxyConfig{ + Enable: true, + Server: fmt.Sprintf("%s:%d", constant.Localhost, Ports), + }) + if err != nil { + } else { + mEnabled.Check() + stx.SetIcon(icon.DateS) + notify.DoTrayMenu(sys.ON) + + } + } + firstInit = true +} + +func mOtherAutosysFunc(mOtherAutosys *stx.MenuItemEx) { + if mOtherAutosys.Checked() { + controller.RegCmd(sys.OFF) + if !controller.RegCompare(cmd.Sys) { + notify.DoTrayMenuDelay(auto.OFF, constant.NotifyDelay) + } + } else { + controller.RegCmd(sys.ON) + if controller.RegCompare(cmd.Sys) { + notify.DoTrayMenuDelay(auto.ON, constant.NotifyDelay) + } + } + firstInit = true +} + +func mOtherTaskFunc(mOtherTask *stx.MenuItemEx) { + if mOtherTask.Checked() { + controller.TaskCommand(task.OFF) + if !controller.RegCompare(cmd.Task) { + notify.DoTrayMenuDelay(startup.OFF, constant.NotifyDelay) + } + } else { + controller.TaskCommand(task.ON) + defer os.Remove(path.Join(".", "task.xml")) + if controller.RegCompare(cmd.Task) { + notify.DoTrayMenuDelay(startup.ON, constant.NotifyDelay) + } + time.Sleep(2 * time.Second) + } + firstInit = true +} + +func maxMindMMBDFunc(maxMindMMBD *stx.MenuItemEx) { + if maxMindMMBD.Checked() { + return + } else { + controller.GetMMDB(mmdb.Max) + if !controller.RegCompare(cmd.MMDB) { + notify.DoTrayMenuDelay(mmdb.Max, constant.NotifyDelay) + } + } + firstInit = true +} + +func hackl0usMMDBFunc(hackl0usMMDB *stx.MenuItemEx) { + if hackl0usMMDB.Checked() { + return + } else { + controller.GetMMDB(mmdb.Lite) + if controller.RegCompare(cmd.MMDB) { + notify.DoTrayMenuDelay(mmdb.Lite, constant.NotifyDelay) + } + } + firstInit = true +} + +func mOtherUpdateCronFunc(mOtherUpdateCron *stx.MenuItemEx) { + if mOtherUpdateCron.Checked() { + controller.RegCmd(cron.OFF) + if !controller.RegCompare(cmd.Cron) { + notify.DoTrayMenuDelay(cron.OFF, constant.NotifyDelay) + } + } else { + controller.RegCmd(cron.ON) + if !controller.RegCompare(cmd.Cron) { + notify.DoTrayMenuDelay(cron.ON, constant.NotifyDelay) + } + } + firstInit = true +} diff --git a/tray/menu.go b/tray/menu.go new file mode 100644 index 0000000..b32f4a8 --- /dev/null +++ b/tray/menu.go @@ -0,0 +1,307 @@ +package tray + +import ( + "container/list" + "fmt" + "time" + + "github.com/Clash-Mini/Clash.Mini/cmd" + cp "github.com/Clash-Mini/Clash.Mini/cmd/proxy" + "github.com/Clash-Mini/Clash.Mini/cmd/sys" + "github.com/Clash-Mini/Clash.Mini/constant" + "github.com/Clash-Mini/Clash.Mini/controller" + "github.com/Clash-Mini/Clash.Mini/icon" + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Clash-Mini/Clash.Mini/notify" + "github.com/Clash-Mini/Clash.Mini/sysproxy" + "github.com/Clash-Mini/Clash.Mini/util" + "github.com/Dreamacro/clash/config" + C "github.com/Dreamacro/clash/constant" + "github.com/Dreamacro/clash/hub/route" + "github.com/Dreamacro/clash/proxy" + "github.com/Dreamacro/clash/tunnel" + "github.com/MakeNowJust/hotkey" + stx "github.com/getlantern/systray" +) + +var ( + firstInit = true +) + +func init() { + if constant.IsWindows() { + C.SetHomeDir(constant.PWD) + } + stx.RunEx(onReady, onExit) +} + +func onReady() { + + log.Infoln("onReady") + stx.SetIcon(icon.DateN) + stx.SetTitle(util.AppTitle) + stx.SetTooltip(util.AppTitle + " by Maze") + + stx.AddMainMenuItemEx(util.AppTitle, "", func(menuItemEx *stx.MenuItemEx) { + fmt.Println("Hi Clash.Mini") + }) + stx.AddSeparator() + + mGlobal := stx.AddMainMenuItemEx("全局代理\tAlt+G", "全局代理", func(menuItemEx *stx.MenuItemEx) { + tunnel.SetMode(tunnel.Global) + firstInit = true + }) + mRule := stx.AddMainMenuItemEx("规则代理\tAlt+R", "规则代理", func(menuItemEx *stx.MenuItemEx) { + tunnel.SetMode(tunnel.Rule) + firstInit = true + }) + mDirect := stx.AddMainMenuItemEx("全局直连\tAlt+D", "全局直连", func(menuItemEx *stx.MenuItemEx) { + tunnel.SetMode(tunnel.Direct) + firstInit = true + }) + stx.AddSeparator() + + mGroup := stx.AddMainMenuItemEx("切换节点", "切换节点", stx.NilCallback) + if ConfigGroupsMap == nil { + config.ParsingProxiesCallback = func(groupsList *list.List, proxiesList *list.List) { + RefreshProxyGroups(mGroup, groupsList, proxiesList) + NeedLoadSelector = true + } + route.SwitchProxiesCallback = func(sGroup string, sProxy string) { + SwitchGroupAndProxy(mGroup, sGroup, sProxy) + } + } + stx.AddSeparator() + + mEnabled := stx.AddMainMenuItemEx("系统代理\tAlt+S", "系统代理", mEnabledFunc) + stx.AddMainMenuItemEx("控制面板", "控制面板", func(menuItemEx *stx.MenuItemEx) { + go controller.Dashboard() + }) + mConfig := stx.AddMainMenuItemEx("配置管理", "配置管理", func(menuItemEx *stx.MenuItemEx) { + go controller.ShowMenuConfig() + }) + + var mOtherTask = &stx.MenuItemEx{} + var mOtherAutosys = &stx.MenuItemEx{} + var mOtherUpdateCron = &stx.MenuItemEx{} + var maxMindMMDB = &stx.MenuItemEx{} + var hackl0usMMDB = &stx.MenuItemEx{} + mOther := stx.AddMainMenuItemEx("其他设置", "其他设置", stx.NilCallback). + AddSubMenuItemExBind("设置开机启动", "设置开机启动", mOtherTaskFunc, mOtherTask). + AddMenuItemExBind("设置默认代理", "设置默认代理", mOtherAutosysFunc, mOtherAutosys). + AddMenuItemExBind("设置定时更新", "设置定时更新", mOtherUpdateCronFunc, mOtherUpdateCron). + AddMenuItemEx("设置GeoIP2数据库", "设置GeoIP2数据库", stx.NilCallback). + AddSubMenuItemExBind("MaxMind数据库", "MaxMind数据库", maxMindMMBDFunc, maxMindMMDB). + AddMenuItemExBind("Hackl0us数据库", "Hackl0us数据库", hackl0usMMDBFunc, hackl0usMMDB) + stx.AddSeparator() + + stx.AddMainMenuItemEx("退出", "Quit Clash.Mini", func(menuItemEx *stx.MenuItemEx) { + stx.Quit() + return + }) + + if !constant.IsWindows() { + mEnabled.Hide() + mOther.Hide() + mConfig.Hide() + } + + proxyModeGroup := []*stx.MenuItemEx{mGlobal, mRule, mDirect} + mmdbGroup := []*stx.MenuItemEx{maxMindMMDB, hackl0usMMDB} + hotKey(mEnabled) + + go func() { + t := time.NewTicker(time.Second) + defer t.Stop() + SavedPort := proxy.GetPorts().Port + if controller.RegCompare(cmd.Sys) { + var Ports int + if proxy.GetPorts().MixedPort != 0 { + Ports = proxy.GetPorts().MixedPort + } else { + Ports = proxy.GetPorts().Port + } + err := sysproxy.SetSystemProxy( + &sysproxy.ProxyConfig{ + Enable: true, + Server: fmt.Sprintf("%s:%d", constant.Localhost, Ports), + }) + if err != nil { + log.Errorln("SetSystemProxy error: %v", err) + notify.PushWithLine("❌错误❌", "设置系统代理时出错") + return + } + mEnabled.Check() + notify.DoTrayMenu(sys.ON) + } + if controller.RegCompare(cmd.Cron) { + mOtherUpdateCron.Check() + go controller.CronTask() + } + //if config.GroupsList.Len() > 0 { + // log.Infoln("--") + // //log.Infoln(config.GroupsList) + // RefreshProxyGroups(mGroup, config.GroupsList, config.ProxiesList) + //} + + for { + <-t.C + switch tunnel.Mode() { + case tunnel.Global: + if mGlobal.Checked() { + } else { + RefreshProxyGroups(mGroup, nil, config.ProxiesList) + NeedLoadSelector = true + stx.SwitchCheckboxGroup(mGlobal, true, proxyModeGroup) + mGroup.Enable() + if mEnabled.Checked() { + stx.SetIcon(icon.DateG) + notify.DoTrayMenu(cp.Global) + } else { + stx.SetIcon(icon.DateN) + } + } + case tunnel.Rule: + if mRule.Checked() { + } else { + RefreshProxyGroups(mGroup, config.GroupsList, config.ProxiesList) + NeedLoadSelector = true + stx.SwitchCheckboxGroup(mRule, true, proxyModeGroup) + mGroup.Enable() + if mEnabled.Checked() { + stx.SetIcon(icon.DateS) + notify.DoTrayMenu(cp.Rule) + } else { + stx.SetIcon(icon.DateN) + } + } + case tunnel.Direct: + if mDirect.Checked() { + } else { + RefreshProxyGroups(mGroup, nil, nil) + mGroup.Disable() + stx.SwitchCheckboxGroup(mDirect, true, proxyModeGroup) + if mEnabled.Checked() { + stx.SetIcon(icon.DateD) + notify.DoTrayMenu(cp.Direct) + } else { + stx.SetIcon(icon.DateN) + } + } + } + if firstInit { + if controller.RegCompare(cmd.Task) { + mOtherTask.Check() + } else { + mOtherTask.Uncheck() + } + + if controller.RegCompare(cmd.MMDB) { + stx.SwitchCheckboxGroup(hackl0usMMDB, true, mmdbGroup) + } else { + stx.SwitchCheckboxGroup(maxMindMMDB, true, mmdbGroup) + } + + if controller.RegCompare(cmd.Sys) { + mOtherAutosys.Check() + } else { + mOtherAutosys.Uncheck() + } + + if controller.RegCompare(cmd.Cron) { + mOtherUpdateCron.Check() + } else { + mOtherUpdateCron.Uncheck() + } + + if mEnabled.Checked() { + var p int + if proxy.GetPorts().MixedPort != 0 { + p = proxy.GetPorts().MixedPort + } else { + p = proxy.GetPorts().Port + } + if SavedPort != p { + SavedPort = p + err := sysproxy.SetSystemProxy( + &sysproxy.ProxyConfig{ + Enable: true, + Server: fmt.Sprintf("%s:%d", constant.Localhost, SavedPort), + }) + if err != nil { + continue + } + } + } + + p, err := sysproxy.GetCurrentProxy() + if err != nil { + continue + } + + if p.Enable && p.Server == fmt.Sprintf("%s:%d", constant.Localhost, SavedPort) { + if mEnabled.Checked() { + } else { + mEnabled.Check() + } + } else { + if mEnabled.Checked() { + mEnabled.Uncheck() + } else { + } + } + firstInit = false + } + LoadSelector(mGroup) + } + + }() + + go func() { + userInfo := controller.UpdateSubscriptionUserInfo() + time.Sleep(2 * time.Second) + if len(userInfo.UnusedInfo) > 0 { + notify.PushFlowInfo(userInfo.UsedInfo, userInfo.UnusedInfo, userInfo.ExpireInfo) + } + }() + +} + +func onExit() { + err := sysproxy.SetSystemProxy(sysproxy.GetSavedProxy()) + if err != nil { + log.Errorln("onExit SetSystemProxy error: %v", err) + } +} + +func hotKey(mEnabled *stx.MenuItemEx) { + message := "" + hkey := hotkey.New() + _, err1 := hkey.Register(hotkey.Alt, 'R', func() { + tunnel.SetMode(tunnel.Rule) + }) + if err1 != nil { + message += "Alt+R热键注册失败\n" + } + _, err2 := hkey.Register(hotkey.Alt, 'G', func() { + tunnel.SetMode(tunnel.Global) + }) + if err2 != nil { + message += "Alt+G热键注册失败\n" + } + _, err3 := hkey.Register(hotkey.Alt, 'D', func() { + tunnel.SetMode(tunnel.Direct) + }) + if err3 != nil { + message += "Alt+D热键注册失败\n" + } + _, err4 := hkey.Register(hotkey.Alt, 'S', func() { + mEnabledFunc(mEnabled) + }) + if err4 != nil { + message += "Alt+S热键注册失败\n" + } + if err1 != nil || err2 != nil || err3 != nil || err4 != nil { + go notify.PushWithLine("📢通知📢", message) + } +} diff --git a/tray/proxy.go b/tray/proxy.go new file mode 100644 index 0000000..1c03e3a --- /dev/null +++ b/tray/proxy.go @@ -0,0 +1,83 @@ +package tray + +import ( + "container/list" + "github.com/Clash-Mini/Clash.Mini/util" + + "github.com/Clash-Mini/Clash.Mini/log" + "github.com/Dreamacro/clash/config" + stx "github.com/getlantern/systray" +) + +var ( + ConfigGroupsMap map[uint32]map[uint32]string + SelectorMap map[string]SelectorInfo +) + +// TEST +// TODO: not fit standard +type GroupsList struct { + Name string `json:"name"` + Proxies []string `json:"proxies"` + Type string `json:"type"` +} + +type SelectorInfo struct { + All []string `json:"all,omitempty"` + History []interface{} `json:"history,omitempty"` + Name string `json:"name"` + Now string `json:"now"` + Type string `json:"type"` +} + +func SwitchGroupAndProxy(mGroup *stx.MenuItemEx, sGroup string, sProxy string) { + log.Infoln("switch: %s :: %s", sGroup, sProxy) + for e := mGroup.Children.Front(); e != nil; e = e.Next() { + group := e.Value.(*stx.MenuItemEx) + if group.GetTitle() == sGroup { + for e := group.Children.Front(); e != nil; e = e.Next() { + proxy := e.Value.(*stx.MenuItemEx) + if proxy.GetTitle() == sProxy { + stx.SwitchCheckboxBrother(proxy, true) + } + } + } + } +} + +func RefreshProxyGroups(mGroup *stx.MenuItemEx, groupsList *list.List, proxiesList *list.List) { + mGroup.ClearChildren() + // TODO: need unmarshal proxy info + ConfigGroupsMap = make(map[uint32]map[uint32]string) + if groupsList == nil { + if proxiesList != nil { + groupsList = list.New() + groupsList.PushFront(GroupsList{ + Name: "GLOBAL", + Proxies: SelectorMap["GLOBAL"].All, + }) + groupsList.PushBackList(config.GroupsList) + } else { + groupsList = list.New() + } + } + for e := groupsList.Front(); e != nil; e = e.Next() { + //println(util.ToJsonString(e.Value)) + s := GroupsList{} + if err := util.ConvertForceByJson(&s, e.Value); err != nil { + return + } + mConfigGroup := mGroup.AddSubMenuItemCheckboxEx(s.Name, s.Name, false, mConfigProxyFunc) + configProxiesMap := make(map[uint32]string) + for _, configProxy := range s.Proxies { + mConfigProxy := mConfigGroup.AddSubMenuItemCheckboxEx(configProxy, configProxy, false, mConfigProxyFunc) + configProxiesMap[mConfigProxy.GetId()] = configProxy + } + ConfigGroupsMap[mConfigGroup.GetId()] = configProxiesMap + } + if mGroup.Children.Len() == 0 { + mGroup.Disable() + } else { + mGroup.Enable() + } +} diff --git a/util/string.go b/util/string.go new file mode 100644 index 0000000..affb675 --- /dev/null +++ b/util/string.go @@ -0,0 +1,13 @@ +package util + +import "fmt" + +const ( + AppTitle = "Clash.Mini" +) + +var () + +func GetSubTitle(subTitle string) string { + return fmt.Sprintf("%s - %s", subTitle, AppTitle) +} diff --git a/util/unmarshaler.go b/util/unmarshaler.go index 74b0b9a..b3934a8 100644 --- a/util/unmarshaler.go +++ b/util/unmarshaler.go @@ -1,14 +1,37 @@ package util import ( + "container/list" "encoding/json" "fmt" "net/url" "reflect" "strconv" "strings" + + "github.com/Clash-Mini/Clash.Mini/log" +) + +var ( + boolValuesMap = map[interface{}]interface{}{ + "true": true, + "false": false, + "1": true, + "0": false, + } ) +// TODO: support custom UnmarshalOption + +// ConvertForceByJson 通过JSON强制转换 +func ConvertForceByJson(dv interface{}, ov interface{}) (err error) { + jsonString, _ := json.Marshal(ov) + if err = json.Unmarshal(jsonString, dv); err != nil { + return + } + return +} + // unmarshalValues 解码为UrlValues func unmarshalValues(str string) (subInfoMap url.Values, err error) { subInfoMap, err = url.ParseQuery(str) @@ -43,23 +66,46 @@ func UnmarshalByValuesWithTag(str string, fieldTag string, v interface{}) error return err } rv = rv.Elem() + isInterface := rv.Kind() == reflect.Interface + var interfaceElem reflect.Value + if isInterface { + interfaceElem = rv + rv = reflect.New(rv.Elem().Type()).Elem() + rv.Set(interfaceElem.Elem()) + } rvt := rv.Type() fieldNum := rv.NumField() for i := 0; i < fieldNum; i++ { rvf := rvt.Field(i) - var tag string + + var isOmitempty bool + var tagEx string + var tags []string if len(fieldTag) > 0 { - tag = rvf.Tag.Get(fieldTag) + tagEx = rvf.Tag.Get(fieldTag) + tags = strings.Split(tagEx, ",") + if len(tags) > 1 { + isOmitempty = tags[len(tags)-1] == "omitempty" + if isOmitempty { + tags = tags[:len(tags)-1] + } + } } fieldName := rvf.Name rfv := rv.Field(i) - if len(tag) == 0 { - tag = rvf.Name + if tags == nil || len(tags) == 0 { + tags = []string{rvf.Name} } - fieldVal := subInfoMap[tag] - fmt.Printf("%s %s(%s)=%s\n", rfv.Kind(), fieldName, tag, fieldVal) - if len(fieldVal) < 1 { + var fieldVal []string + for _, tag := range tags { + fieldVal = subInfoMap[tag] + if fieldVal == nil { + continue + } + log.Debugln("%s %s(%s)=%s [%s]", rfv.Kind(), fieldName, tag, fieldVal, isOmitempty) + } + if fieldVal == nil || len(fieldVal) < 1 { continue } switch rfv.Kind() { @@ -78,25 +124,38 @@ func UnmarshalByValuesWithTag(str string, fieldTag string, v interface{}) error rfv.SetUint(intVal) break case reflect.Bool: - if fieldVal[0] != "true" && fieldVal[0] != "false" { + boolValue := getReflectValue(fieldVal[0], boolValuesMap) + if boolValue == nil { return fmt.Errorf("unmarshall by reflect failed, field \"%s\" kind \"bool\" must be [true, false], but it's \"%s\"", fieldName, fieldVal) } - rfv.SetBool(fieldVal[0] == "true") + rfv.SetBool(boolValue.(bool)) break case reflect.String: rfv.SetString(fieldVal[0]) break - case reflect.Struct: + case reflect.Struct, reflect.Interface: // TODO: use recursion return fmt.Errorf("unmarshall by reflect failed, field \"%s\" kind \"%s\" is not support", fieldName, rfv.Kind()) - case reflect.Array, reflect.Slice: + case reflect.Slice, reflect.Array, reflect.TypeOf(list.List{}).Kind(): // TODO: use recursion inside loop return fmt.Errorf("unmarshall by reflect failed, field \"%s\" kind \"%s\" is not support", fieldName, rfv.Kind()) - // rfv.Set(reflect.ValueOf(fieldVal)) default: rfv.Set(reflect.ValueOf(fieldVal)) } } + if isInterface { + interfaceElem.Set(rv) + } + return nil +} + +// getReflectValue 获取指定反射类型的映射值 +func getReflectValue(v interface{}, valuesMap interface{}) interface{} { + for key, value := range valuesMap.(map[interface{}]interface{}) { + if key == v { + return value + } + } return nil } @@ -106,6 +165,29 @@ func ToJsonString(v interface{}) string { return string(jsonBytes) } +// JsonUnmarshal JSON字节数组转struct +func JsonUnmarshal(data []byte, v interface{}) { + if err := json.Unmarshal(data, v); err != nil { + log.Errorln("JsonUnmarshal error: %v", err) + } +} + +// IgnoreErrorBytes 忽略错误[]byte +func IgnoreErrorBytes(data []byte, err error) []byte { + if err != nil { + log.Errorln("IgnoreError: %v", err) + } + return data +} + +// IgnoreErrorString 忽略错误string +func IgnoreErrorString(data string, err error) string { + if err != nil { + log.Errorln("IgnoreError: %v", err) + } + return data +} + // ToLowerCamelCase 转小驼峰camelCase func ToLowerCamelCase(s string) string { return toCamelCase(s, false) diff --git a/versioninfo.json b/versioninfo.json index 40b6b16..602eb4b 100644 --- a/versioninfo.json +++ b/versioninfo.json @@ -3,13 +3,13 @@ "FileVersion": { "Major": 0, "Minor": 1, - "Patch": 2, + "Patch": 3, "Build": 0 }, "ProductVersion": { "Major": 0, "Minor": 1, - "Patch": 2, + "Patch": 3, "Build": 0 }, "FileFlagsMask": "3f", @@ -29,7 +29,7 @@ "OriginalFilename": "Clash.Mini.exe", "PrivateBuild": "", "ProductName": "Clash.Mini", - "ProductVersion": "0.1.2", + "ProductVersion": "0.1.3", "SpecialBuild": "" }, "VarFileInfo": {