Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /* __________________________________________________ | Obfuscated by YAK Pro..

Decoded Output download

<?php
/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.14  |
    |              on 2024-07-22 17:18:01              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
 echo "<x-admin::layouts>
    <!-- Title of the page -->\xa    <x-slot:title>\xa        @lang('admin::app.marketing.promotions.catalog-rules.edit.title')
    </x-slot>
\xa    {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.before') !!}
\xa    <!-- edit Catalog form -->\xa    <v-catalog-rule-edit-form></v-catalog-rule-edit-form>\xa\xa    {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.after') !!}

    @pushOnce('scripts')\xa        <!-- v catalog rule edit form template -->
        <script\xa            type="text/x-template"\xa            id="v-catalog-rule-edit-form-template"
        >
            <div>\xa                <x-admin::form
                    :action="route('admin.marketing.promotions.catalog_rules.update', $catalogRule->id)"\xa                    method="PUT"
                    enctype="multipart/form-data"
                >
\xa                    {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.create.create_form_controls.before') !!}

                    <div class="flex gap-4 justify-between items-center mt-3 max-sm:flex-wrap">\xa                        <p class="text-xl text-gray-800 dark:text-white font-bold">\xa                            @lang('admin::app.marketing.promotions.catalog-rules.edit.title')\xa                        </p>\xa
                        <div class="flex gap-x-2.5 items-center">
                            <!-- Cancel Button -->
                            <a\xa                                href="{{ route('admin.marketing.promotions.catalog_rules.index') }}"\xa                                class="transparent-button hover:bg-gray-200 dark:hover:bg-gray-800 dark:text-white"
                            >\xa                                @lang('admin::app.marketing.promotions.catalog-rules.edit.back-btn')\xa                            </a>\xa
                            <!-- Save buton -->
                            <button\xa                                type="submit"
                                class="primary-button"
                            >
                                @lang('admin::app.marketing.promotions.catalog-rules.edit.save-btn')
                            </button>\xa                        </div>\xa                    </div>\xa
                    <div class="flex gap-2.5 mt-3.5 max-xl:flex-wrap">\xa                        <div class="flex flex-col gap-2 flex-1 max-xl:flex-auto">

                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.general.before') !!}\xa\xa                            <!-- General Form -->
                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">\xa                                <p class="text-base text-gray-800 dark:text-white font-semibold mb-4">\xa                                    @lang('admin::app.marketing.promotions.catalog-rules.edit.general')\xa                                </p>\xa
                                <x-admin::form.control-group>
                                    <x-admin::form.control-group.label class="required">\xa                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.name')\xa                                    </x-admin::form.control-group.label>
\xa                                    <x-admin::form.control-group.control
                                        type="text"\xa                                        id="name"\xa                                        name="name"\xa                                        rules="required"
                                        :value="old('name') ?? $catalogRule->name"
                                        :label="trans('admin::app.marketing.promotions.catalog-rules.edit.name')"\xa                                        :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.name')"
                                    />
\xa                                    <x-admin::form.control-group.error control-name="name" />\xa                                </x-admin::form.control-group>

                                <x-admin::form.control-group class="!mb-0">
                                    <x-admin::form.control-group.label>\xa                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.description')
                                    </x-admin::form.control-group.label>
\xa                                    <x-admin::form.control-group.control
                                        type="textarea"
                                        class="text-gray-600 dark:text-gray-300"
                                        id="description"
                                        name="description"
                                        :value="old('description') ?? $catalogRule->description"\xa                                        :label="trans('admin::app.marketing.promotions.catalog-rules.edit.description')"\xa                                        :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.description')"\xa                                    />
\xa                                    <x-admin::form.control-group.error control-name="description" />
                                </x-admin::form.control-group>\xa                            </div>
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.general.after') !!}\xa
                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.conditions.before') !!}\xa
                            <!-- Conditions -->
                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">\xa                                <div class="flex gap-4 items-center justify-between">
                                    <p class="text-base text-gray-800 dark:text-white font-semibold">\xa                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.conditions')\xa                                    </p>\xa
                                    <x-admin::form.control-group class="!mb-0">\xa                                        <x-admin::form.control-group.control
                                            type="select"
                                            class="ltr:pr-10 rtl:pl-10 text-gray-400 dark:border-gray-800"\xa                                            id="condition_type"\xa                                            name="condition_type"\xa                                            v-model="conditionType"
                                            :label="trans('admin::app.marketing.promotions.catalog-rules.condition-type')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.catalog-rules.condition-type')"\xa                                        >
                                            <option value="1">\xa                                                @lang('admin::app.marketing.promotions.catalog-rules.edit.all-conditions-true')
                                            </option>\xa\xa                                            <option value="2">
                                                @lang('admin::app.marketing.promotions.catalog-rules.edit.any-conditions-true')\xa                                            </option>\xa                                        </x-admin::form.control-group.control>

                                        <x-admin::form.control-group.error control-name="condition_type" />\xa                                    </x-admin::form.control-group>
                                </div>
\xa                                <v-catalog-rule-condition-item
                                    v-for='(condition, index) in conditions'\xa                                    :condition="condition"
                                    :key="index"
                                    :index="index"
                                    @onRemoveCondition="removeCondition($event)"\xa                                >
                                </v-catalog-rule-condition-item>

                                <div\xa                                    class="secondary-button max-w-max mt-4"
                                    @click="addCondition"
                                >\xa                                    @lang('admin::app.marketing.promotions.catalog-rules.edit.add-condition')\xa                                </div>\xa\xa                            </div>
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.conditions.after') !!}\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.actions.before') !!}

                            <!-- Actions -->
                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">
                                <div class="grid gap-1.5">\xa                                    <p class="mb-4 text-base text-gray-800 dark:text-white font-semibold">
                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.actions')
                                    </p>
\xa                                    <div class="flex gap-4 max-sm:flex-wrap">
                                        <div class="w-full">\xa                                            @php($selectedOption = old('action_type') ?? $catalogRule->action_type)
\xa                                            <x-admin::form.control-group>
                                                <x-admin::form.control-group.label class="required">
                                                    @lang('admin::app.marketing.promotions.catalog-rules.edit.action-type')
                                                </x-admin::form.control-group.label>\xa
                                                <x-admin::form.control-group.control\xa                                                    type="select"
                                                    class="h-[39px]"\xa                                                    id="action_type"\xa                                                    name="action_type"
                                                    rules="required"
                                                    :value="old('action_type') ?? $selectedOption"\xa                                                    :label="trans('admin::app.marketing.promotions.catalog-rules.edit.action-type')"\xa                                                >\xa                                                    <option
                                                        value="by_percent"
                                                        {{ $selectedOption == 'by_percent' ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.percentage-product-price')\xa                                                    </option>
\xa                                                    <option
                                                        value="by_fixed"
                                                        {{ $selectedOption == 'by_fixed' ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.fixed-amount')\xa                                                    </option>
                                                </x-admin::form.control-group.control>\xa\xa                                                <x-admin::form.control-group.error control-name="action_type" />\xa                                            </x-admin::form.control-group>
                                        </div>\xa
                                        <div class="w-full">\xa                                            <x-admin::form.control-group>\xa                                                <x-admin::form.control-group.label class="required">
                                                    @lang('admin::app.marketing.promotions.catalog-rules.edit.discount-amount')\xa                                                </x-admin::form.control-group.label>\xa\xa                                                <x-admin::form.control-group.control
                                                    type="text"
                                                    id="discount_amount"
                                                    name="discount_amount"\xa                                                    rules="required"\xa                                                    :value="old('discount_amount') ?? $catalogRule->discount_amount"
                                                    :label="trans('admin::app.marketing.promotions.catalog-rules.edit.discount-amount')"
                                                    :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.discount-amount')"\xa                                                />\xa
                                                <x-admin::form.control-group.error control-name="discount_amount" />\xa                                            </x-admin::form.control-group>\xa                                        </div>
\xa                                        <div class="w-full">
                                            @php($selectedOption = old('end_other_rules') ?? $catalogRule->end_other_rules)\xa
                                            <x-admin::form.control-group>
                                                <x-admin::form.control-group.label>\xa                                                    @lang('admin::app.marketing.promotions.catalog-rules.edit.end-other-rules')
                                                </x-admin::form.control-group.label>
\xa                                                <x-admin::form.control-group.control
                                                    type="select"
                                                    class="h-[39px]"
                                                    id="end_other_rules"
                                                    name="end_other_rules"
                                                    :value="old('end_other_rules') ?? $selectedOption"\xa                                                    :label="trans('admin::app.marketing.promotions.catalog-rules.edit.end-other-rules')"
                                                >
                                                    <option
                                                        value="0"
                                                        {{ ! $selectedOption ? 'selected' : '' }}
                                                    >\xa                                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.no')
                                                    </option>

                                                    <option
                                                        value="1"
                                                        {{ $selectedOption ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.yes')
                                                    </option>\xa                                                </x-admin::form.control-group.control>

                                                <x-admin::form.control-group.error control-name="end_other_rules" />\xa                                            </x-admin::form.control-group>\xa                                        </div>\xa                                    </div>
                                </div>
                            </div>\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.actions.after') !!}\xa
                        </div>
\xa                        <!-- Rightsub components -->
                        <div class="flex flex-col gap-2 w-[360px] max-w-full max-sm:w-full">

                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.accordion.settings.before') !!}\xa\xa                            <!-- Settings -->
                            <x-admin::accordion>
                                <x-slot:header>
                                    <div class="flex items-center justify-between">\xa                                        <p class="p-2.5 text-base text-gray-800 dark:text-white font-semibold">
                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.settings')
                                        </p>
                                    </div>
                                </x-slot>\xa
                                <x-slot:content>\xa                                    <x-admin::form.control-group>\xa                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.priority')\xa                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control
                                            type="text"\xa                                            id="sort_order"
                                            name="sort_order"\xa                                            :value="old('sort_order') ?? $catalogRule->sort_order"
                                            :label="trans('admin::app.marketing.promotions.catalog-rules.edit.priority')"
                                            :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.priority')"\xa                                        />\xa\xa                                        <x-admin::form.control-group.error control-name="sort_order" />\xa                                    </x-admin::form.control-group>\xa\xa                                    <!--Channels-->
                                    <div class="mb-4">\xa                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.channels')
                                        </x-admin::form.control-group.label>\xa\xa                                        @php($selectedOptionIds = old('channels') ?: $catalogRule->channels->pluck('id')->toArray())
\xa                                        @foreach(core()->getAllChannels() as $channel)\xa                                            <x-admin::form.control-group class="flex gap-2.5 items-center !mb-2">
                                                <x-admin::form.control-group.control
                                                    type="checkbox"\xa                                                    :id="'channel_' . '_' . $channel->id"
                                                    name="channels[]"
                                                    rules="required"
                                                    :value="$channel->id"\xa                                                    :for="'channel_' . '_' . $channel->id"\xa                                                    :label="trans('admin::app.marketing.promotions.catalog-rules.edit.channels')"
                                                    :checked="in_array($channel->id, $selectedOptionIds)"
                                                />\xa
                                                <label\xa                                                    class="text-xs text-gray-600 dark:text-gray-300 font-medium cursor-pointer"
                                                    for="{{ 'channel_' . '_' . $channel->id }}"\xa                                                >\xa                                                    {{ core()->getChannelName($channel) }}\xa                                                </label>
                                            </x-admin::form.control-group>
                                        @endforeach\xa\xa                                        <x-admin::form.control-group.error control-name="channels[]" />
                                    </div>
\xa                                    <!-- Customer Groups -->
                                    <div class="mb-4">\xa                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.customer-groups')
                                        </x-admin::form.control-group.label>\xa\xa                                        @php($selectedOptionIds = old('customer_groups') ?: $catalogRule->customer_groups->pluck('id')->toArray())\xa
                                        @foreach(app('Webkul\Customer\Repositories\CustomerGroupRepository')->all() as $customerGroup)\xa                                            <x-admin::form.control-group class="flex gap-2.5 items-center !mb-2">\xa                                                <x-admin::form.control-group.control\xa                                                    type="checkbox"
                                                    :id="'customer_group_' . '_' . $customerGroup->id"
                                                    name="customer_groups[]"
                                                    rules="required"\xa                                                    :value="$customerGroup->id"
                                                    :for="'customer_group_' . '_' . $customerGroup->id"
                                                    :label="trans('admin::app.marketing.promotions.catalog-rules.edit.customer-groups')"\xa                                                    :checked="in_array($customerGroup->id, $selectedOptionIds)"
                                                />\xa\xa                                                <label\xa                                                    class="text-xs text-gray-600 dark:text-gray-300 font-medium cursor-pointer"\xa                                                    for="{{ 'customer_group_' . '_' . $customerGroup->id }}"\xa                                                >\xa                                                    {{ $customerGroup->name }}
                                                </label>
                                            </x-admin::form.control-group>\xa                                        @endforeach

                                        <x-admin::form.control-group.error control-name="customer_groups[]" />
                                    </div>
\xa                                    <!-- Status -->\xa                                    <x-admin::form.control-group class="!mb-0">\xa                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.status')
                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control\xa                                            type="switch"\xa                                            name="status"
                                            :value="$catalogRule->status"
                                            :label="trans('admin::app.marketing.promotions.catalog-rules.edit.status')"\xa                                            :checked="(boolean) $catalogRule->status"
                                        />\xa\xa                                        <x-admin::form.control-group.error control-name="status" />\xa                                    </x-admin::form.control-group>\xa                                </x-slot>
                            </x-admin::accordion>\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.accordion.settings.after') !!}
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.accordion.marketing_time.before') !!}\xa
                            <!-- Marketing Time -->
                            <x-admin::accordion>\xa                                <x-slot:header>
                                    <div class="flex items-center justify-between">
                                        <p class="p-2.5 text-base text-gray-800 dark:text-white font-semibold">\xa                                            @lang('admin::app.marketing.promotions.catalog-rules.edit.marketing-time')
                                        </p>
                                    </div>\xa                                </x-slot>\xa\xa                                <x-slot:content>\xa                                    <div class="flex gap-4">
                                        <x-admin::form.control-group class="!mb-0">\xa                                            <x-admin::form.control-group.label>
                                                @lang('admin::app.marketing.promotions.catalog-rules.edit.from')\xa                                            </x-admin::form.control-group.label>

                                            <x-admin::form.control-group.control
                                                type="date"\xa                                                id="starts_from"
                                                name="starts_from"\xa                                                :value="old('starts_from') ?? $catalogRule->starts_from"\xa                                                :label="trans('admin::app.marketing.promotions.catalog-rules.edit.from')"
                                                :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.from')"\xa                                            />\xa
                                            <x-admin::form.control-group.error control-name="starts_from" />\xa                                        </x-admin::form.control-group>

                                        <x-admin::form.control-group class="!mb-0">\xa                                            <x-admin::form.control-group.label>\xa                                                @lang('admin::app.marketing.promotions.catalog-rules.edit.to')
                                            </x-admin::form.control-group.label>
\xa                                            <x-admin::form.control-group.control\xa                                                type="date"\xa                                                id="ends_till"\xa                                                name="ends_till"\xa                                                :value="old('ends_till') ?? $catalogRule->ends_till"
                                                :label="trans('admin::app.marketing.promotions.catalog-rules.edit.to')"
                                                :placeholder="trans('admin::app.marketing.promotions.catalog-rules.edit.to')"\xa                                            />

                                            <x-admin::form.control-group.error control-name="ends_till" />
                                        </x-admin::form.control-group>\xa                                    </div>\xa                                </x-slot>\xa                            </x-admin::accordion>

                            {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.edit.card.accordion.marketing_time.after') !!}
\xa                        </div>
                    </div>

                    {!! view_render_event('bagisto.admin.marketing.promotions.catalog_rules.create.create_form_controls.after') !!}

                </x-admin::form>
            </div>\xa        </script>
\xa        <!-- v catalog rule edit form component -->
        <script type="module">
            app.component('v-catalog-rule-edit-form', {\xa                template: '#v-catalog-rule-edit-form-template',
\xa                data() {\xa                    return {
                        conditionType: {{ old('condition_type') ?: $catalogRule->condition_type }},\xa\xa                        conditions: @json($catalogRule->conditions ?: [])\xa                    }
                },\xa
                methods: {\xa                    addCondition() {
                        this.conditions.push({
                            'attribute': '',\xa                            'operator': '==',\xa                            'value': '',
                        });\xa                    },\xa
                    removeCondition(condition) {
                        let index = this.conditions.indexOf(condition)\xa\xa                        this.conditions.splice(index, 1)
                    },
\xa                    onSubmit(e) {\xa                        this.$root.onSubmit(e)
                    },\xa\xa                    redirectBack(fallbackUrl) {
                        this.$root.redirectBack(fallbackUrl)
                    }
                }\xa            })
        </script>\xa
        <!-- v catalog rule condition item form template -->
        <script type="text/x-template" id="v-catalog-rule-condition-item-template">\xa            <div class="flex gap-4 justify-between mt-4">
                <div class="flex gap-4 flex-1 max-sm:flex-wrap max-sm:flex-1">
                    <select\xa                        :name="['conditions[' + index + '][attribute]']"
                        :id="['conditions[' + index + '][attribute]']"\xa                        class="custom-select flex w-1/3 min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"
                        v-model="condition.attribute"\xa                    >\xa                        <option value="">@lang('admin::app.marketing.promotions.catalog-rules.edit.choose-condition-to-add')</option>\xa
                        <optgroup\xa                            v-for='(conditionAttribute, index) in conditionAttributes'
                            :label="conditionAttribute.label"
                        >
                            <option
                                v-for='(childAttribute, index) in conditionAttribute.children'
                                :value="childAttribute.key"\xa                                :text="childAttribute.label"\xa                            >\xa                            </option>\xa                        </optgroup>
                    </select>\xa
                    <select
                        :name="['conditions[' + index + '][operator]']"\xa                        class="custom-select flex w-1/3 min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"\xa                        v-model="condition.operator"
                        v-if="matchedAttribute"
                    >
                        <option\xa                            v-for='operator in conditionOperators[matchedAttribute.type]'
                            :value="operator.operator"\xa                            :text="operator.label"\xa                        >
                        </option>\xa                    </select>\xa
                    <div v-if="matchedAttribute">
                        <input\xa                            type="hidden"
                            :name="['conditions[' + index + '][attribute_type]']"\xa                            v-model="matchedAttribute.type"
                        >\xa
                        <div v-if="matchedAttribute.key == 'product|category_ids'">\xa                            <x-admin::tree.view\xa                                input-type="checkbox"\xa                                selection-type="individual"\xa                                id-field="id"\xa                                ::name-field="'conditions[' + index + '][value]'"\xa                                value-field="id"\xa                                ::items='matchedAttribute.options'
                                ::value='condition.value'
                                :fallback-locale="config('app.fallback_locale')"
                            />
                        </div>
\xa                        <div v-else>
                            <div
                                v-if="matchedAttribute.type == 'text'\xa                                    || matchedAttribute.type == 'price'\xa                                    || matchedAttribute.type == 'decimal'
                                    || matchedAttribute.type == 'integer'"\xa                            >\xa                                <v-field
                                    :name="`conditions[${index}][value]`"
                                    v-slot="{ field, errorMessage}"
                                    :id="`conditions[${index}][value]`"
                                    :rules="matchedAttribute.type == 'price' ? 'regex:^[0-9]+(\.[0-9]+)?$' : ''
                                        || matchedAttribute.type == 'decimal' ? 'regex:^[0-9]+(\.[0-9]+)?$' : ''\xa                                        || matchedAttribute.type == 'integer' ? 'regex:^[0-9]+(\.[0-9]+)?$' : ''\xa                                        || matchedAttribute.type == 'text' ? 'regex:^([A-Za-z0-9_ \'\-]+)$' : ''"
                                    label="@lang('admin::app.marketing.promotions.catalog-rules.edit.conditions')"\xa                                    v-model="condition.value"\xa                                >\xa                                    <input
                                        type="text"\xa                                        :class="{ 'border border-red-500': errorMessage }"\xa                                        class="flex w-[289px] min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"
                                        v-bind="field"\xa                                    />
                                </v-field>\xa\xa                                <v-error-message\xa                                    :name="`conditions[${index}][value]`"
                                    class="mt-1 text-red-500 text-xs italic"\xa                                    as="p"
                                >\xa                                </v-error-message>
                            </div>
\xa                            <div v-if="matchedAttribute.type == 'date'">
                                <x-admin::flat-picker.date class="!w-[140px]" ::allow-input="false">\xa                                    <input
                                        type="date"
                                        class="flex min-h-[39px] w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"\xa                                        :name="['conditions[' + index + '][value]']"\xa                                        v-model="condition.value"
                                    />\xa                                </x-admin::flat-picker.date>
                            </div>

                            <div v-if="matchedAttribute.type == 'datetime'">
                                <x-admin::flat-picker.date class="!w-[140px]" ::allow-input="false">
                                    <input\xa                                        type="datetime"
                                        class="flex min-h-[39px] w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"\xa                                        :name="['conditions[' + index + '][value]']"
                                        v-model="condition.value"
                                    />
                                </x-admin::flat-picker.date>
                            </div>\xa\xa                            <div v-if="matchedAttribute.type == 'boolean'">\xa                                <select
                                    :name="['conditions[' + index + '][value]']"\xa                                    class="custom-select inline-flex gap-x-1 justify-between items-center max-h-10 w-full max-w-[196px] py-1.5 ltr:pl-3\x9rtl:pr-3 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal cursor-pointer marker:shadow appearance-none focus:ring-2 focus:outline-none focus:ring-black transition-all hover:border-gray-400"\xa                                    v-model="condition.value"
                                >
                                    <option value="1">
                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.yes')\xa                                    </option>\xa
                                    <option value="0">
                                        @lang('admin::app.marketing.promotions.catalog-rules.edit.no')
                                    </option>
                                </select>
                            </div>\xa
                            <div v-if="matchedAttribute.type == 'select' || matchedAttribute.type == 'radio'">\xa                                <select
                                    :name="['conditions[' + index + '][value]']"\xa                                    class="custom-select flex w-[289px] min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"\xa                                    v-if="matchedAttribute.key != 'catalog|state'"\xa                                    v-model="condition.value"
                                >\xa                                    <option\xa                                        v-for='option in matchedAttribute.options'
                                        :value="option.id"
                                        :text="option.admin_name"
                                    >
                                    </option>
                                </select>\xa\xa                                <select\xa                                    :name="['conditions[' + index + '][value]']"\xa                                    class="custom-select flex w-[289px] min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"\xa                                    v-model="condition.value"
                                    v-else
                                >\xa                                    <optgroup
                                        v-for='option in matchedAttribute.options'
                                        :label="option.admin_name"
                                    >
                                        <option
                                            v-for='state in option.states'
                                            :value="state.code"\xa                                            :text="state.admin_name"
                                        >\xa                                        </option>\xa                                    </optgroup>
                                </select>
                            </div>\xa
                            <div v-if="matchedAttribute.type == 'multiselect' || matchedAttribute.type == 'checkbox'">
                                <select\xa                                    :name="['conditions[' + index + '][value][]']"
                                    class="custom-select flex w-[289px] min:w-1/3 h-10 py-1.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 ltr:pr-10 rtl:pl-10"\xa                                    v-model="condition.value"
                                    multiple\xa                                >
                                    <option
                                        v-for='option in matchedAttribute.options'\xa                                        :value="option.id"\xa                                        :text="option.admin_name"
                                    >\xa                                    </option>\xa                                </select>\xa                            </div>\xa                        </div>\xa                    </div>\xa                </div>

                <span
                    class="icon-delete max-h-9 max-w-9 text-2xl p-1.5 rounded-md cursor-pointer transition-all hover:bg-gray-100 dark:hover:bg-gray-950 max-sm:place-self-center"
                    @click="removeCondition"
                >\xa                </span>
            </div>\xa        </script>
\xa        <!-- v catalog rule condition item component -->\xa        <script type="module">
            app.component('v-catalog-rule-condition-item', {
                template: "#v-catalog-rule-condition-item-template",\xa
                props: ['index', 'condition'],
\xa                data() {\xa                    return {\xa                        conditionAttributes: @json(app('\Webkul\CatalogRule\Repositories\CatalogRuleRepository')->getConditionAttributes()),\xa\xa                        attributeTypeIndexes: {
                            'product': 0\xa                        },\xa\xa                        conditionOperators: {\xa                            'price': [{
                                    'operator': '==',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"
                                }, {
                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }, {\xa                                    'operator': '>=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-greater-than')"
                                }, {
                                    'operator': '<=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-less-than')"
                                }, {
                                    'operator': '>',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.greater-than')"
                                }, {
                                    'operator': '<',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.less-than')"\xa                                }],
                            'decimal': [{\xa                                    'operator': '==',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"
                                }, {
                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }, {\xa                                    'operator': '>=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-greater-than')"\xa                                }, {
                                    'operator': '<=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-less-than')"
                                }, {\xa                                    'operator': '>',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.greater-than')"\xa                                }, {\xa                                    'operator': '<',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.less-than')"\xa                                }],
                            'integer': [{\xa                                    'operator': '==',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {\xa                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"
                                }, {\xa                                    'operator': '>=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-greater-than')"
                                }, {
                                    'operator': '<=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-less-than')"\xa                                }, {
                                    'operator': '>',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.greater-than')"
                                }, {\xa                                    'operator': '<',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.less-than')"
                                }],\xa                            'text': [{
                                    'operator': '==',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {\xa                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"
                                }, {
                                    'operator': '{}',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.contain')"\xa                                }, {\xa                                    'operator': '!{}',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.does-not-contain')"\xa                                }],
                            'boolean': [{
                                    'operator': '==',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"
                                }, {
                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }],
                            'date': [{
                                    'operator': '==',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {\xa                                    'operator': '!=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }, {\xa                                    'operator': '>=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-greater-than')"\xa                                }, {
                                    'operator': '<=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-less-than')"
                                }, {
                                    'operator': '>',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.greater-than')"
                                }, {\xa                                    'operator': '<',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.less-than')"
                                }],\xa                            'datetime': [{\xa                                    'operator': '==',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {\xa                                    'operator': '!=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }, {
                                    'operator': '>=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-greater-than')"\xa                                }, {\xa                                    'operator': '<=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.equals-or-less-than')"
                                }, {\xa                                    'operator': '>',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.greater-than')"
                                }, {
                                    'operator': '<',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.less-than')"
                                }],
                            'select': [{
                                    'operator': '==',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {
                                    'operator': '!=',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"
                                }],
                            'radio': [{
                                    'operator': '==',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-equal-to')"\xa                                }, {\xa                                    'operator': '!=',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.is-not-equal-to')"\xa                                }],
                            'multiselect': [{\xa                                    'operator': '{}',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.contains')"\xa                                }, {
                                    'operator': '!{}',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.does-not-contain')"
                                }],\xa                            'checkbox': [{\xa                                    'operator': '{}',
                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.contains')"
                                }, {
                                    'operator': '!{}',\xa                                    'label': "@lang('admin::app.marketing.promotions.catalog-rules.edit.does-not-contain')"\xa                                }]
                        }
                    }\xa                },\xa
                computed: {
                    matchedAttribute: function () {
                        if (this.condition.attribute == '')
                            return;\xa\xa                        let self = this;
\xa                        let attributeIndex = this.attributeTypeIndexes[this.condition.attribute.split("|")[0]];

                        let matchedAttribute = this.conditionAttributes[attributeIndex]['children'].filter(function (attribute) {\xa                            return attribute.key == self.condition.attribute;
                        });\xa
                        if (matchedAttribute[0]['type'] == 'multiselect' || matchedAttribute[0]['type'] == 'checkbox') {\xa
                            this.condition.value = this.condition.value == '' && this.condition.value != undefined\xa                                    ? []\xa                                    : Array.isArray(this.condition.value) ? this.condition.value : [];
                        }\xa\xa                        return matchedAttribute[0];\xa                    }\xa                },
\xa                methods: {\xa                    removeCondition() {
                        this.$emit('onRemoveCondition', this.condition)\xa                    },\xa                }
            });\xa        </script>\xa    @endPushOnce
</x-admin::layouts>
"; ?>

Did this file decode correctly?

Original Code

<?php
/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.14  |
    |              on 2024-07-22 17:18:01              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
 echo "\74\x78\55\141\144\155\151\x6e\x3a\x3a\x6c\141\171\x6f\x75\x74\x73\76\12\x20\x20\x20\40\74\x21\55\x2d\x20\x54\x69\x74\x6c\145\40\x6f\x66\40\164\150\x65\40\x70\x61\147\145\x20\x2d\x2d\x3e\xa\x20\x20\40\x20\74\x78\55\x73\x6c\157\164\x3a\164\x69\x74\x6c\145\76\xa\x20\40\x20\40\x20\x20\40\40\x40\154\x61\x6e\147\50\47\x61\x64\155\151\156\x3a\x3a\x61\x70\x70\56\155\141\x72\x6b\x65\164\151\x6e\147\56\x70\162\157\155\x6f\x74\151\x6f\x6e\163\x2e\x63\141\164\x61\154\x6f\147\55\x72\165\154\x65\x73\x2e\x65\144\x69\x74\56\x74\151\x74\154\x65\47\51\12\x20\x20\x20\x20\74\x2f\170\55\x73\154\157\x74\76\12\xa\x20\40\x20\x20\173\41\41\x20\x76\x69\145\x77\137\x72\145\x6e\144\145\x72\137\145\166\145\x6e\x74\50\x27\x62\141\147\151\x73\164\x6f\x2e\141\x64\x6d\151\156\56\x6d\141\162\x6b\x65\x74\151\x6e\147\56\160\162\157\x6d\x6f\164\x69\x6f\156\x73\x2e\143\141\164\x61\x6c\157\147\x5f\x72\x75\x6c\145\x73\x2e\145\144\151\x74\56\142\145\x66\x6f\x72\x65\47\51\x20\x21\x21\x7d\12\xa\40\x20\40\x20\x3c\41\x2d\x2d\40\x65\144\151\x74\x20\x43\x61\164\x61\x6c\157\147\x20\146\157\x72\x6d\40\x2d\55\x3e\xa\x20\40\40\40\74\x76\55\x63\141\164\141\154\157\x67\55\162\x75\x6c\x65\55\145\144\151\x74\55\x66\157\x72\155\76\74\x2f\x76\x2d\143\141\164\x61\x6c\157\147\x2d\162\x75\x6c\145\55\x65\x64\x69\164\x2d\x66\x6f\x72\x6d\x3e\xa\xa\x20\x20\x20\x20\x7b\x21\41\x20\x76\151\145\x77\137\x72\x65\156\x64\145\162\137\145\166\145\156\164\50\x27\x62\141\147\151\x73\x74\x6f\56\141\144\x6d\x69\x6e\56\155\141\162\x6b\x65\164\151\156\147\x2e\160\162\x6f\155\x6f\x74\151\157\156\163\56\143\141\164\x61\154\157\x67\x5f\x72\x75\154\145\163\x2e\x65\x64\x69\164\x2e\141\146\x74\145\162\47\x29\x20\41\x21\x7d\12\12\40\x20\x20\x20\x40\x70\165\x73\150\117\x6e\x63\145\50\47\163\143\x72\151\x70\164\163\x27\51\xa\40\40\40\x20\40\x20\x20\x20\x3c\x21\55\55\x20\x76\40\x63\x61\164\x61\x6c\157\147\x20\162\165\154\x65\40\x65\x64\x69\164\40\x66\x6f\162\155\x20\164\x65\x6d\160\x6c\141\164\145\40\x2d\55\76\12\x20\x20\x20\x20\x20\40\40\x20\74\163\143\x72\x69\160\x74\xa\x20\40\40\40\x20\40\40\40\40\40\40\40\x74\171\160\145\x3d\x22\164\145\x78\x74\x2f\x78\55\164\145\x6d\x70\x6c\141\x74\x65\42\xa\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\151\144\x3d\42\x76\55\143\x61\164\x61\154\x6f\147\55\x72\165\154\145\55\x65\144\x69\164\x2d\x66\x6f\x72\155\55\x74\145\155\x70\154\x61\164\145\42\12\x20\40\x20\x20\x20\x20\40\40\76\12\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\74\144\151\166\76\xa\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x3c\x78\55\x61\144\x6d\x69\156\x3a\72\x66\157\x72\155\12\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x3a\x61\143\x74\x69\157\x6e\x3d\x22\x72\x6f\165\164\145\50\x27\141\144\x6d\151\156\x2e\155\141\162\x6b\145\x74\151\x6e\147\x2e\x70\162\157\155\157\164\151\157\156\x73\56\143\141\x74\141\x6c\x6f\147\x5f\x72\165\x6c\145\x73\x2e\x75\x70\144\x61\x74\145\x27\x2c\40\44\x63\141\x74\x61\x6c\157\147\x52\x75\154\x65\55\x3e\151\144\x29\42\xa\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\155\145\164\150\157\144\x3d\42\x50\x55\x54\x22\12\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\145\156\x63\x74\x79\160\x65\75\x22\155\165\x6c\164\151\x70\141\162\x74\57\x66\157\x72\x6d\x2d\x64\x61\164\x61\x22\12\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\76\12\xa\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\173\41\41\40\166\x69\145\x77\137\x72\x65\x6e\144\145\162\x5f\145\166\145\156\x74\x28\47\142\141\x67\x69\x73\x74\157\56\141\x64\x6d\x69\x6e\56\x6d\141\x72\153\x65\x74\x69\156\x67\56\x70\162\157\155\157\x74\x69\157\x6e\x73\x2e\x63\141\164\141\154\x6f\147\137\x72\165\154\x65\x73\56\143\x72\x65\141\x74\x65\x2e\143\162\145\x61\x74\145\x5f\x66\157\x72\155\x5f\143\157\156\164\x72\157\x6c\x73\56\x62\x65\x66\157\x72\x65\x27\x29\40\41\41\175\12\12\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\x20\40\40\74\x64\151\166\x20\x63\154\x61\x73\163\x3d\x22\x66\154\x65\x78\x20\147\141\x70\x2d\x34\40\152\x75\x73\x74\x69\146\171\55\142\145\x74\167\x65\x65\156\x20\x69\164\x65\155\x73\55\x63\145\x6e\x74\145\162\x20\x6d\164\x2d\63\40\x6d\x61\x78\x2d\163\x6d\72\146\154\145\170\x2d\167\162\x61\x70\42\x3e\xa\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\74\x70\40\143\x6c\x61\163\163\x3d\x22\x74\x65\170\x74\x2d\170\x6c\x20\x74\x65\x78\x74\x2d\x67\162\x61\171\55\70\x30\x30\x20\x64\141\x72\153\x3a\164\x65\170\164\x2d\167\x68\x69\x74\145\x20\x66\x6f\x6e\x74\x2d\142\x6f\x6c\x64\42\76\xa\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\100\154\x61\156\147\50\x27\141\x64\155\151\x6e\x3a\x3a\x61\160\160\56\x6d\141\x72\x6b\x65\x74\151\x6e\147\x2e\x70\x72\157\155\157\x74\151\x6f\x6e\x73\56\143\x61\164\141\x6c\x6f\x67\x2d\x72\165\154\x65\163\x2e\x65\144\x69\x74\x2e\164\151\164\154\145\47\x29\xa\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x3c\x2f\160\76\xa\12\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\74\x64\151\166\x20\x63\x6c\141\163\163\75\x22\x66\154\145\x78\x20\147\x61\160\x2d\x78\x2d\62\x2e\x35\40\151\x74\x65\155\163\55\143\145\x6e\x74\x65\162\42\x3e\12\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\74\x21\55\55\40\x43\141\x6e\143\145\154\x20\x42\x75\x74\x74\x6f\156\x20\55\x2d\76\12\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x3c\141\xa\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\150\162\x65\x66\75\42\173\173\40\162\x6f\x75\x74\x65\x28\47\x61\x64\x6d\x69\156\x2e\x6d\141\x72\x6b\145\x74\151\x6e\x67\56\x70\x72\x6f\x6d\x6f\164\151\x6f\156\163\x2e\x63\x61\164\141\x6c\157\x67\x5f\162\165\154\145\x73\x2e\x69\x6e\x64\x65\170\x27\51\40\x7d\175\42\xa\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\143\154\x61\163\x73\x3d\42\164\162\141\156\x73\x70\141\x72\x65\156\164\55\x62\165\164\164\x6f\x6e\40\x68\x6f\166\x65\162\72\x62\x67\x2d\147\x72\141\x79\x2d\x32\x30\60\40\144\141\162\x6b\72\150\x6f\x76\145\x72\x3a\142\147\55\147\162\141\x79\55\x38\x30\x30\40\144\x61\x72\153\x3a\164\x65\170\164\x2d\167\x68\151\x74\x65\42\12\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x3e\xa\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x40\x6c\141\x6e\x67\x28\47\141\x64\155\x69\156\72\72\141\160\160\56\155\141\x72\153\145\x74\x69\x6e\147\x2e\160\x72\x6f\x6d\x6f\164\151\x6f\x6e\x73\56\x63\x61\164\x61\x6c\x6f\147\55\162\165\x6c\x65\163\56\145\x64\151\164\x2e\142\x61\143\x6b\x2d\x62\x74\x6e\47\x29\xa\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\74\x2f\x61\x3e\xa\12\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x3c\41\55\x2d\x20\123\x61\x76\145\40\x62\165\x74\x6f\156\x20\x2d\55\76\12\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x3c\x62\165\x74\x74\x6f\156\xa\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x74\x79\x70\145\75\x22\x73\165\x62\155\151\164\42\12\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\143\x6c\x61\x73\x73\75\42\x70\162\151\155\141\162\x79\x2d\x62\165\164\x74\157\x6e\x22\12\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x3e\12\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\x20\x40\154\x61\156\147\50\x27\x61\x64\155\x69\156\72\72\141\x70\x70\56\155\141\x72\153\145\x74\x69\x6e\147\x2e\x70\162\157\155\x6f\164\x69\x6f\x6e\x73\x2e\143\x61\164\141\x6c\157\147\55\162\165\x6c\145\x73\x2e\x65\x64\x69\x74\56\163\141\x76\x65\x2d\x62\x74\156\x27\x29\12\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\74\x2f\142\165\164\164\157\156\76\xa\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\74\x2f\x64\151\166\76\xa\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x3c\57\x64\x69\166\76\xa\12\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x3c\144\151\166\40\143\154\141\x73\163\x3d\x22\x66\x6c\x65\x78\40\147\x61\160\55\62\56\65\40\x6d\x74\55\63\56\x35\40\x6d\x61\170\x2d\170\154\x3a\x66\154\145\170\x2d\167\162\x61\x70\x22\76\xa\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x3c\x64\151\166\x20\143\x6c\141\x73\x73\x3d\42\x66\154\145\x78\40\146\x6c\x65\x78\55\x63\157\x6c\x20\x67\141\160\55\x32\40\x66\154\x65\x78\x2d\61\40\155\141\x78\55\x78\x6c\x3a\146\x6c\145\170\55\141\165\164\157\x22\76\12\12\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x7b\x21\41\x20\166\x69\x65\x77\x5f\x72\145\156\x64\x65\x72\137\145\166\x65\x6e\164\x28\x27\142\141\147\151\163\164\157\x2e\141\x64\x6d\151\156\x2e\155\141\162\x6b\145\x74\151\x6e\x67\56\160\162\x6f\x6d\157\164\151\157\156\163\56\x63\x61\x74\141\x6c\157\147\137\162\x75\154\x65\163\x2e\x65\144\151\x74\x2e\x63\141\162\x64\x2e\x67\x65\156\x65\x72\x61\x6c\x2e\x62\x65\146\157\162\145\x27\x29\x20\41\41\x7d\xa\xa\40\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\74\x21\x2d\55\40\x47\145\156\145\x72\x61\x6c\40\x46\157\x72\155\40\x2d\x2d\x3e\12\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x3c\144\x69\x76\x20\x63\x6c\x61\163\163\75\42\x70\55\64\x20\x62\147\55\x77\x68\151\164\145\x20\x64\141\x72\x6b\x3a\x62\147\x2d\x67\x72\141\x79\x2d\x39\60\60\x20\162\x6f\x75\x6e\144\x65\144\x20\142\157\x78\55\163\x68\x61\x64\x6f\x77\x22\x3e\xa\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\74\160\x20\x63\154\x61\163\163\x3d\42\x74\145\170\164\x2d\x62\x61\163\x65\40\x74\145\x78\x74\55\147\x72\141\171\55\70\60\60\40\144\141\162\x6b\x3a\x74\145\170\x74\55\x77\x68\151\x74\x65\40\x66\x6f\156\x74\x2d\x73\145\x6d\x69\x62\157\154\x64\40\155\142\55\x34\x22\76\xa\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\x40\x6c\x61\156\147\50\47\141\144\x6d\151\x6e\x3a\72\x61\x70\160\56\x6d\x61\162\153\x65\x74\151\156\x67\56\160\x72\x6f\x6d\157\164\x69\157\156\x73\x2e\x63\141\164\x61\154\x6f\147\55\x72\x75\154\145\163\x2e\x65\x64\151\x74\56\x67\x65\156\x65\162\x61\x6c\47\51\xa\40\40\40\40\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x3c\x2f\x70\76\xa\12\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x3c\170\x2d\x61\x64\x6d\151\x6e\72\x3a\146\157\162\x6d\x2e\143\x6f\x6e\164\x72\x6f\154\x2d\147\x72\x6f\x75\160\76\12\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\74\x78\55\141\x64\x6d\151\156\x3a\72\146\x6f\x72\155\x2e\x63\x6f\x6e\x74\162\x6f\154\x2d\x67\162\157\165\x70\x2e\x6c\x61\142\145\x6c\40\x63\154\x61\163\x73\x3d\x22\x72\145\161\x75\151\162\145\x64\x22\x3e\xa\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x40\154\x61\156\147\50\x27\x61\x64\155\151\156\72\72\141\x70\160\56\x6d\x61\x72\x6b\x65\x74\151\156\x67\56\160\162\157\155\x6f\x74\x69\157\x6e\163\56\x63\x61\x74\x61\x6c\x6f\147\55\x72\165\x6c\x65\x73\56\x65\x64\x69\x74\x2e\x6e\x61\x6d\x65\x27\51\xa\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\74\57\170\55\141\x64\x6d\151\x6e\72\72\146\x6f\162\155\56\143\157\x6e\x74\x72\x6f\154\x2d\147\x72\x6f\165\160\x2e\x6c\x61\142\x65\x6c\x3e\12\xa\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\74\x78\55\x61\x64\155\x69\156\72\72\x66\x6f\x72\155\x2e\143\157\156\164\x72\157\154\55\147\x72\x6f\x75\160\56\143\x6f\156\164\x72\x6f\154\12\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\164\x79\160\145\75\42\x74\x65\170\x74\x22\xa\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\151\144\75\x22\x6e\x61\x6d\145\42\xa\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\156\x61\155\x65\x3d\42\156\141\x6d\x65\42\xa\40\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x72\x75\x6c\x65\x73\x3d\x22\x72\145\x71\x75\151\x72\145\144\42\12\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x3a\x76\x61\154\x75\145\x3d\x22\x6f\154\144\50\x27\x6e\141\155\145\47\51\x20\77\77\x20\x24\143\141\x74\141\x6c\157\x67\122\165\154\145\55\76\x6e\141\155\145\x22\12\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\72\154\x61\x62\145\154\x3d\x22\164\x72\x61\156\x73\50\47\x61\x64\x6d\x69\156\72\72\141\x70\x70\56\155\141\x72\x6b\x65\x74\x69\156\x67\x2e\x70\x72\x6f\155\x6f\164\x69\x6f\156\163\56\143\x61\164\x61\154\157\x67\x2d\x72\x75\154\x65\163\x2e\145\x64\x69\x74\56\156\141\155\145\x27\x29\42\xa\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\72\160\x6c\141\x63\145\150\157\154\144\x65\x72\75\42\x74\x72\141\x6e\163\50\x27\141\x64\155\x69\x6e\x3a\72\141\160\160\x2e\155\x61\x72\153\x65\164\x69\156\x67\x2e\x70\162\x6f\x6d\x6f\164\x69\x6f\156\x73\x2e\x63\141\164\x61\154\x6f\147\55\x72\165\154\x65\x73\x2e\145\x64\x69\164\56\156\141\x6d\x65\x27\x29\42\12\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x2f\x3e\12\xa\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\74\x78\55\141\144\155\x69\156\72\72\146\157\x72\x6d\56\x63\x6f\x6e\164\x72\157\154\x2d\x67\162\157\x75\x70\56\145\162\x72\x6f\x72\40\x63\x6f\x6e\x74\162\157\154\55\156\x61\x6d\x65\75\x22\156\x61\x6d\145\42\x20\57\76\xa\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x3c\x2f\170\x2d\141\144\155\151\156\72\x3a\x66\x6f\162\155\56\x63\157\156\x74\162\x6f\x6c\x2d\147\x72\x6f\165\160\76\12\12\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\74\x78\x2d\141\x64\155\151\x6e\72\x3a\146\x6f\x72\155\x2e\143\x6f\x6e\164\162\x6f\154\55\147\x72\157\x75\160\x20\x63\x6c\x61\x73\163\x3d\x22\x21\x6d\x62\55\60\x22\76\12\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\74\x78\55\141\x64\x6d\x69\156\x3a\72\x66\x6f\162\155\x2e\143\x6f\156\x74\x72\157\x6c\55\x67\162\x6f\165\x70\56\x6c\x61\x62\145\x6c\76\xa\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\100\x6c\141\156\147\50\x27\x61\144\x6d\x69\x6e\72\72\x61\x70\160\56\x6d\x61\162\153\145\x74\x69\156\147\56\x70\162\157\x6d\157\x74\x69\157\156\163\56\x63\141\x74\x61\154\x6f\147\x2d\162\x75\154\145\163\x2e\145\144\x69\x74\56\x64\145\x73\x63\162\x69\160\164\x69\157\x6e\47\x29\12\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x3c\x2f\x78\x2d\141\x64\x6d\151\156\x3a\72\x66\x6f\x72\155\x2e\143\157\156\x74\162\x6f\x6c\55\147\162\x6f\165\x70\x2e\x6c\141\x62\145\154\x3e\12\xa\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x3c\170\55\141\144\155\x69\x6e\72\x3a\x66\x6f\162\x6d\x2e\143\x6f\156\164\162\157\154\55\147\x72\157\x75\160\56\x63\x6f\156\164\x72\x6f\154\12\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\164\171\x70\145\75\42\x74\145\170\x74\141\162\x65\x61\x22\12\x20\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\143\x6c\141\163\163\75\42\x74\x65\x78\x74\x2d\x67\162\141\x79\55\66\60\60\x20\x64\x61\x72\153\x3a\x74\145\170\164\55\147\162\x61\x79\x2d\63\x30\x30\x22\12\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\151\x64\75\x22\x64\145\163\x63\x72\151\x70\164\x69\x6f\156\42\12\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\40\40\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x6e\141\x6d\x65\75\42\x64\x65\x73\143\162\151\160\x74\151\157\x6e\x22\12\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x3a\x76\x61\x6c\165\x65\75\42\x6f\x6c\x64\50\x27\x64\145\x73\143\x72\151\x70\164\x69\157\156\x27\51\x20\77\77\x20\44\143\x61\x74\141\154\x6f\147\122\165\154\145\55\76\x64\145\x73\143\162\151\x70\x74\151\157\x6e\x22\xa\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x3a\154\x61\x62\145\x6c\75\42\164\x72\141\156\163\x28\47\x61\x64\155\x69\x6e\x3a\72\x61\160\160\56\x6d\141\x72\153\145\164\151\x6e\x67\x2e\160\162\x6f\155\157\164\151\x6f\x6e\163\56\143\x61\164\x61\154\x6f\147\x2d\162\165\x6c\145\x73\56\x65\144\151\x74\56\x64\x65\163\143\x72\151\x70\164\x69\x6f\x6e\47\51\42\xa\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\72\x70\x6c\141\x63\145\x68\157\x6c\144\145\x72\75\x22\x74\162\x61\x6e\163\x28\47\141\x64\155\151\156\x3a\x3a\x61\x70\x70\56\155\x61\162\x6b\145\x74\151\x6e\147\x2e\x70\x72\157\155\x6f\x74\x69\157\156\x73\56\x63\141\164\141\x6c\157\x67\55\x72\x75\x6c\x65\x73\x2e\145\x64\x69\164\x2e\144\145\x73\x63\162\x69\x70\164\x69\157\156\47\x29\x22\xa\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\57\x3e\12\xa\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x3c\170\55\141\x64\155\x69\156\72\x3a\x66\x6f\x72\155\56\x63\x6f\156\x74\162\x6f\x6c\x2d\x67\x72\x6f\x75\160\56\145\162\162\157\162\40\x63\157\156\x74\x72\x6f\154\55\x6e\x61\155\145\x3d\42\x64\145\x73\143\x72\x69\160\x74\151\x6f\156\42\x20\x2f\x3e\12\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\74\57\170\55\141\x64\155\x69\156\72\x3a\146\x6f\162\x6d\56\x63\157\x6e\x74\162\x6f\154\55\147\162\157\x75\160\76\xa\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x3c\57\144\x69\166\76\12\xa\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x7b\41\x21\40\166\x69\145\167\x5f\x72\x65\x6e\144\x65\x72\137\145\x76\145\x6e\x74\50\x27\x62\141\147\x69\x73\164\157\56\x61\x64\x6d\x69\x6e\56\155\141\x72\153\x65\164\151\x6e\147\x2e\x70\x72\x6f\x6d\x6f\164\151\x6f\156\163\56\143\141\164\141\x6c\x6f\147\x5f\162\165\154\145\163\56\145\x64\151\x74\x2e\x63\141\x72\144\x2e\147\145\156\145\x72\141\154\56\x61\x66\164\145\x72\x27\x29\40\41\x21\175\xa\12\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\173\41\41\40\166\x69\x65\x77\137\x72\x65\x6e\x64\145\x72\x5f\145\166\145\x6e\164\50\x27\x62\141\147\151\x73\x74\x6f\56\141\x64\x6d\x69\156\x2e\x6d\141\x72\x6b\145\164\x69\x6e\x67\56\x70\x72\x6f\x6d\157\x74\151\157\156\163\56\x63\x61\x74\141\154\157\147\137\162\x75\154\145\x73\56\x65\144\x69\164\x2e\x63\x61\x72\x64\x2e\x63\157\x6e\144\151\x74\x69\x6f\156\163\56\x62\x65\x66\157\162\x65\x27\51\x20\x21\x21\175\xa\12\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\x3c\41\55\x2d\40\x43\157\156\x64\151\x74\x69\157\x6e\x73\40\55\x2d\x3e\12\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\74\144\x69\x76\40\x63\x6c\141\x73\x73\x3d\42\160\55\64\40\142\147\55\x77\150\x69\164\145\40\x64\x61\162\x6b\x3a\x62\147\55\147\x72\141\171\55\x39\x30\60\x20\162\x6f\x75\x6e\x64\x65\144\40\142\157\170\55\x73\x68\141\x64\157\x77\42\x3e\xa\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x3c\144\x69\x76\x20\x63\x6c\141\x73\163\x3d\x22\x66\x6c\145\x78\40\147\x61\160\55\64\40\151\164\145\x6d\163\55\x63\145\156\x74\145\x72\40\x6a\165\x73\x74\151\x66\x79\x2d\142\145\x74\167\x65\x65\156\x22\76\12\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x3c\160\40\143\154\x61\x73\x73\x3d\42\x74\145\x78\x74\x2d\x62\141\163\x65\x20\x74\145\x78\164\55\x67\x72\141\171\x2d\70\60\60\40\144\141\x72\x6b\72\x74\145\170\164\x2d\167\x68\151\164\x65\40\x66\x6f\x6e\164\x2d\163\145\155\151\x62\157\154\x64\x22\76\xa\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x40\154\141\x6e\x67\50\47\141\x64\155\151\156\72\72\141\160\160\x2e\155\x61\x72\x6b\145\x74\151\x6e\147\x2e\x70\x72\157\x6d\157\x74\x69\157\156\163\56\x63\141\x74\x61\154\157\147\x2d\162\165\154\x65\x73\56\x65\x64\x69\164\56\143\157\156\144\151\164\151\x6f\x6e\163\x27\x29\xa\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\x3c\57\x70\x3e\xa\12\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\40\x3c\170\55\141\x64\x6d\151\156\72\x3a\x66\x6f\162\155\56\143\157\x6e\x74\x72\157\x6c\x2d\147\x72\x6f\x75\160\40\143\154\x61\x73\x73\x3d\42\x21\155\142\55\x30\x22\x3e\xa\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x3c\x78\55\x61\144\x6d\x69\x6e\x3a\x3a\146\157\x72\x6d\x2e\x63\x6f\156\x74\162\x6f\x6c\55\x67\x72\157\x75\160\56\x63\x6f\156\x74\162\157\154\12\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x74\x79\160\x65\75\x22\x73\145\154\145\x63\x74\42\12\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x63\154\x61\x73\x73\x3d\x22\154\x74\x72\x3a\x70\x72\55\61\x30\x20\x72\x74\154\x3a\x70\x6c\x2d\x31\x30\x20\164\x65\x78\x74\x2d\147\x72\x61\171\55\x34\x30\x30\x20\x64\141\x72\153\x3a\142\157\x72\144\x65\162\x2d\147\x72\141\171\x2d\x38\x30\x30\x22\xa\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\151\x64\75\42\x63\157\156\x64\x69\x74\x69\157\x6e\x5f\x74\171\x70\145\x22\xa\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x6e\141\155\x65\75\42\143\157\x6e\144\x69\x74\x69\x6f\156\137\x74\x79\x70\145\42\xa\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x76\x2d\x6d\157\x64\x65\x6c\75\42\x63\157\156\144\151\x74\x69\x6f\156\124\171\x70\x65\42\12\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\40\x20\72\154\x61\x62\145\154\75\42\x74\162\141\x6e\x73\x28\47\x61\x64\155\151\156\x3a\72\141\160\160\56\x6d\141\162\x6b\x65\164\x69\x6e\x67\x2e\160\x72\x6f\155\x6f\x74\x69\x6f\156\163\56\143\141\x74\141\154\157\147\55\x72\x75\x6c\x65\163\56\x63\157\156\x64\x69\x74\x69\x6f\x6e\x2d\x74\171\160\145\47\51\x22\xa\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\72\160\x6c\x61\x63\x65\150\157\x6c\x64\145\162\75\x22\x74\x72\x61\156\x73\x28\47\141\144\155\151\x6e\x3a\72\x61\160\x70\56\155\141\162\153\x65\164\151\x6e\147\x2e\160\162\x6f\155\x6f\x74\x69\157\x6e\x73\56\x63\141\x74\x61\x6c\x6f\x67\x2d\162\165\x6c\145\x73\x2e\143\x6f\156\x64\151\164\151\x6f\x6e\55\164\171\x70\145\x27\51\42\xa\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\76\12\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\74\x6f\x70\x74\x69\x6f\x6e\40\x76\141\x6c\165\x65\75\x22\61\42\x3e\xa\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\100\x6c\x61\156\147\50\x27\x61\144\x6d\151\x6e\x3a\72\x61\160\x70\56\155\x61\162\153\145\164\151\156\147\x2e\160\162\157\x6d\157\x74\151\x6f\x6e\x73\56\x63\x61\x74\141\154\x6f\147\x2d\162\x75\154\x65\163\x2e\x65\x64\x69\x74\56\x61\154\154\x2d\x63\157\156\x64\x69\164\151\x6f\156\x73\x2d\164\x72\165\145\47\x29\12\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\74\x2f\x6f\x70\x74\x69\x6f\156\x3e\xa\xa\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\74\157\x70\164\151\x6f\x6e\x20\x76\141\154\165\145\75\42\x32\x22\76\12\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x40\x6c\141\156\x67\50\x27\x61\x64\x6d\x69\x6e\72\72\141\x70\160\56\x6d\141\x72\x6b\145\164\151\x6e\147\x2e\x70\162\x6f\x6d\x6f\x74\x69\x6f\x6e\x73\x2e\x63\x61\164\x61\x6c\157\x67\x2d\x72\x75\x6c\x65\x73\56\145\144\151\164\x2e\141\156\171\55\x63\157\x6e\x64\151\x74\151\x6f\x6e\x73\x2d\x74\162\x75\145\x27\51\xa\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\74\x2f\157\x70\x74\x69\x6f\156\76\xa\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x3c\57\x78\x2d\x61\144\155\x69\156\x3a\x3a\x66\157\162\x6d\x2e\x63\x6f\x6e\164\162\x6f\x6c\55\x67\162\157\165\x70\56\143\x6f\x6e\x74\162\157\154\76\12\12\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x3c\x78\55\x61\x64\x6d\151\156\72\x3a\x66\157\162\155\x2e\x63\157\x6e\x74\162\157\x6c\55\147\x72\x6f\x75\160\56\145\x72\x72\x6f\162\40\143\157\156\x74\x72\x6f\154\55\x6e\x61\x6d\145\75\42\143\x6f\x6e\x64\151\164\151\x6f\156\x5f\x74\171\160\145\42\x20\57\76\xa\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x3c\x2f\170\x2d\x61\144\155\151\x6e\72\x3a\146\157\x72\155\x2e\143\x6f\156\164\162\x6f\154\55\x67\162\x6f\x75\x70\x3e\12\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\74\x2f\144\x69\x76\76\12\xa\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x3c\x76\55\143\x61\164\x61\x6c\x6f\x67\x2d\x72\165\154\x65\55\143\157\156\x64\x69\x74\151\x6f\156\x2d\151\x74\145\x6d\12\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\166\55\146\x6f\x72\75\x27\50\x63\x6f\x6e\144\151\164\151\157\x6e\x2c\40\x69\x6e\144\145\170\x29\x20\x69\156\40\143\157\156\x64\x69\164\x69\x6f\156\163\47\xa\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\x3a\x63\157\x6e\x64\151\x74\x69\157\156\x3d\x22\x63\157\156\x64\151\164\x69\x6f\x6e\42\12\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\72\x6b\x65\171\x3d\42\x69\x6e\144\145\x78\x22\12\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x3a\x69\x6e\x64\145\x78\x3d\42\151\x6e\144\145\170\x22\12\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\100\x6f\x6e\x52\x65\x6d\157\166\x65\103\157\156\x64\151\x74\x69\x6f\156\75\x22\162\x65\x6d\157\x76\x65\x43\157\156\144\151\164\151\x6f\156\50\x24\x65\x76\x65\156\164\x29\x22\xa\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\x20\x3e\12\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\74\x2f\x76\55\143\141\x74\x61\154\x6f\x67\x2d\162\165\x6c\x65\x2d\x63\157\x6e\x64\151\x74\x69\157\x6e\55\151\164\145\x6d\76\12\12\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x3c\x64\x69\166\xa\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x63\154\141\163\x73\x3d\x22\163\145\x63\157\x6e\x64\141\162\x79\x2d\x62\165\164\x74\x6f\156\40\155\x61\170\55\167\55\155\141\x78\40\x6d\164\55\x34\42\12\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x40\143\154\x69\143\x6b\75\42\x61\144\144\103\157\156\x64\151\x74\x69\x6f\x6e\x22\12\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\76\xa\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x40\x6c\x61\x6e\147\50\47\141\x64\155\151\156\x3a\72\x61\x70\x70\x2e\155\141\x72\153\145\x74\151\156\x67\56\x70\162\x6f\155\x6f\164\x69\x6f\156\x73\56\x63\141\164\141\154\x6f\147\55\162\165\x6c\x65\163\56\x65\144\151\164\x2e\141\x64\144\55\143\x6f\156\144\x69\164\x69\157\156\x27\x29\xa\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\74\57\144\x69\166\x3e\xa\xa\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\74\x2f\x64\x69\x76\x3e\12\xa\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x7b\41\41\40\166\x69\x65\167\x5f\162\145\x6e\x64\x65\162\x5f\x65\x76\145\156\x74\x28\47\142\x61\x67\x69\x73\x74\x6f\56\141\144\x6d\x69\156\x2e\155\141\x72\153\x65\164\x69\x6e\x67\x2e\160\162\x6f\x6d\157\164\151\x6f\x6e\x73\x2e\143\x61\164\141\154\x6f\147\137\162\x75\x6c\145\163\56\x65\x64\151\x74\x2e\143\141\x72\144\x2e\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\163\56\x61\x66\164\x65\x72\x27\x29\40\41\41\175\xa\xa\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x7b\41\41\x20\x76\151\145\x77\137\162\x65\x6e\x64\145\x72\137\145\x76\x65\156\x74\x28\47\142\141\147\x69\163\164\x6f\56\x61\x64\x6d\x69\x6e\x2e\155\141\x72\153\x65\x74\151\156\147\x2e\160\162\x6f\x6d\157\164\151\157\156\x73\x2e\143\x61\x74\x61\x6c\x6f\147\x5f\x72\165\154\x65\163\x2e\x65\144\x69\164\x2e\143\x61\162\144\56\x61\x63\x74\151\x6f\x6e\x73\x2e\x62\145\x66\x6f\162\x65\x27\51\x20\x21\x21\x7d\12\12\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x3c\41\55\x2d\x20\101\143\164\151\x6f\156\163\40\55\55\x3e\12\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\74\144\x69\166\40\x63\x6c\x61\163\x73\x3d\x22\160\55\64\x20\x62\x67\55\167\x68\151\164\145\40\144\x61\x72\x6b\x3a\x62\147\x2d\147\x72\x61\x79\55\71\x30\60\x20\x72\x6f\x75\156\144\145\144\40\142\x6f\170\x2d\163\x68\141\144\157\x77\42\76\12\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x3c\x64\151\166\x20\143\x6c\141\163\163\75\x22\x67\x72\x69\144\40\147\141\x70\55\61\56\65\x22\x3e\xa\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\40\40\40\x20\40\40\40\x20\74\x70\40\x63\154\x61\163\163\75\x22\x6d\x62\55\64\40\164\x65\170\x74\55\142\x61\x73\145\x20\x74\x65\x78\164\55\x67\x72\x61\171\55\x38\x30\60\x20\x64\x61\x72\x6b\72\x74\x65\170\164\x2d\167\150\151\164\145\x20\x66\157\156\164\x2d\163\145\x6d\151\142\x6f\x6c\144\42\x3e\12\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\100\154\141\x6e\147\x28\x27\141\x64\155\151\156\x3a\x3a\x61\x70\160\x2e\155\x61\x72\153\145\x74\x69\x6e\147\56\160\162\x6f\155\x6f\x74\x69\x6f\156\163\56\143\141\x74\141\154\157\x67\55\x72\165\x6c\x65\163\56\x65\144\151\164\x2e\141\143\164\x69\x6f\156\x73\47\51\12\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\74\57\160\76\12\xa\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\74\144\x69\x76\40\x63\x6c\x61\x73\163\75\42\146\x6c\x65\170\40\x67\x61\x70\55\64\x20\155\x61\x78\55\163\155\x3a\146\x6c\145\170\x2d\x77\x72\x61\x70\x22\76\12\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\x3c\144\151\x76\x20\x63\x6c\x61\x73\x73\x3d\42\x77\55\x66\165\x6c\154\42\x3e\xa\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x40\x70\x68\x70\50\x24\163\145\x6c\x65\143\x74\x65\x64\117\x70\164\151\x6f\156\x20\x3d\40\157\x6c\144\50\47\141\x63\x74\x69\x6f\156\137\164\x79\160\145\47\x29\x20\77\x3f\40\44\x63\141\164\141\154\157\x67\122\165\154\x65\x2d\76\x61\143\x74\151\157\156\137\164\171\x70\x65\51\12\xa\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\74\170\55\x61\144\x6d\x69\x6e\72\72\146\157\x72\155\x2e\x63\157\156\164\162\157\x6c\x2d\147\x72\x6f\165\160\x3e\12\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x3c\170\x2d\141\x64\x6d\x69\x6e\x3a\x3a\146\157\x72\155\56\x63\x6f\x6e\x74\162\x6f\154\55\147\162\157\x75\x70\56\x6c\141\142\145\154\x20\143\154\x61\x73\163\x3d\x22\x72\145\161\x75\x69\x72\145\x64\x22\76\12\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x40\154\141\156\147\x28\x27\x61\x64\x6d\x69\156\72\72\x61\x70\x70\56\x6d\x61\x72\153\145\164\x69\x6e\147\x2e\160\162\157\155\157\x74\151\x6f\156\163\x2e\143\x61\x74\x61\x6c\x6f\x67\55\x72\x75\154\145\163\56\x65\144\x69\x74\56\x61\143\x74\x69\157\156\x2d\x74\x79\160\x65\47\x29\12\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\74\x2f\170\x2d\141\144\155\151\x6e\x3a\72\146\157\x72\155\56\x63\157\156\x74\162\x6f\x6c\x2d\x67\x72\157\165\160\56\x6c\x61\142\145\154\76\xa\12\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\40\x3c\170\x2d\x61\144\155\151\x6e\x3a\72\x66\157\162\155\x2e\143\x6f\x6e\164\x72\157\x6c\x2d\147\162\157\x75\x70\56\x63\x6f\156\x74\x72\x6f\x6c\xa\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\164\171\160\145\75\x22\x73\145\154\x65\143\164\x22\12\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x63\x6c\141\x73\x73\75\42\150\55\133\63\x39\x70\x78\135\x22\xa\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\151\x64\x3d\x22\141\x63\x74\x69\x6f\x6e\137\164\x79\x70\x65\x22\xa\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\156\x61\155\x65\75\x22\141\143\164\151\157\x6e\x5f\x74\171\160\145\42\12\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\162\165\x6c\x65\163\75\x22\162\x65\161\165\151\x72\145\144\x22\12\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\72\x76\141\154\x75\x65\x3d\42\157\x6c\x64\50\47\141\x63\164\151\157\x6e\x5f\164\171\x70\145\47\x29\x20\77\77\40\x24\163\x65\x6c\x65\x63\x74\145\x64\117\x70\x74\151\157\x6e\x22\xa\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\72\x6c\x61\142\x65\154\75\42\164\x72\141\x6e\163\x28\x27\x61\144\x6d\x69\x6e\72\72\x61\x70\x70\56\x6d\141\162\153\x65\164\151\x6e\147\56\x70\x72\x6f\155\157\x74\x69\157\x6e\x73\x2e\x63\x61\x74\141\154\157\x67\x2d\162\165\154\x65\163\56\145\x64\x69\x74\56\141\143\164\x69\x6f\x6e\x2d\x74\x79\160\x65\47\x29\x22\xa\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x3e\xa\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\74\157\160\164\151\x6f\x6e\12\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\40\40\x76\141\154\165\x65\x3d\42\x62\171\137\x70\x65\162\143\x65\156\x74\x22\12\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\173\x7b\x20\x24\x73\x65\x6c\x65\143\164\x65\144\x4f\160\x74\x69\x6f\x6e\40\x3d\75\40\x27\x62\x79\x5f\x70\145\x72\x63\x65\x6e\164\47\x20\77\40\47\163\145\154\x65\x63\164\x65\x64\x27\x20\x3a\40\x27\47\x20\x7d\175\12\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\x20\x3e\12\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\100\x6c\x61\x6e\147\50\47\x61\144\x6d\x69\156\x3a\x3a\141\160\x70\56\x6d\141\x72\153\x65\164\151\156\147\x2e\x70\162\157\x6d\157\164\151\157\x6e\163\x2e\x63\x61\x74\141\154\x6f\147\55\x72\x75\154\x65\163\x2e\145\144\x69\x74\56\160\x65\x72\143\x65\156\164\141\x67\x65\55\160\x72\x6f\x64\165\x63\x74\55\x70\x72\151\143\145\x27\x29\xa\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x3c\x2f\157\x70\164\x69\157\x6e\x3e\12\xa\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\74\x6f\160\x74\151\x6f\x6e\12\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x76\x61\154\x75\145\75\x22\x62\171\x5f\146\151\x78\x65\144\x22\12\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x7b\173\40\44\163\x65\154\145\143\164\x65\144\x4f\160\x74\x69\157\156\40\x3d\x3d\x20\x27\x62\171\x5f\146\x69\x78\x65\144\x27\40\77\x20\x27\x73\145\154\x65\143\x74\145\x64\47\40\72\x20\47\47\40\x7d\175\12\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\76\12\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\40\100\154\141\x6e\147\50\x27\141\x64\x6d\x69\156\72\72\141\160\x70\x2e\x6d\x61\162\153\145\x74\151\156\147\x2e\x70\162\157\155\x6f\164\151\x6f\156\163\56\143\141\x74\x61\x6c\157\147\55\162\165\154\x65\x73\x2e\x65\144\x69\x74\56\146\x69\170\x65\144\x2d\x61\155\x6f\165\156\164\x27\x29\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\74\57\x6f\160\x74\151\157\x6e\x3e\12\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\74\x2f\170\55\x61\144\155\x69\x6e\72\72\146\x6f\x72\x6d\56\x63\x6f\156\164\162\157\x6c\55\147\162\x6f\x75\160\x2e\x63\157\x6e\x74\162\x6f\154\x3e\xa\xa\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x3c\x78\x2d\x61\x64\155\151\x6e\72\72\x66\157\x72\x6d\x2e\x63\x6f\156\164\x72\x6f\x6c\55\x67\x72\157\165\160\56\145\x72\162\157\x72\40\x63\157\x6e\x74\x72\157\x6c\55\156\141\155\145\x3d\42\x61\143\x74\x69\157\x6e\x5f\x74\171\160\145\42\40\x2f\76\xa\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\74\57\170\x2d\x61\x64\x6d\151\x6e\72\x3a\146\x6f\x72\155\56\x63\x6f\x6e\x74\x72\x6f\154\55\x67\162\x6f\x75\x70\76\12\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x3c\x2f\144\x69\166\x3e\xa\12\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x3c\x64\151\x76\x20\x63\x6c\141\163\x73\75\x22\167\55\x66\x75\154\154\42\76\xa\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\x3c\170\55\141\x64\155\x69\x6e\x3a\x3a\x66\157\x72\x6d\x2e\x63\x6f\x6e\164\x72\x6f\154\x2d\147\162\157\x75\160\x3e\xa\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\x3c\x78\x2d\141\144\155\151\156\x3a\x3a\x66\x6f\162\155\x2e\143\x6f\156\x74\x72\x6f\x6c\55\147\162\157\x75\x70\56\154\141\142\145\x6c\x20\143\x6c\x61\163\163\75\x22\x72\145\x71\x75\151\162\145\144\42\76\12\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\100\x6c\141\x6e\x67\50\x27\141\144\x6d\x69\x6e\72\72\x61\160\x70\x2e\155\141\162\x6b\145\164\x69\x6e\147\56\x70\x72\157\x6d\157\x74\151\x6f\156\x73\56\x63\141\164\x61\x6c\157\147\x2d\x72\165\154\x65\163\x2e\145\144\x69\x74\x2e\144\x69\x73\x63\157\165\156\x74\55\141\155\157\x75\156\x74\47\51\xa\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\74\x2f\x78\55\141\x64\155\x69\x6e\72\72\146\x6f\x72\x6d\x2e\x63\x6f\156\164\x72\157\x6c\55\x67\162\x6f\165\x70\56\x6c\x61\x62\145\154\76\xa\xa\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\74\170\x2d\x61\144\x6d\151\156\x3a\72\x66\x6f\x72\155\x2e\x63\157\x6e\x74\x72\x6f\x6c\x2d\147\162\x6f\x75\x70\56\143\157\x6e\x74\x72\x6f\154\12\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x74\171\160\x65\x3d\42\x74\145\170\x74\42\12\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x69\144\x3d\x22\144\x69\x73\x63\x6f\165\156\x74\137\141\x6d\157\x75\156\x74\x22\12\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\156\141\x6d\x65\75\x22\144\x69\x73\x63\x6f\165\156\164\137\x61\x6d\157\x75\156\164\42\xa\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\162\165\x6c\145\163\75\x22\162\145\161\165\x69\x72\x65\144\x22\xa\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\72\166\x61\x6c\x75\x65\x3d\42\x6f\154\144\x28\x27\x64\x69\163\x63\157\x75\156\164\137\141\x6d\157\165\x6e\x74\x27\x29\40\x3f\77\40\44\x63\x61\x74\141\154\157\x67\122\x75\154\x65\55\76\144\x69\x73\143\x6f\x75\x6e\x74\x5f\x61\x6d\x6f\165\156\x74\42\12\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\72\x6c\141\142\145\x6c\x3d\x22\164\x72\x61\x6e\x73\50\47\141\144\155\151\156\72\72\141\x70\160\56\155\x61\162\153\x65\x74\151\x6e\147\x2e\160\162\x6f\155\157\164\151\x6f\156\x73\x2e\x63\x61\164\141\154\157\x67\55\162\x75\x6c\145\163\x2e\145\x64\x69\x74\x2e\x64\151\x73\x63\157\165\x6e\x74\55\x61\155\157\165\156\x74\x27\51\42\12\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x3a\160\154\141\x63\x65\150\157\x6c\144\x65\162\x3d\x22\164\162\141\x6e\x73\x28\x27\141\144\x6d\151\156\x3a\x3a\141\160\160\56\x6d\141\x72\x6b\145\x74\151\x6e\x67\56\160\162\157\x6d\157\164\151\x6f\x6e\163\x2e\143\x61\164\141\x6c\157\147\55\x72\165\x6c\145\163\56\x65\144\x69\164\56\x64\151\163\x63\157\x75\x6e\x74\x2d\x61\155\x6f\165\x6e\x74\47\51\42\xa\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x2f\x3e\xa\12\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\74\170\x2d\x61\x64\155\x69\x6e\x3a\x3a\146\x6f\x72\155\x2e\x63\157\x6e\164\162\157\154\x2d\x67\162\x6f\x75\x70\56\x65\x72\x72\x6f\x72\x20\143\157\x6e\164\x72\x6f\154\x2d\x6e\141\155\145\75\42\144\151\x73\143\x6f\x75\x6e\164\x5f\x61\x6d\157\x75\x6e\164\42\x20\x2f\76\xa\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\74\57\x78\x2d\141\x64\x6d\x69\156\x3a\72\x66\x6f\x72\x6d\56\143\x6f\156\x74\162\157\x6c\55\x67\x72\157\165\160\76\xa\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x3c\x2f\144\x69\x76\x3e\12\xa\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\40\40\x3c\144\x69\x76\40\143\154\x61\163\x73\x3d\42\167\55\146\x75\154\x6c\x22\x3e\12\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\40\40\40\40\x20\100\160\x68\x70\x28\44\163\145\154\x65\x63\164\x65\x64\x4f\x70\164\x69\157\x6e\x20\75\x20\x6f\154\144\50\x27\x65\x6e\144\137\x6f\x74\x68\145\x72\x5f\x72\165\154\x65\163\47\51\40\x3f\x3f\x20\44\143\x61\x74\x61\154\x6f\x67\122\x75\x6c\x65\x2d\x3e\145\x6e\144\137\x6f\x74\x68\145\x72\x5f\x72\165\154\145\x73\x29\xa\12\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\74\170\x2d\x61\x64\155\151\x6e\x3a\x3a\146\x6f\x72\x6d\x2e\x63\157\156\164\x72\x6f\x6c\x2d\x67\162\157\165\160\76\12\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\40\x3c\170\x2d\x61\144\155\151\x6e\x3a\x3a\146\157\x72\155\56\143\x6f\x6e\164\x72\x6f\x6c\x2d\x67\162\157\x75\160\x2e\154\x61\x62\145\154\x3e\xa\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\100\x6c\141\156\147\x28\47\x61\144\155\151\x6e\72\x3a\x61\x70\160\x2e\x6d\141\x72\153\x65\164\151\156\x67\x2e\x70\162\157\155\157\x74\151\x6f\156\x73\x2e\x63\141\164\141\x6c\x6f\x67\55\162\165\x6c\x65\x73\56\145\x64\x69\164\56\145\156\x64\x2d\157\164\150\x65\x72\55\x72\165\154\145\163\47\51\12\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x3c\x2f\170\55\141\144\155\151\x6e\72\x3a\146\x6f\x72\x6d\56\x63\157\x6e\164\162\157\x6c\x2d\x67\x72\x6f\x75\x70\56\154\141\142\145\154\x3e\12\xa\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x3c\x78\55\141\144\155\x69\x6e\72\72\x66\157\x72\155\x2e\x63\x6f\156\164\x72\x6f\x6c\55\147\162\x6f\x75\160\56\143\x6f\x6e\x74\x72\x6f\x6c\12\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x74\171\x70\145\x3d\42\x73\145\x6c\x65\143\164\x22\12\40\40\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x63\x6c\141\163\163\75\42\x68\55\x5b\63\x39\160\x78\135\42\12\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\151\x64\x3d\x22\x65\x6e\x64\x5f\x6f\x74\x68\x65\162\137\x72\x75\154\x65\163\x22\12\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\156\141\155\145\75\42\x65\x6e\144\137\x6f\164\150\x65\162\x5f\162\x75\154\145\x73\x22\12\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\72\166\x61\x6c\x75\x65\75\42\157\154\x64\50\x27\145\156\144\137\157\x74\x68\145\x72\x5f\162\x75\x6c\145\163\47\51\x20\77\77\40\44\x73\x65\154\145\143\x74\x65\x64\117\x70\164\x69\x6f\x6e\42\xa\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\x20\x3a\154\x61\x62\145\154\x3d\42\164\162\x61\156\163\x28\x27\141\x64\155\151\156\72\x3a\141\x70\160\56\x6d\141\x72\153\x65\x74\151\156\x67\56\160\162\157\x6d\x6f\164\151\157\x6e\163\56\143\x61\x74\141\x6c\157\147\55\x72\165\154\x65\x73\56\x65\x64\x69\164\56\x65\156\144\55\x6f\x74\x68\x65\x72\55\x72\x75\x6c\145\163\47\x29\x22\12\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\76\12\40\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x3c\157\160\164\x69\157\156\12\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\166\x61\x6c\x75\145\75\x22\x30\42\12\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\173\173\x20\x21\40\44\163\145\154\145\x63\x74\x65\144\x4f\x70\164\151\157\x6e\40\x3f\40\x27\163\x65\x6c\x65\143\x74\x65\144\47\40\x3a\x20\47\x27\40\x7d\175\12\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\76\xa\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x40\154\x61\x6e\147\50\47\x61\144\155\x69\156\x3a\72\141\x70\160\x2e\x6d\141\x72\x6b\x65\x74\151\x6e\x67\x2e\160\162\157\155\157\164\151\157\156\163\x2e\x63\x61\x74\141\154\x6f\147\55\162\165\x6c\x65\x73\56\145\x64\151\164\56\x6e\157\x27\51\12\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x3c\x2f\157\x70\164\151\x6f\x6e\76\12\12\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\74\x6f\160\x74\151\x6f\x6e\12\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\166\141\154\x75\145\x3d\42\x31\x22\12\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\173\173\40\x24\x73\145\x6c\145\x63\x74\145\x64\x4f\x70\x74\151\x6f\156\40\77\40\47\x73\145\154\145\143\x74\145\144\x27\40\x3a\40\x27\x27\x20\175\175\12\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x3e\12\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x40\154\x61\156\x67\50\x27\141\144\x6d\151\x6e\72\72\141\160\160\x2e\x6d\x61\162\x6b\x65\164\151\156\147\56\x70\x72\x6f\x6d\x6f\164\151\x6f\156\x73\56\143\141\x74\141\154\x6f\x67\x2d\x72\x75\154\x65\x73\x2e\145\144\x69\x74\x2e\171\x65\163\x27\x29\12\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\40\40\40\40\40\x3c\57\x6f\160\164\151\157\156\76\xa\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\x20\x3c\57\170\55\141\144\155\151\x6e\72\x3a\x66\x6f\x72\155\x2e\x63\157\156\x74\x72\157\x6c\x2d\147\x72\x6f\165\x70\56\x63\x6f\x6e\x74\162\157\154\76\12\12\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\74\x78\x2d\x61\x64\155\151\x6e\x3a\72\x66\x6f\162\155\x2e\143\157\156\164\162\x6f\154\x2d\x67\162\x6f\x75\160\56\x65\x72\x72\157\x72\40\143\x6f\x6e\x74\x72\x6f\x6c\x2d\156\x61\x6d\x65\75\x22\x65\156\x64\137\157\x74\150\145\162\137\x72\x75\154\x65\x73\x22\40\x2f\76\xa\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x3c\57\170\55\x61\144\x6d\x69\x6e\x3a\72\146\157\x72\155\x2e\x63\x6f\156\164\x72\157\x6c\x2d\147\162\157\x75\x70\76\xa\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x3c\x2f\x64\x69\166\76\xa\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\74\57\x64\x69\166\76\12\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\74\x2f\x64\151\x76\76\12\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\74\x2f\144\151\166\76\xa\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\173\41\x21\40\166\151\145\x77\137\x72\145\156\x64\x65\x72\137\x65\166\145\x6e\164\50\47\x62\x61\x67\x69\163\164\x6f\56\x61\144\155\151\x6e\x2e\155\141\162\153\145\x74\x69\x6e\x67\56\160\x72\x6f\x6d\157\x74\x69\157\x6e\163\x2e\143\141\x74\141\154\157\147\137\162\x75\154\145\x73\x2e\145\144\151\x74\56\x63\141\x72\x64\56\141\x63\x74\151\x6f\156\x73\x2e\141\x66\164\x65\x72\47\51\x20\x21\41\175\xa\12\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\74\57\x64\151\166\x3e\12\xa\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x3c\x21\55\55\40\122\x69\x67\x68\x74\x73\165\142\40\143\x6f\155\x70\x6f\156\x65\x6e\164\163\x20\x2d\x2d\76\12\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\x3c\x64\x69\x76\x20\143\154\x61\x73\163\x3d\42\x66\x6c\x65\x78\40\x66\154\x65\x78\x2d\143\x6f\154\x20\x67\x61\160\x2d\x32\x20\167\55\x5b\63\66\60\x70\x78\135\x20\x6d\x61\x78\55\x77\55\x66\165\x6c\154\x20\x6d\x61\170\55\x73\x6d\x3a\167\x2d\x66\165\154\154\42\x3e\12\12\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x7b\x21\41\x20\x76\151\145\x77\x5f\162\145\156\x64\x65\162\137\145\166\145\x6e\164\x28\47\x62\141\147\151\163\164\x6f\x2e\141\x64\x6d\151\x6e\56\155\141\162\153\x65\164\x69\156\147\56\x70\x72\x6f\x6d\x6f\164\151\x6f\156\163\56\143\141\164\141\x6c\157\x67\137\x72\165\x6c\x65\x73\x2e\145\144\151\x74\56\x63\x61\162\144\56\141\x63\143\157\x72\x64\x69\157\x6e\x2e\163\145\164\x74\151\x6e\x67\x73\x2e\x62\x65\146\157\162\x65\x27\x29\x20\x21\x21\x7d\xa\xa\40\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\74\41\55\x2d\x20\x53\x65\x74\x74\x69\156\147\163\x20\55\x2d\x3e\12\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x3c\170\55\x61\144\x6d\151\x6e\x3a\72\x61\x63\143\157\x72\x64\x69\x6f\156\x3e\12\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\74\170\55\163\x6c\x6f\x74\x3a\150\x65\141\144\145\x72\76\12\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x3c\144\151\166\x20\x63\154\x61\x73\x73\75\x22\x66\154\x65\x78\40\x69\x74\145\155\163\x2d\x63\x65\156\x74\145\162\x20\x6a\x75\x73\164\x69\146\171\55\142\145\x74\x77\x65\145\156\42\x3e\xa\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\74\160\40\x63\x6c\x61\x73\x73\75\42\x70\x2d\x32\x2e\x35\40\164\x65\x78\164\55\142\x61\163\x65\40\164\x65\170\x74\55\147\162\141\x79\x2d\70\x30\x30\40\144\x61\162\153\72\x74\x65\x78\164\55\x77\x68\151\x74\145\40\146\x6f\x6e\164\x2d\x73\145\155\151\142\157\154\x64\42\x3e\12\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\100\154\141\156\147\50\47\141\144\155\151\x6e\x3a\x3a\141\x70\x70\56\x6d\x61\x72\x6b\145\x74\x69\x6e\147\x2e\160\x72\x6f\x6d\157\x74\x69\157\x6e\163\56\x63\141\x74\141\154\157\147\55\x72\x75\x6c\x65\163\x2e\145\x64\x69\x74\x2e\163\145\x74\x74\x69\x6e\x67\163\47\51\12\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\74\x2f\160\76\12\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\74\57\x64\x69\166\x3e\12\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\74\57\x78\x2d\163\x6c\157\x74\x3e\xa\12\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x3c\x78\x2d\163\154\x6f\x74\x3a\143\157\x6e\164\x65\x6e\x74\76\xa\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\74\x78\55\x61\x64\x6d\x69\156\x3a\72\x66\157\162\x6d\x2e\143\x6f\x6e\x74\x72\157\154\x2d\147\x72\x6f\x75\x70\x3e\xa\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x3c\x78\55\141\x64\155\151\x6e\72\72\x66\x6f\x72\155\56\143\157\x6e\x74\x72\157\x6c\x2d\147\x72\157\x75\160\56\154\141\x62\145\x6c\x3e\12\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x40\154\x61\x6e\147\x28\47\141\144\x6d\x69\x6e\x3a\x3a\141\160\160\x2e\155\x61\x72\153\x65\164\x69\x6e\147\x2e\x70\162\157\155\157\x74\151\157\156\x73\x2e\143\141\x74\141\154\157\147\x2d\x72\x75\x6c\145\163\56\x65\144\x69\x74\x2e\x70\162\x69\157\x72\x69\x74\171\47\51\xa\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x3c\57\170\x2d\x61\144\155\151\156\72\72\x66\157\162\x6d\x2e\143\157\x6e\164\x72\157\x6c\x2d\x67\x72\x6f\165\160\56\154\x61\x62\x65\154\x3e\12\xa\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x3c\x78\55\x61\x64\155\151\156\72\72\146\x6f\x72\155\56\x63\x6f\x6e\x74\162\157\x6c\x2d\x67\x72\157\x75\x70\x2e\143\x6f\x6e\x74\x72\x6f\x6c\12\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x74\x79\x70\145\x3d\x22\164\145\170\164\42\xa\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\151\144\x3d\x22\x73\157\162\x74\137\157\162\x64\x65\162\x22\12\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\156\x61\x6d\145\75\42\163\x6f\x72\164\137\x6f\x72\144\145\x72\42\xa\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\72\x76\x61\x6c\x75\145\x3d\42\x6f\x6c\x64\x28\x27\x73\x6f\x72\x74\x5f\x6f\x72\144\x65\x72\47\51\x20\x3f\77\x20\x24\x63\x61\x74\x61\154\157\x67\x52\165\154\x65\55\x3e\x73\157\162\x74\x5f\x6f\x72\x64\145\162\42\12\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\72\x6c\x61\142\145\154\x3d\42\x74\162\x61\156\163\50\x27\141\x64\x6d\x69\156\72\x3a\141\x70\x70\x2e\x6d\141\x72\x6b\x65\x74\151\x6e\x67\x2e\x70\x72\157\155\x6f\x74\151\157\x6e\x73\56\x63\x61\x74\141\154\157\x67\x2d\x72\x75\154\145\163\x2e\x65\144\x69\x74\x2e\160\162\x69\x6f\162\x69\x74\x79\x27\51\x22\12\40\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x3a\160\x6c\141\143\145\150\157\154\144\145\162\75\42\x74\162\x61\x6e\x73\x28\x27\x61\144\155\x69\x6e\x3a\x3a\x61\x70\160\x2e\155\x61\162\153\x65\x74\151\156\147\x2e\160\x72\157\155\x6f\x74\x69\157\156\163\x2e\143\141\x74\141\154\157\x67\55\x72\x75\154\x65\x73\56\x65\144\151\164\56\160\x72\151\157\x72\151\164\171\x27\51\x22\xa\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\57\76\xa\xa\40\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x3c\170\x2d\141\144\155\151\x6e\72\x3a\146\x6f\x72\155\x2e\x63\157\x6e\164\162\157\154\55\x67\162\x6f\165\x70\x2e\145\162\162\157\162\40\143\x6f\x6e\x74\162\157\x6c\x2d\156\x61\x6d\145\75\x22\x73\x6f\162\164\137\157\162\144\145\162\x22\x20\x2f\76\xa\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\74\x2f\170\x2d\141\x64\x6d\x69\x6e\72\x3a\x66\157\162\155\56\143\157\156\164\x72\157\x6c\55\147\x72\157\x75\x70\76\xa\xa\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\74\x21\55\x2d\103\150\141\x6e\156\145\154\x73\x2d\x2d\x3e\12\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\x3c\x64\x69\166\40\x63\154\141\163\x73\x3d\42\155\142\x2d\64\x22\76\xa\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x3c\x78\x2d\141\144\x6d\x69\x6e\x3a\72\146\x6f\162\x6d\56\x63\x6f\x6e\164\x72\x6f\154\55\x67\x72\x6f\x75\x70\x2e\x6c\x61\x62\145\154\x20\143\154\141\163\x73\x3d\x22\162\x65\161\165\151\162\x65\144\42\76\12\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\100\154\x61\156\x67\50\47\x61\x64\x6d\x69\x6e\72\x3a\141\x70\x70\56\x6d\x61\x72\x6b\x65\x74\x69\156\x67\x2e\x70\162\157\x6d\157\x74\x69\x6f\156\x73\x2e\x63\141\164\x61\154\x6f\147\x2d\x72\x75\154\145\x73\56\145\x64\x69\164\x2e\x63\150\x61\x6e\156\x65\x6c\163\x27\x29\12\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x3c\x2f\x78\x2d\141\144\x6d\x69\x6e\x3a\x3a\146\157\162\x6d\56\x63\x6f\156\x74\162\x6f\x6c\55\x67\x72\157\165\160\56\154\x61\142\145\x6c\x3e\xa\xa\x20\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\100\x70\x68\x70\50\44\x73\145\x6c\x65\x63\164\145\x64\117\x70\164\151\x6f\156\x49\144\163\x20\x3d\40\157\154\144\x28\x27\143\150\x61\156\156\x65\154\x73\x27\x29\x20\x3f\72\40\x24\x63\x61\x74\x61\x6c\157\x67\x52\x75\154\145\55\x3e\x63\x68\141\156\156\145\154\x73\x2d\76\x70\154\x75\143\x6b\x28\x27\151\144\47\51\55\76\164\x6f\101\162\x72\x61\x79\50\51\51\12\xa\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\x40\x66\x6f\x72\145\141\143\150\x28\143\157\162\x65\x28\51\55\x3e\147\x65\x74\x41\154\x6c\103\150\x61\156\x6e\145\154\x73\50\x29\x20\141\163\40\44\x63\x68\x61\x6e\x6e\x65\x6c\x29\xa\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x3c\170\x2d\x61\x64\x6d\151\x6e\x3a\x3a\x66\x6f\162\155\x2e\x63\x6f\156\x74\x72\x6f\x6c\55\147\x72\x6f\x75\x70\40\143\154\141\x73\163\x3d\x22\146\154\x65\170\x20\147\141\x70\55\62\x2e\x35\x20\151\164\x65\155\163\x2d\143\x65\x6e\164\x65\162\x20\41\155\x62\55\62\x22\x3e\12\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x3c\170\x2d\141\144\155\x69\156\72\72\146\157\162\155\x2e\143\x6f\156\x74\x72\x6f\x6c\55\147\x72\157\165\x70\56\x63\x6f\156\x74\x72\x6f\x6c\12\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x74\x79\x70\x65\75\42\x63\x68\x65\143\153\x62\157\170\42\xa\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x3a\x69\x64\75\x22\47\x63\x68\x61\x6e\x6e\145\154\x5f\x27\40\56\40\x27\137\x27\40\x2e\x20\x24\143\150\141\x6e\156\145\x6c\x2d\x3e\x69\144\42\12\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\40\x6e\x61\155\x65\x3d\x22\143\150\x61\x6e\x6e\145\x6c\163\133\135\x22\12\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x72\165\154\x65\163\75\42\x72\x65\161\x75\x69\162\145\x64\x22\12\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x3a\x76\141\x6c\165\145\x3d\x22\x24\143\150\141\x6e\x6e\x65\154\55\76\x69\x64\42\xa\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\x3a\x66\157\x72\x3d\42\x27\143\150\141\156\x6e\x65\x6c\137\47\40\56\x20\x27\x5f\x27\40\56\x20\x24\143\x68\141\x6e\156\x65\154\55\76\151\x64\x22\xa\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x3a\x6c\141\x62\145\x6c\x3d\x22\x74\x72\x61\x6e\x73\x28\47\x61\x64\155\151\x6e\72\x3a\x61\x70\x70\x2e\x6d\141\x72\153\x65\x74\151\156\x67\x2e\x70\x72\157\155\157\164\x69\157\x6e\163\x2e\x63\x61\x74\x61\154\x6f\x67\55\162\x75\x6c\145\x73\56\145\144\x69\x74\56\143\x68\x61\156\x6e\145\154\x73\x27\51\42\12\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x3a\x63\x68\x65\143\153\x65\144\x3d\x22\x69\x6e\x5f\x61\162\x72\x61\171\x28\x24\x63\150\x61\x6e\156\145\x6c\x2d\76\x69\144\x2c\x20\44\x73\x65\x6c\x65\x63\x74\x65\144\117\x70\x74\x69\x6f\156\x49\x64\x73\x29\x22\12\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\57\x3e\xa\12\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\74\x6c\x61\142\x65\154\xa\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\143\x6c\141\163\163\75\x22\x74\x65\x78\164\x2d\170\x73\40\164\x65\x78\164\55\x67\162\x61\171\x2d\66\60\x30\40\x64\141\x72\x6b\72\x74\x65\170\164\55\147\x72\141\171\55\x33\x30\x30\x20\146\157\156\x74\55\x6d\145\144\x69\x75\155\x20\143\x75\x72\x73\157\x72\55\x70\157\x69\x6e\164\145\162\x22\12\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\146\x6f\x72\x3d\42\173\173\x20\x27\143\x68\x61\x6e\156\145\154\x5f\47\x20\x2e\x20\x27\137\x27\x20\56\40\44\x63\x68\x61\156\156\145\x6c\55\76\x69\144\x20\175\175\42\xa\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x3e\xa\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x7b\x7b\x20\143\157\162\145\x28\51\55\x3e\x67\145\x74\x43\150\x61\156\x6e\145\154\x4e\141\155\x65\50\x24\143\x68\x61\156\x6e\145\x6c\x29\x20\x7d\x7d\xa\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x3c\57\154\141\x62\145\154\x3e\12\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x3c\x2f\170\x2d\x61\144\155\151\156\x3a\x3a\x66\157\162\x6d\x2e\143\157\x6e\164\x72\157\154\55\x67\x72\157\165\x70\x3e\12\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\100\145\x6e\144\146\157\162\145\141\x63\150\xa\xa\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x3c\170\x2d\141\x64\155\x69\156\72\x3a\146\157\162\x6d\x2e\x63\x6f\x6e\164\x72\157\x6c\55\x67\162\x6f\x75\160\x2e\x65\x72\162\x6f\x72\40\143\157\156\164\162\157\154\55\156\141\155\x65\75\42\143\150\x61\x6e\156\145\154\x73\133\x5d\42\x20\x2f\x3e\12\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x3c\57\144\151\166\76\12\xa\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\74\41\55\55\x20\103\165\163\164\157\155\x65\x72\x20\107\162\x6f\x75\160\x73\x20\x2d\x2d\76\12\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x3c\144\x69\166\40\143\x6c\x61\x73\163\75\x22\155\142\55\64\42\x3e\xa\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x3c\170\x2d\141\x64\155\151\156\x3a\72\x66\157\162\x6d\56\143\157\156\164\162\157\x6c\55\x67\x72\157\x75\160\x2e\x6c\x61\142\145\x6c\40\x63\x6c\x61\x73\x73\x3d\x22\162\x65\x71\x75\151\162\x65\x64\42\76\12\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\100\154\141\x6e\147\x28\47\141\144\155\151\156\x3a\x3a\x61\160\x70\56\155\141\x72\x6b\x65\164\x69\156\147\x2e\x70\162\x6f\x6d\x6f\x74\151\x6f\156\x73\56\x63\x61\164\141\154\x6f\x67\55\162\165\x6c\145\x73\x2e\145\x64\151\x74\56\143\x75\163\164\x6f\155\x65\x72\x2d\147\162\x6f\165\x70\163\47\x29\12\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x3c\57\x78\55\141\144\155\x69\156\x3a\x3a\146\x6f\162\155\x2e\x63\x6f\x6e\164\162\x6f\x6c\55\147\x72\157\165\160\x2e\154\x61\142\145\154\76\xa\xa\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x40\x70\x68\160\50\44\x73\145\154\x65\x63\164\x65\x64\x4f\x70\164\x69\x6f\156\111\x64\x73\x20\75\40\x6f\154\x64\x28\47\x63\165\163\x74\x6f\x6d\x65\162\137\x67\x72\x6f\x75\x70\163\x27\x29\x20\77\x3a\40\x24\143\x61\x74\141\154\x6f\147\x52\165\x6c\x65\x2d\x3e\x63\165\x73\x74\157\155\145\x72\137\x67\162\x6f\x75\x70\163\x2d\x3e\x70\154\x75\143\x6b\x28\x27\x69\x64\x27\51\x2d\76\x74\157\x41\162\x72\141\x79\50\x29\x29\xa\12\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x40\x66\157\x72\145\141\143\150\x28\x61\x70\x70\x28\x27\x57\145\x62\x6b\x75\154\x5c\103\x75\163\x74\157\x6d\x65\162\x5c\x52\145\160\x6f\x73\x69\x74\x6f\x72\x69\145\x73\x5c\103\165\163\x74\x6f\x6d\145\162\x47\162\x6f\x75\x70\122\145\x70\x6f\x73\x69\x74\x6f\x72\171\47\x29\x2d\x3e\141\154\154\x28\51\40\141\163\x20\x24\x63\165\163\x74\157\x6d\145\162\107\162\x6f\165\160\51\xa\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x3c\x78\55\141\x64\155\x69\x6e\72\72\146\x6f\162\155\x2e\143\157\156\x74\162\x6f\154\55\x67\x72\x6f\x75\x70\x20\143\x6c\141\163\x73\75\42\x66\x6c\145\x78\40\147\x61\x70\55\62\x2e\65\40\x69\164\x65\155\163\55\143\145\x6e\164\x65\162\x20\41\155\142\x2d\62\42\x3e\xa\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\74\170\x2d\x61\144\x6d\x69\x6e\72\x3a\146\157\x72\x6d\56\143\157\156\x74\x72\157\x6c\55\147\x72\157\165\160\x2e\143\157\x6e\x74\162\x6f\154\xa\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x74\x79\160\x65\75\x22\143\150\x65\143\153\x62\157\170\x22\12\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x3a\151\x64\75\42\x27\143\165\x73\164\x6f\155\x65\x72\x5f\x67\162\157\165\160\137\47\x20\x2e\40\x27\137\47\x20\56\40\x24\x63\x75\x73\x74\157\155\x65\162\107\x72\157\165\160\55\76\x69\144\x22\12\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x6e\x61\x6d\x65\75\x22\x63\165\x73\x74\157\155\145\x72\x5f\x67\162\x6f\x75\x70\163\x5b\x5d\x22\12\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x72\x75\154\145\x73\x3d\42\162\145\161\x75\151\x72\x65\x64\x22\xa\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\72\166\141\x6c\165\145\x3d\42\44\143\x75\163\164\x6f\155\x65\162\x47\x72\x6f\165\160\55\76\151\144\x22\12\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\40\x20\40\40\x20\x3a\146\157\162\75\42\47\x63\x75\163\164\x6f\x6d\145\162\x5f\147\x72\157\165\x70\x5f\x27\40\x2e\40\47\x5f\47\x20\x2e\x20\x24\143\x75\163\x74\x6f\x6d\x65\x72\107\162\x6f\165\160\x2d\x3e\151\x64\42\12\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\72\x6c\x61\142\145\154\75\x22\x74\162\x61\156\x73\x28\47\141\144\x6d\151\x6e\x3a\72\141\160\160\56\155\x61\x72\x6b\x65\164\151\156\x67\56\x70\162\157\155\157\164\151\157\x6e\x73\56\143\141\x74\141\x6c\x6f\147\x2d\x72\x75\x6c\145\x73\x2e\145\x64\151\x74\56\x63\165\x73\164\157\x6d\x65\x72\x2d\147\162\157\165\160\x73\x27\51\x22\xa\x20\x20\40\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\72\143\x68\145\x63\153\145\x64\x3d\42\x69\x6e\x5f\141\162\162\x61\171\50\x24\x63\165\x73\164\157\155\145\162\x47\x72\x6f\165\160\55\76\x69\x64\54\40\x24\x73\x65\x6c\x65\143\x74\x65\x64\x4f\x70\x74\151\x6f\156\x49\x64\163\x29\42\12\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x2f\76\xa\xa\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x3c\x6c\141\142\145\154\xa\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\143\x6c\x61\163\163\x3d\x22\164\x65\x78\x74\55\170\163\40\x74\145\x78\x74\55\147\x72\x61\x79\x2d\x36\x30\x30\x20\x64\x61\162\x6b\x3a\x74\x65\x78\164\x2d\x67\x72\141\x79\55\63\60\60\x20\146\157\156\164\55\x6d\x65\144\x69\165\x6d\40\x63\165\162\163\x6f\162\55\x70\157\151\x6e\x74\145\x72\x22\xa\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\146\157\x72\x3d\42\x7b\x7b\x20\x27\x63\x75\x73\164\x6f\155\145\162\x5f\x67\162\157\x75\160\137\x27\x20\x2e\x20\47\x5f\47\x20\56\40\44\x63\x75\163\x74\x6f\x6d\145\162\107\162\157\165\160\55\76\151\144\x20\x7d\175\x22\xa\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\76\xa\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\173\173\x20\44\x63\165\x73\164\x6f\x6d\x65\x72\x47\162\157\165\x70\55\76\x6e\x61\x6d\145\40\175\175\12\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\74\x2f\x6c\x61\x62\x65\154\76\12\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x3c\57\x78\55\141\144\x6d\x69\x6e\x3a\72\x66\x6f\x72\155\56\143\157\x6e\164\162\x6f\154\55\147\x72\x6f\165\x70\x3e\xa\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x40\x65\x6e\144\146\x6f\x72\145\x61\143\150\12\12\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\74\x78\55\x61\144\x6d\151\x6e\72\72\x66\157\162\155\56\143\157\156\164\162\157\x6c\x2d\147\162\157\x75\160\x2e\145\162\162\x6f\162\40\143\157\x6e\164\x72\157\154\x2d\156\141\x6d\145\x3d\42\x63\x75\x73\x74\x6f\155\x65\x72\x5f\147\x72\x6f\x75\x70\x73\133\x5d\42\x20\x2f\76\12\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\74\x2f\144\x69\x76\76\12\xa\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x3c\x21\55\x2d\40\123\x74\141\x74\165\x73\40\55\x2d\x3e\xa\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x3c\x78\55\141\x64\x6d\x69\x6e\72\x3a\x66\157\162\155\x2e\x63\157\156\x74\x72\157\154\55\147\162\x6f\x75\x70\40\x63\x6c\x61\x73\x73\75\42\41\x6d\x62\x2d\60\x22\76\xa\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\74\x78\55\x61\x64\x6d\151\156\x3a\x3a\x66\x6f\x72\x6d\56\143\157\x6e\x74\x72\x6f\154\x2d\x67\x72\157\x75\160\56\x6c\x61\142\145\154\76\12\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\x40\154\141\x6e\147\x28\47\141\x64\x6d\151\x6e\72\x3a\x61\160\x70\56\x6d\141\x72\153\145\x74\151\156\x67\56\160\162\x6f\x6d\157\164\151\157\156\x73\56\x63\x61\x74\x61\154\x6f\147\x2d\x72\x75\x6c\145\x73\x2e\x65\x64\151\164\x2e\163\164\141\164\x75\x73\x27\51\12\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x3c\57\170\x2d\141\x64\x6d\151\x6e\x3a\x3a\x66\x6f\x72\155\56\143\157\x6e\164\x72\x6f\154\x2d\147\x72\x6f\x75\160\x2e\154\x61\x62\145\154\76\12\xa\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x3c\170\55\141\x64\x6d\x69\156\x3a\72\146\157\x72\155\x2e\x63\157\x6e\164\162\x6f\x6c\x2d\147\162\x6f\165\160\x2e\143\157\156\x74\162\x6f\154\xa\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x74\x79\160\x65\75\42\163\167\x69\164\143\x68\x22\xa\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x6e\x61\155\x65\75\42\x73\x74\141\x74\x75\163\x22\12\40\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x3a\166\x61\154\165\x65\x3d\x22\x24\143\x61\x74\141\154\x6f\x67\122\165\154\x65\55\x3e\x73\164\141\164\165\163\x22\12\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x3a\154\x61\x62\145\x6c\75\42\x74\x72\x61\156\x73\x28\47\x61\144\x6d\151\x6e\x3a\72\x61\x70\160\x2e\155\141\162\153\x65\x74\x69\x6e\147\56\x70\162\157\x6d\x6f\x74\151\x6f\156\x73\x2e\143\x61\x74\141\x6c\x6f\x67\x2d\162\165\154\x65\163\x2e\x65\144\x69\164\x2e\163\x74\x61\164\165\x73\47\x29\x22\xa\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x3a\x63\150\145\143\153\x65\144\x3d\x22\x28\x62\x6f\157\154\145\x61\156\51\40\44\143\141\x74\141\x6c\157\147\122\165\154\x65\55\76\x73\164\141\x74\x75\163\42\12\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x2f\x3e\xa\xa\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x3c\170\x2d\141\144\x6d\x69\x6e\x3a\72\x66\157\x72\155\56\143\x6f\x6e\x74\x72\x6f\154\55\x67\x72\x6f\x75\160\56\145\162\162\157\x72\x20\x63\x6f\x6e\x74\x72\x6f\154\x2d\x6e\141\155\x65\75\x22\163\164\141\164\x75\163\42\x20\x2f\x3e\xa\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x3c\57\170\x2d\x61\144\155\151\x6e\x3a\72\x66\157\x72\x6d\56\143\x6f\156\164\162\157\154\55\x67\x72\157\165\x70\76\xa\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x3c\x2f\x78\x2d\x73\x6c\157\164\76\12\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x3c\57\170\x2d\x61\x64\155\151\x6e\x3a\x3a\x61\143\143\157\x72\x64\151\157\x6e\76\xa\xa\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x7b\41\x21\40\166\x69\145\167\x5f\162\145\x6e\x64\x65\162\x5f\145\166\145\x6e\164\50\47\x62\141\147\151\163\164\157\56\141\144\x6d\x69\x6e\x2e\x6d\141\162\153\x65\x74\x69\156\x67\56\x70\162\x6f\155\x6f\x74\151\x6f\x6e\163\56\x63\x61\x74\141\154\157\x67\x5f\162\x75\154\145\x73\56\145\144\x69\x74\56\143\x61\162\x64\x2e\141\143\143\x6f\x72\144\x69\x6f\x6e\x2e\163\x65\164\x74\x69\x6e\147\163\x2e\141\x66\164\145\x72\47\x29\40\41\41\175\12\xa\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x7b\x21\41\40\x76\151\145\x77\x5f\162\145\x6e\144\145\162\x5f\x65\x76\145\156\164\50\47\x62\x61\x67\151\163\x74\157\56\x61\144\x6d\x69\x6e\x2e\155\141\162\153\x65\164\151\x6e\147\56\160\162\x6f\155\x6f\164\x69\157\156\163\x2e\x63\x61\164\x61\x6c\157\x67\137\x72\x75\x6c\x65\x73\56\145\144\x69\164\x2e\143\141\x72\x64\56\x61\x63\143\x6f\162\144\x69\157\x6e\x2e\155\141\x72\x6b\x65\x74\151\x6e\147\x5f\x74\151\155\x65\x2e\x62\145\146\157\x72\x65\47\x29\40\x21\41\x7d\xa\12\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x3c\x21\x2d\55\x20\x4d\141\162\153\145\x74\151\x6e\x67\x20\124\x69\155\x65\x20\x2d\55\x3e\12\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x3c\170\x2d\141\144\x6d\151\156\x3a\x3a\141\143\x63\x6f\x72\144\151\157\156\76\xa\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x3c\x78\x2d\163\154\x6f\164\x3a\150\145\141\x64\145\x72\76\12\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x3c\144\151\166\x20\143\154\141\163\x73\75\x22\146\x6c\x65\x78\x20\x69\x74\145\155\x73\55\x63\145\156\164\145\x72\40\152\x75\x73\x74\x69\x66\x79\55\142\x65\164\x77\145\x65\156\42\x3e\12\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\x3c\x70\40\143\154\141\163\x73\x3d\x22\x70\x2d\x32\x2e\65\40\164\145\x78\x74\55\142\141\163\x65\40\164\x65\x78\x74\x2d\147\x72\x61\171\x2d\70\x30\60\x20\x64\141\162\153\72\x74\x65\x78\x74\x2d\167\x68\151\164\x65\x20\146\x6f\156\164\x2d\163\145\155\151\x62\x6f\x6c\144\42\76\xa\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x40\154\x61\x6e\147\x28\47\141\x64\x6d\x69\156\72\72\x61\160\x70\x2e\155\x61\x72\153\145\164\151\156\x67\56\160\x72\157\155\x6f\x74\151\157\x6e\x73\x2e\x63\141\164\141\154\157\x67\55\x72\x75\x6c\145\163\56\145\x64\x69\x74\56\155\141\x72\x6b\145\x74\151\x6e\147\x2d\164\x69\x6d\x65\x27\x29\12\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\x20\x3c\57\160\76\12\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\74\57\144\x69\166\x3e\xa\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\74\57\170\x2d\163\x6c\157\x74\76\xa\xa\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x3c\x78\55\x73\154\157\x74\x3a\x63\157\156\x74\145\156\164\x3e\xa\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x3c\144\151\166\40\143\x6c\x61\x73\163\75\x22\146\154\x65\170\x20\147\x61\x70\55\x34\42\x3e\12\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\x3c\170\55\x61\144\155\151\156\72\72\x66\157\162\x6d\x2e\143\157\x6e\164\162\x6f\x6c\55\147\x72\x6f\x75\x70\x20\x63\x6c\141\x73\163\75\x22\41\x6d\142\55\60\x22\x3e\xa\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x3c\x78\55\x61\x64\x6d\x69\156\72\72\x66\157\162\x6d\x2e\143\157\x6e\164\x72\157\x6c\x2d\x67\162\157\x75\x70\56\x6c\x61\142\x65\x6c\76\12\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\100\154\141\x6e\x67\50\47\x61\144\x6d\x69\156\x3a\72\x61\x70\160\x2e\x6d\x61\x72\153\145\164\x69\156\147\x2e\160\162\157\x6d\x6f\164\151\x6f\x6e\x73\56\x63\x61\164\141\x6c\x6f\x67\55\x72\x75\x6c\x65\x73\x2e\x65\x64\x69\x74\x2e\146\x72\157\x6d\x27\51\xa\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x3c\x2f\170\55\x61\x64\155\151\156\72\x3a\146\x6f\x72\155\x2e\x63\x6f\x6e\164\162\x6f\x6c\x2d\x67\162\157\x75\x70\56\x6c\x61\x62\x65\x6c\76\12\12\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\74\170\55\141\x64\x6d\151\x6e\72\72\146\x6f\162\x6d\x2e\x63\157\x6e\164\x72\x6f\154\55\x67\162\157\165\160\56\x63\x6f\156\x74\162\x6f\x6c\12\40\40\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\164\x79\x70\145\x3d\42\x64\x61\164\145\x22\xa\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\151\144\x3d\x22\x73\164\x61\x72\x74\163\137\146\x72\157\x6d\42\12\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x6e\141\155\145\75\x22\x73\x74\x61\162\164\x73\x5f\146\x72\157\x6d\x22\xa\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x3a\x76\x61\x6c\x75\145\75\42\157\x6c\x64\x28\47\163\x74\141\x72\164\x73\137\x66\x72\157\155\x27\x29\40\77\77\40\44\x63\x61\x74\x61\x6c\157\147\122\165\154\145\x2d\x3e\163\x74\141\162\x74\x73\137\146\162\157\x6d\42\xa\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\72\x6c\141\142\x65\x6c\75\42\x74\162\x61\x6e\x73\50\x27\x61\x64\155\x69\x6e\x3a\x3a\141\x70\160\56\x6d\141\162\x6b\145\164\x69\x6e\147\56\x70\162\x6f\155\x6f\x74\x69\157\x6e\x73\x2e\143\x61\x74\141\154\x6f\147\55\162\165\154\145\163\x2e\145\x64\x69\x74\56\146\162\x6f\155\x27\x29\42\12\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x3a\x70\154\x61\143\x65\x68\x6f\154\144\145\162\75\x22\164\x72\x61\x6e\163\x28\x27\x61\x64\155\151\156\72\72\141\x70\160\x2e\x6d\x61\x72\153\145\x74\151\x6e\x67\x2e\x70\162\x6f\x6d\x6f\x74\x69\x6f\156\x73\56\143\x61\164\141\x6c\157\147\x2d\x72\165\154\145\163\x2e\145\x64\151\164\56\x66\x72\157\155\47\51\x22\xa\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\57\76\xa\12\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x3c\x78\55\141\x64\155\151\x6e\72\72\146\157\162\x6d\x2e\143\x6f\x6e\x74\162\x6f\x6c\x2d\147\162\x6f\x75\x70\56\x65\x72\x72\x6f\162\40\x63\x6f\156\164\x72\157\x6c\55\x6e\141\x6d\x65\75\42\x73\164\141\162\164\x73\137\146\162\157\155\42\40\x2f\76\xa\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x3c\57\x78\55\141\144\x6d\151\x6e\x3a\72\146\x6f\x72\x6d\x2e\x63\x6f\x6e\164\162\x6f\x6c\55\147\x72\x6f\165\160\x3e\12\12\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x3c\170\55\141\144\x6d\x69\x6e\x3a\72\x66\x6f\x72\155\x2e\x63\157\156\x74\x72\x6f\x6c\x2d\147\162\157\165\x70\x20\143\154\x61\x73\x73\75\x22\x21\155\142\x2d\60\42\x3e\xa\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\74\x78\55\x61\144\x6d\151\156\72\x3a\x66\x6f\162\x6d\x2e\x63\x6f\156\x74\x72\x6f\154\55\147\x72\157\165\160\56\154\x61\142\x65\x6c\76\xa\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x40\x6c\x61\156\x67\x28\47\x61\x64\x6d\151\156\72\x3a\141\x70\x70\x2e\x6d\x61\162\x6b\145\x74\x69\156\147\56\160\162\x6f\x6d\x6f\164\151\x6f\x6e\x73\56\x63\x61\164\141\x6c\x6f\x67\x2d\162\165\154\145\x73\x2e\x65\x64\151\x74\x2e\164\x6f\47\x29\12\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\74\57\x78\x2d\141\144\155\x69\156\72\72\146\157\x72\x6d\56\x63\x6f\x6e\x74\x72\157\154\55\x67\162\x6f\x75\x70\x2e\x6c\141\x62\x65\x6c\x3e\12\xa\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\74\170\x2d\141\x64\155\151\x6e\x3a\x3a\146\157\162\x6d\56\x63\x6f\x6e\x74\x72\157\x6c\55\x67\x72\x6f\x75\x70\56\143\x6f\x6e\x74\162\x6f\x6c\xa\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\164\x79\160\x65\x3d\42\x64\x61\164\x65\42\xa\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x69\x64\75\x22\145\x6e\x64\163\x5f\x74\x69\154\154\42\xa\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x6e\x61\x6d\145\x3d\42\145\x6e\x64\163\x5f\164\151\154\x6c\x22\xa\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x3a\166\141\x6c\x75\x65\75\x22\x6f\154\144\50\47\145\x6e\x64\x73\x5f\164\x69\154\x6c\47\x29\40\77\77\x20\44\143\x61\164\x61\154\157\x67\x52\165\x6c\145\x2d\76\x65\156\x64\163\x5f\164\x69\154\x6c\x22\12\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\72\154\x61\142\x65\154\x3d\x22\164\162\x61\x6e\163\x28\47\x61\144\155\x69\x6e\x3a\x3a\141\160\x70\x2e\155\x61\x72\153\145\164\x69\x6e\147\56\160\x72\x6f\155\157\164\151\x6f\156\x73\x2e\x63\x61\x74\x61\x6c\157\x67\55\162\x75\x6c\145\x73\x2e\145\144\151\164\x2e\164\x6f\x27\51\42\12\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\72\x70\154\x61\143\145\150\157\154\144\x65\162\x3d\x22\164\162\x61\156\x73\x28\47\x61\144\155\x69\156\72\x3a\141\160\x70\56\155\141\x72\153\x65\164\151\x6e\147\56\x70\162\157\x6d\157\164\x69\157\x6e\163\56\143\141\x74\141\154\x6f\x67\55\x72\165\x6c\145\163\56\145\x64\151\x74\56\x74\x6f\47\x29\x22\xa\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\57\x3e\12\12\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x3c\x78\x2d\x61\144\x6d\x69\156\x3a\x3a\x66\x6f\x72\x6d\x2e\x63\157\x6e\164\162\x6f\154\x2d\147\x72\157\165\x70\x2e\x65\162\x72\x6f\162\40\143\157\x6e\x74\x72\157\x6c\x2d\x6e\141\x6d\x65\75\42\145\x6e\144\163\x5f\x74\x69\x6c\154\x22\x20\57\x3e\12\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x20\40\40\74\x2f\x78\x2d\141\x64\155\151\156\72\x3a\x66\157\162\x6d\56\143\x6f\x6e\x74\162\157\154\55\x67\162\x6f\165\x70\x3e\xa\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x3c\57\144\151\166\x3e\xa\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x3c\x2f\170\55\163\x6c\157\164\76\xa\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\74\57\x78\x2d\x61\x64\x6d\151\156\x3a\x3a\141\x63\x63\x6f\x72\x64\151\157\x6e\x3e\12\12\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x7b\x21\x21\x20\166\x69\x65\167\x5f\x72\145\156\144\x65\x72\137\145\x76\x65\156\x74\x28\x27\142\141\147\151\x73\x74\157\x2e\141\144\x6d\x69\x6e\56\155\x61\162\x6b\145\x74\x69\x6e\147\x2e\x70\162\x6f\x6d\157\164\x69\x6f\x6e\x73\x2e\x63\x61\x74\x61\x6c\x6f\x67\137\x72\165\154\x65\x73\56\145\144\151\x74\x2e\x63\x61\162\144\x2e\141\143\143\157\x72\x64\x69\x6f\156\x2e\x6d\x61\162\x6b\145\164\151\x6e\147\137\x74\x69\155\x65\56\x61\146\x74\145\x72\x27\51\40\x21\x21\175\12\xa\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\74\57\x64\x69\x76\x3e\12\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x3c\x2f\144\151\x76\76\12\12\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x7b\x21\41\40\x76\x69\x65\167\x5f\162\x65\156\x64\145\x72\x5f\145\166\145\156\x74\x28\x27\x62\141\x67\x69\163\x74\157\56\x61\144\x6d\151\x6e\56\x6d\141\x72\153\145\x74\x69\156\x67\56\x70\x72\157\x6d\157\x74\151\x6f\156\163\x2e\x63\141\164\x61\154\x6f\147\x5f\162\x75\154\145\163\56\143\x72\x65\x61\164\x65\56\143\162\x65\x61\164\145\137\x66\x6f\162\155\x5f\143\157\x6e\164\162\x6f\x6c\163\56\x61\146\x74\x65\x72\x27\51\40\41\41\x7d\12\12\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x3c\x2f\170\55\x61\144\155\151\x6e\x3a\x3a\x66\157\162\x6d\x3e\12\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\74\57\x64\151\166\76\xa\x20\x20\x20\40\40\x20\40\40\74\x2f\163\143\x72\x69\160\x74\x3e\12\xa\x20\x20\40\40\40\40\40\40\74\x21\55\55\40\x76\x20\143\141\164\x61\154\x6f\x67\40\x72\165\x6c\145\x20\145\x64\x69\164\40\x66\157\162\155\x20\x63\x6f\x6d\160\x6f\x6e\145\156\x74\40\x2d\x2d\x3e\12\40\x20\40\x20\40\40\x20\40\x3c\x73\x63\x72\x69\160\x74\x20\164\x79\x70\145\75\42\155\157\144\x75\154\145\x22\76\12\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\141\x70\160\x2e\143\157\x6d\160\x6f\156\145\x6e\164\x28\47\x76\55\143\141\x74\x61\x6c\x6f\x67\55\x72\165\154\145\x2d\145\144\151\x74\x2d\146\157\162\155\x27\x2c\40\173\xa\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x74\x65\155\x70\x6c\x61\x74\x65\x3a\40\x27\x23\x76\x2d\143\141\164\x61\x6c\x6f\147\55\162\x75\x6c\x65\x2d\x65\x64\x69\164\x2d\146\x6f\162\x6d\x2d\164\145\x6d\160\154\x61\164\x65\47\54\12\xa\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x64\141\x74\141\50\x29\40\x7b\xa\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x72\x65\x74\165\x72\156\40\173\12\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x63\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x54\x79\160\145\72\40\173\x7b\x20\x6f\154\x64\50\47\x63\157\156\144\x69\164\151\x6f\156\x5f\x74\171\x70\x65\47\x29\x20\x3f\72\x20\44\143\x61\164\141\x6c\157\147\x52\165\154\145\x2d\76\x63\157\x6e\x64\151\164\x69\x6f\x6e\x5f\x74\x79\160\145\40\175\x7d\x2c\xa\xa\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x63\x6f\156\144\x69\x74\x69\157\156\163\x3a\x20\100\x6a\163\x6f\156\x28\x24\143\x61\x74\x61\154\157\x67\x52\x75\x6c\145\x2d\76\143\x6f\156\144\151\164\x69\x6f\156\x73\x20\x3f\x3a\40\133\135\51\xa\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\175\12\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\175\54\xa\12\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x6d\x65\164\x68\157\144\x73\x3a\40\x7b\xa\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\141\144\144\103\157\x6e\144\151\164\151\157\x6e\50\x29\x20\x7b\12\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\164\150\151\163\56\x63\x6f\x6e\x64\x69\x74\151\157\x6e\x73\56\x70\165\x73\150\x28\173\12\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\47\x61\164\x74\x72\151\142\x75\164\145\x27\72\x20\47\x27\54\xa\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x27\157\x70\x65\x72\141\x74\x6f\x72\x27\72\x20\x27\75\75\47\54\xa\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\47\166\141\x6c\x75\145\x27\72\x20\47\47\x2c\12\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\175\x29\x3b\xa\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\175\x2c\xa\12\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x72\145\x6d\157\x76\145\103\x6f\x6e\144\151\164\151\157\x6e\50\x63\157\x6e\x64\151\x74\151\157\156\51\x20\x7b\12\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\154\145\x74\x20\151\x6e\x64\x65\x78\x20\75\40\164\150\x69\x73\x2e\143\157\x6e\144\151\164\x69\157\156\163\x2e\x69\x6e\x64\x65\x78\117\146\50\143\x6f\156\x64\x69\164\x69\157\x6e\x29\xa\xa\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\164\x68\151\x73\x2e\143\x6f\156\144\151\x74\151\157\156\x73\x2e\163\x70\x6c\151\x63\145\x28\x69\x6e\x64\145\x78\x2c\40\61\x29\12\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\x7d\54\12\xa\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\157\156\x53\165\142\x6d\x69\x74\50\x65\x29\x20\173\xa\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x74\x68\151\163\56\x24\x72\157\x6f\164\56\x6f\156\x53\x75\x62\x6d\151\x74\x28\x65\x29\12\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x7d\x2c\xa\xa\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x72\145\144\x69\162\145\143\x74\102\x61\x63\x6b\x28\146\x61\x6c\154\x62\x61\143\x6b\x55\162\x6c\x29\40\x7b\12\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\164\150\x69\x73\56\44\162\157\157\x74\x2e\x72\145\x64\151\162\145\143\164\102\141\x63\153\x28\146\x61\154\x6c\142\141\x63\x6b\125\x72\154\x29\12\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\175\12\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\175\xa\x20\40\40\40\40\x20\40\40\x20\40\x20\40\175\51\12\40\x20\40\x20\x20\x20\40\x20\74\x2f\163\x63\162\151\160\x74\76\xa\12\x20\40\x20\40\x20\x20\40\x20\x3c\x21\x2d\x2d\x20\166\x20\143\x61\164\x61\x6c\157\x67\x20\x72\165\154\145\40\x63\x6f\156\x64\x69\x74\x69\x6f\156\40\151\x74\145\x6d\40\146\x6f\x72\155\x20\164\x65\x6d\x70\x6c\141\164\145\40\x2d\x2d\x3e\12\x20\40\x20\x20\40\x20\40\x20\74\163\x63\x72\x69\x70\164\x20\164\171\x70\145\75\x22\164\145\170\x74\x2f\x78\55\164\145\x6d\160\x6c\x61\164\145\42\40\x69\144\x3d\x22\x76\x2d\143\x61\x74\x61\154\x6f\147\x2d\162\165\x6c\145\x2d\x63\157\156\x64\151\164\x69\157\x6e\x2d\x69\x74\x65\155\55\164\x65\155\160\x6c\x61\164\145\x22\x3e\xa\40\40\40\40\40\40\x20\x20\40\40\x20\40\x3c\x64\x69\x76\x20\143\154\x61\163\x73\75\42\x66\154\x65\x78\40\147\x61\x70\55\64\40\152\x75\x73\x74\151\x66\x79\55\x62\x65\x74\x77\145\145\156\x20\x6d\164\55\x34\42\x3e\12\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\74\144\x69\166\40\x63\154\x61\x73\x73\75\x22\x66\x6c\145\x78\40\x67\x61\x70\x2d\64\x20\146\154\x65\170\55\61\40\x6d\141\170\55\163\x6d\x3a\146\x6c\x65\170\x2d\x77\162\x61\x70\x20\x6d\141\170\55\x73\155\x3a\146\154\145\x78\x2d\61\x22\76\12\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\74\163\x65\154\x65\143\x74\xa\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x3a\x6e\141\x6d\x65\x3d\42\x5b\47\x63\x6f\x6e\144\x69\x74\x69\x6f\156\x73\133\x27\40\53\40\x69\x6e\144\x65\x78\40\x2b\40\x27\x5d\x5b\141\x74\x74\162\x69\142\165\164\145\135\x27\135\42\12\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\72\151\144\75\42\x5b\47\143\x6f\x6e\x64\x69\164\x69\x6f\x6e\163\133\47\x20\x2b\40\151\156\x64\145\x78\40\x2b\40\x27\x5d\x5b\x61\x74\164\x72\151\x62\165\164\145\135\47\135\x22\xa\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x63\x6c\x61\163\163\75\x22\x63\x75\x73\164\x6f\x6d\x2d\x73\x65\x6c\x65\143\x74\x20\146\x6c\145\x78\40\167\x2d\x31\x2f\x33\40\x6d\151\156\72\167\55\x31\57\x33\40\x68\55\61\60\40\x70\x79\55\61\x2e\x35\40\x70\x78\x2d\63\40\x62\147\x2d\167\150\151\x74\x65\40\x64\141\x72\x6b\x3a\x62\x67\x2d\147\x72\141\x79\55\x39\60\x30\40\142\x6f\162\144\x65\x72\x20\144\x61\x72\153\72\142\x6f\162\x64\x65\x72\55\x67\162\x61\171\x2d\x38\x30\60\40\162\157\x75\156\144\145\144\x2d\x6d\x64\x20\164\x65\170\x74\55\x73\x6d\40\x74\x65\170\x74\x2d\147\x72\x61\171\x2d\x36\60\60\40\144\x61\x72\153\72\x74\145\x78\164\x2d\147\x72\141\x79\55\63\x30\x30\x20\x66\x6f\156\x74\55\156\x6f\162\155\141\x6c\40\164\x72\x61\156\163\x69\x74\x69\157\156\x2d\x61\154\154\x20\150\157\x76\x65\x72\72\142\x6f\162\x64\x65\162\55\147\x72\141\x79\55\x34\60\60\40\x6c\x74\162\72\160\x72\55\61\60\40\x72\x74\154\x3a\160\154\x2d\x31\x30\x22\12\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x76\x2d\155\157\144\145\x6c\75\42\143\157\156\x64\x69\164\x69\157\x6e\56\141\x74\x74\x72\151\142\x75\164\145\42\xa\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\76\xa\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x3c\x6f\160\x74\x69\x6f\x6e\x20\166\x61\x6c\165\x65\75\42\42\x3e\x40\154\141\x6e\x67\50\x27\x61\144\155\151\156\x3a\x3a\x61\x70\x70\x2e\155\141\x72\153\x65\164\x69\x6e\x67\56\x70\162\157\155\x6f\x74\151\157\156\163\x2e\x63\141\164\141\154\x6f\147\55\x72\165\154\x65\x73\x2e\x65\x64\151\x74\x2e\143\x68\157\x6f\163\x65\55\x63\x6f\x6e\144\x69\x74\x69\x6f\x6e\x2d\x74\157\x2d\141\144\144\x27\x29\x3c\57\157\x70\164\151\157\156\76\xa\12\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\74\x6f\x70\x74\x67\162\x6f\165\160\xa\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x76\x2d\146\x6f\x72\75\x27\x28\x63\x6f\x6e\144\151\x74\151\x6f\156\101\x74\164\162\151\142\165\x74\x65\x2c\x20\151\156\x64\x65\170\x29\x20\151\156\40\143\x6f\x6e\144\151\164\151\157\x6e\x41\164\164\162\151\142\165\x74\145\x73\47\12\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\72\x6c\141\x62\x65\154\x3d\42\143\157\x6e\144\x69\164\151\x6f\156\101\x74\164\x72\x69\142\165\164\145\x2e\154\141\x62\145\154\42\12\x20\x20\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x3e\12\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x3c\157\160\x74\151\157\156\12\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\166\x2d\146\x6f\x72\75\x27\x28\143\150\151\x6c\144\x41\x74\164\162\151\142\x75\x74\x65\x2c\40\151\156\144\x65\x78\51\40\151\156\40\143\x6f\x6e\144\x69\164\151\x6f\x6e\x41\x74\x74\x72\151\142\x75\164\145\x2e\143\x68\151\x6c\144\162\x65\156\x27\12\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x3a\x76\141\x6c\165\145\x3d\x22\x63\150\151\154\144\x41\x74\x74\162\151\x62\165\164\x65\x2e\x6b\x65\x79\x22\xa\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x3a\164\145\170\x74\75\x22\143\150\x69\x6c\144\101\x74\x74\x72\151\x62\165\164\145\56\x6c\x61\142\145\154\42\xa\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\76\xa\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x3c\x2f\157\160\164\151\157\156\76\xa\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\74\x2f\x6f\x70\x74\x67\162\x6f\165\x70\76\12\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x3c\x2f\163\x65\x6c\145\x63\x74\x3e\xa\12\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x3c\163\145\154\145\143\164\12\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\72\x6e\141\x6d\145\x3d\x22\x5b\x27\143\157\156\x64\x69\x74\x69\157\156\163\133\x27\40\x2b\40\x69\x6e\x64\x65\170\40\53\40\x27\x5d\x5b\x6f\x70\145\162\141\x74\x6f\x72\x5d\x27\135\x22\xa\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x63\x6c\x61\163\163\75\42\x63\165\x73\164\x6f\155\x2d\x73\145\x6c\145\143\x74\40\146\154\145\x78\40\x77\55\x31\x2f\63\40\x6d\151\156\x3a\167\x2d\x31\x2f\63\x20\x68\x2d\x31\60\x20\160\171\x2d\x31\56\65\x20\x70\170\x2d\63\x20\x62\x67\x2d\167\x68\151\x74\145\40\144\141\x72\x6b\72\142\x67\x2d\147\162\141\x79\x2d\x39\60\x30\x20\142\157\x72\144\145\x72\40\144\x61\x72\153\72\x62\157\x72\144\145\162\x2d\147\x72\141\x79\55\70\x30\x30\x20\x72\157\165\156\144\x65\144\x2d\x6d\x64\x20\164\x65\170\164\55\x73\x6d\x20\x74\x65\x78\164\x2d\x67\162\x61\x79\55\66\x30\x30\x20\144\141\x72\153\72\164\x65\x78\164\55\147\x72\141\x79\x2d\63\x30\60\x20\x66\x6f\156\x74\x2d\x6e\157\x72\155\141\x6c\40\164\162\x61\x6e\163\x69\164\x69\157\x6e\55\x61\154\x6c\40\150\x6f\x76\x65\x72\72\x62\157\x72\x64\145\162\x2d\x67\x72\141\171\55\x34\x30\x30\x20\154\164\162\x3a\x70\162\x2d\61\60\x20\162\x74\x6c\x3a\160\x6c\x2d\x31\60\x22\xa\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x76\x2d\x6d\157\144\145\154\x3d\x22\143\x6f\156\144\151\x74\x69\x6f\156\x2e\157\x70\145\162\x61\x74\x6f\x72\x22\12\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\166\55\151\146\x3d\x22\x6d\141\164\143\150\x65\x64\x41\x74\164\162\x69\142\165\164\145\x22\12\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x3e\12\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\74\x6f\x70\x74\151\x6f\156\xa\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x76\x2d\146\x6f\x72\75\47\x6f\x70\x65\162\141\x74\157\162\40\151\156\40\143\x6f\156\144\151\164\x69\x6f\x6e\117\160\145\162\x61\164\157\x72\x73\x5b\x6d\141\164\143\x68\x65\x64\x41\x74\x74\x72\x69\x62\x75\164\x65\56\x74\171\x70\x65\135\x27\12\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\40\72\166\141\x6c\x75\x65\x3d\42\157\160\145\162\x61\164\157\162\x2e\x6f\x70\x65\162\141\164\157\x72\x22\xa\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\72\x74\145\x78\x74\75\42\157\x70\x65\162\x61\x74\157\162\56\x6c\141\142\145\x6c\42\xa\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\76\12\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x3c\57\157\x70\164\151\157\156\76\xa\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x3c\x2f\x73\145\154\x65\x63\x74\76\xa\12\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\x3c\144\151\166\40\166\55\x69\146\75\x22\155\141\x74\143\x68\x65\144\x41\x74\164\162\151\x62\x75\x74\x65\42\76\12\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x3c\151\x6e\x70\165\x74\xa\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\164\x79\x70\x65\x3d\x22\x68\x69\144\144\x65\156\x22\12\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\72\x6e\x61\x6d\145\75\x22\133\47\x63\157\x6e\144\151\164\151\157\156\163\133\47\40\x2b\40\x69\156\x64\145\170\x20\53\40\x27\x5d\x5b\x61\x74\164\162\x69\x62\165\164\x65\x5f\x74\171\x70\145\135\47\x5d\42\xa\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\166\55\155\x6f\x64\145\154\75\x22\155\141\x74\143\150\x65\x64\x41\x74\x74\x72\x69\142\165\x74\145\x2e\164\171\x70\x65\x22\12\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x3e\xa\12\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\74\144\151\x76\40\x76\x2d\x69\x66\x3d\x22\155\141\x74\143\x68\145\x64\101\164\x74\x72\x69\142\x75\164\x65\56\x6b\145\171\40\75\75\40\x27\x70\x72\x6f\x64\165\x63\x74\174\143\141\x74\145\147\x6f\162\171\x5f\151\x64\x73\47\42\x3e\xa\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\74\x78\55\141\x64\x6d\151\156\72\x3a\164\x72\145\x65\x2e\166\151\x65\x77\xa\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x69\156\x70\165\164\55\164\171\x70\145\75\x22\x63\x68\145\143\153\142\x6f\x78\x22\xa\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x73\145\x6c\145\x63\x74\x69\157\x6e\55\164\x79\160\145\x3d\x22\x69\x6e\144\151\166\151\x64\165\x61\154\x22\xa\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\151\144\55\x66\x69\x65\x6c\144\75\42\151\x64\42\xa\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\72\72\156\x61\x6d\145\55\x66\x69\145\x6c\144\75\42\x27\x63\x6f\156\144\151\164\x69\157\x6e\163\x5b\47\x20\x2b\40\151\156\x64\145\x78\x20\x2b\40\x27\135\x5b\x76\141\154\x75\145\135\47\42\xa\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x76\x61\x6c\165\x65\55\146\151\145\x6c\x64\75\42\x69\144\x22\xa\x20\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\72\x3a\x69\x74\145\x6d\163\75\47\155\x61\x74\x63\150\x65\144\101\x74\164\x72\151\142\x75\164\x65\x2e\x6f\160\164\x69\x6f\x6e\x73\x27\12\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\72\x3a\166\x61\154\165\x65\75\x27\x63\x6f\156\144\x69\x74\x69\157\x6e\x2e\166\x61\x6c\x75\145\47\12\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x3a\146\141\x6c\154\x62\x61\x63\153\x2d\154\x6f\x63\x61\x6c\145\x3d\42\x63\157\156\x66\x69\147\50\47\141\x70\160\x2e\146\141\154\154\142\x61\143\x6b\x5f\x6c\x6f\143\x61\154\x65\x27\51\42\12\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\x20\40\x2f\x3e\12\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x3c\x2f\144\x69\166\x3e\12\xa\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x3c\144\x69\166\40\x76\55\145\154\x73\x65\x3e\12\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\74\x64\151\166\12\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x76\55\x69\146\75\42\x6d\x61\164\x63\150\145\144\101\x74\164\x72\x69\142\x75\x74\145\x2e\164\x79\x70\145\x20\x3d\75\40\47\164\145\170\164\47\xa\40\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x7c\x7c\x20\x6d\141\164\x63\150\145\144\101\164\x74\x72\151\142\x75\164\145\x2e\164\x79\x70\145\x20\75\75\40\x27\160\162\151\143\145\x27\xa\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\x7c\x7c\40\155\141\x74\x63\x68\x65\x64\x41\164\164\162\151\x62\x75\164\145\x2e\164\x79\x70\145\40\75\75\x20\47\144\145\143\151\x6d\x61\x6c\x27\12\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x7c\x7c\x20\x6d\x61\x74\143\x68\145\144\101\x74\164\162\151\142\x75\x74\145\56\164\x79\x70\145\x20\75\x3d\x20\x27\151\156\164\145\147\145\162\47\42\xa\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x3e\xa\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\74\166\55\146\x69\145\154\144\12\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x3a\x6e\x61\155\x65\x3d\x22\140\143\x6f\156\x64\x69\x74\151\157\x6e\x73\x5b\x24\x7b\x69\x6e\144\145\170\x7d\x5d\x5b\166\x61\154\165\x65\x5d\x60\x22\12\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\166\55\x73\154\x6f\x74\x3d\42\173\x20\x66\x69\145\x6c\144\54\x20\x65\162\x72\157\162\115\145\x73\x73\141\x67\145\175\x22\12\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\72\x69\144\75\x22\140\143\157\156\144\151\x74\151\x6f\x6e\163\133\44\173\x69\156\x64\145\x78\175\135\x5b\166\x61\154\165\x65\x5d\140\42\12\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\x3a\x72\165\x6c\145\163\75\42\x6d\141\164\x63\x68\145\x64\101\164\164\162\x69\x62\x75\x74\145\x2e\x74\x79\160\x65\x20\75\x3d\x20\47\x70\162\x69\x63\x65\47\40\77\40\x27\162\x65\x67\x65\170\72\136\133\x30\x2d\x39\135\53\x28\134\x2e\133\x30\x2d\71\x5d\53\x29\77\x24\x27\40\72\40\47\x27\12\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x7c\174\x20\155\141\x74\143\150\x65\x64\x41\164\164\162\x69\142\x75\x74\145\56\x74\171\x70\x65\x20\x3d\75\x20\47\144\x65\143\151\x6d\141\154\47\40\77\40\47\162\x65\147\x65\x78\x3a\x5e\x5b\x30\x2d\x39\x5d\53\50\x5c\56\133\60\55\x39\x5d\53\51\x3f\44\x27\x20\72\40\47\x27\xa\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\174\x7c\40\x6d\141\164\x63\x68\x65\144\x41\x74\164\x72\151\x62\x75\164\x65\56\164\x79\160\x65\x20\75\x3d\40\47\x69\156\x74\x65\147\145\x72\x27\40\x3f\x20\x27\162\x65\147\145\x78\x3a\136\x5b\60\55\x39\135\x2b\x28\x5c\x2e\133\x30\x2d\x39\135\x2b\x29\77\44\x27\x20\72\x20\47\x27\xa\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x7c\x7c\40\x6d\141\164\143\150\x65\144\x41\x74\164\162\151\142\165\164\x65\x2e\x74\x79\160\145\40\75\75\x20\47\x74\145\170\164\47\40\x3f\x20\47\x72\145\x67\145\x78\72\x5e\50\133\101\x2d\132\141\55\x7a\60\x2d\x39\137\x20\134\x27\134\x2d\135\53\x29\x24\47\40\72\40\47\x27\42\12\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x6c\141\142\145\154\x3d\42\x40\154\x61\156\147\x28\47\x61\144\155\151\156\72\x3a\141\x70\x70\x2e\155\x61\162\x6b\x65\164\x69\x6e\x67\56\160\x72\157\155\157\164\x69\157\156\163\x2e\x63\141\x74\141\x6c\x6f\147\x2d\x72\x75\x6c\x65\163\56\145\x64\x69\164\56\143\157\x6e\144\x69\164\151\157\156\x73\47\x29\x22\xa\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\166\55\x6d\157\x64\145\154\75\42\143\x6f\x6e\144\x69\x74\x69\x6f\156\56\x76\x61\154\x75\145\42\xa\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\76\xa\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\74\151\x6e\x70\165\x74\12\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x74\x79\160\x65\75\x22\x74\x65\x78\x74\x22\xa\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\72\x63\x6c\x61\163\x73\75\42\173\40\x27\142\157\x72\x64\x65\162\x20\x62\x6f\162\x64\x65\x72\x2d\162\x65\x64\55\x35\x30\60\x27\72\x20\145\162\x72\x6f\162\x4d\x65\x73\163\x61\147\x65\x20\175\42\xa\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\x63\154\141\163\x73\75\42\x66\x6c\x65\x78\40\x77\55\x5b\62\70\71\160\x78\x5d\40\155\151\156\x3a\167\55\x31\57\63\40\150\x2d\61\x30\x20\160\171\55\61\56\65\x20\160\x78\55\63\x20\x62\147\x2d\167\x68\151\164\145\40\x64\x61\162\153\x3a\x62\x67\x2d\x67\162\x61\x79\55\71\60\60\40\x62\x6f\162\144\145\162\40\x64\141\x72\x6b\72\x62\x6f\162\x64\x65\x72\55\147\162\141\171\55\x38\60\x30\40\x72\x6f\165\156\x64\145\x64\x2d\155\x64\40\x74\x65\x78\x74\x2d\163\155\40\x74\x65\x78\164\55\x67\x72\x61\x79\x2d\66\60\x30\40\x64\x61\x72\153\72\164\145\170\x74\x2d\x67\162\141\171\x2d\x33\60\x30\40\146\x6f\x6e\164\55\156\x6f\162\x6d\141\154\x20\x74\x72\141\156\163\x69\164\151\157\156\55\x61\154\154\x20\150\x6f\x76\145\162\x3a\x62\x6f\x72\144\145\x72\x2d\x67\162\x61\171\x2d\64\x30\x30\x20\154\164\x72\72\x70\162\x2d\x31\60\40\162\164\154\x3a\160\154\55\61\x30\42\12\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x76\x2d\x62\151\156\144\x3d\42\146\151\x65\x6c\x64\x22\xa\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x2f\x3e\12\40\40\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x3c\x2f\x76\55\x66\151\145\x6c\x64\76\xa\xa\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\74\166\x2d\145\x72\162\x6f\162\x2d\155\145\x73\163\x61\147\x65\xa\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x3a\x6e\141\x6d\145\75\42\140\143\x6f\156\x64\x69\164\x69\157\x6e\163\x5b\x24\173\x69\x6e\144\145\x78\x7d\135\133\x76\141\x6c\165\x65\135\x60\x22\12\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\143\154\x61\163\163\x3d\42\155\x74\x2d\61\x20\164\145\x78\164\x2d\162\x65\x64\x2d\x35\60\x30\40\164\x65\x78\x74\x2d\170\x73\40\151\x74\141\x6c\x69\143\x22\xa\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x61\x73\75\x22\160\x22\12\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x3e\xa\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x3c\x2f\166\55\x65\162\x72\157\x72\55\x6d\x65\163\x73\141\147\145\x3e\12\40\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x3c\57\144\151\166\x3e\12\xa\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\74\144\151\166\40\x76\55\151\146\75\42\x6d\141\164\x63\150\145\144\101\x74\164\162\x69\142\x75\x74\x65\56\x74\x79\x70\145\x20\75\75\x20\47\x64\141\x74\x65\47\x22\76\12\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\74\x78\x2d\141\144\155\x69\156\72\x3a\146\154\141\x74\55\160\x69\143\153\145\x72\56\x64\141\164\145\x20\x63\x6c\x61\163\x73\75\x22\x21\167\55\133\x31\64\x30\160\x78\x5d\42\40\72\x3a\141\154\154\x6f\167\55\x69\x6e\x70\165\164\75\42\x66\141\154\163\145\x22\76\xa\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x3c\x69\156\x70\165\x74\12\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x74\x79\x70\x65\75\x22\144\x61\x74\145\x22\12\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\143\x6c\x61\x73\163\x3d\42\146\154\x65\x78\40\155\x69\x6e\x2d\150\x2d\133\x33\71\160\170\135\40\167\x2d\146\x75\154\154\40\x72\157\165\156\x64\x65\144\x2d\x6d\144\x20\142\x6f\162\x64\x65\162\x20\x70\170\x2d\x33\x20\160\171\x2d\x32\x20\164\x65\170\164\55\x73\155\x20\164\x65\x78\164\x2d\147\x72\141\171\x2d\66\60\60\40\x74\x72\141\156\x73\x69\x74\x69\157\x6e\55\x61\154\154\x20\150\x6f\x76\x65\x72\72\x62\157\x72\144\145\x72\55\147\162\141\x79\55\64\60\60\40\144\141\162\x6b\72\150\157\x76\x65\162\72\142\x6f\162\144\x65\162\55\147\x72\141\x79\x2d\x34\60\x30\40\144\x61\162\153\x3a\x62\x6f\x72\x64\x65\162\55\147\162\x61\171\x2d\70\60\60\40\144\x61\162\153\x3a\142\x67\55\x67\x72\141\x79\x2d\x39\x30\60\x20\x64\141\162\153\x3a\164\x65\170\164\x2d\147\x72\141\x79\x2d\63\x30\60\x22\xa\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\72\156\141\155\x65\x3d\42\133\47\143\x6f\156\x64\x69\x74\151\x6f\x6e\163\x5b\47\40\x2b\x20\x69\x6e\x64\145\x78\40\53\40\47\x5d\x5b\166\x61\x6c\165\145\x5d\x27\x5d\x22\xa\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x76\55\x6d\x6f\144\x65\154\75\x22\143\157\156\x64\x69\164\151\157\x6e\x2e\x76\x61\154\x75\145\42\12\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x2f\x3e\xa\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\74\x2f\170\55\x61\144\155\x69\x6e\x3a\x3a\x66\154\x61\164\x2d\x70\151\x63\153\x65\162\56\144\x61\164\145\x3e\12\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x3c\x2f\144\151\x76\76\12\12\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x3c\144\x69\166\x20\x76\55\x69\146\75\x22\x6d\141\164\143\150\x65\x64\101\x74\164\x72\x69\142\x75\x74\x65\56\164\171\x70\x65\40\x3d\x3d\x20\x27\144\141\164\145\x74\x69\x6d\x65\x27\x22\x3e\12\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x3c\x78\x2d\141\x64\155\151\x6e\x3a\72\146\x6c\141\164\55\160\x69\x63\x6b\x65\x72\x2e\144\x61\x74\x65\40\x63\154\x61\x73\163\75\x22\x21\167\x2d\x5b\x31\64\60\x70\x78\135\x22\x20\x3a\x3a\x61\x6c\154\x6f\x77\55\151\156\160\165\164\x3d\x22\146\141\154\x73\x65\x22\x3e\12\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x3c\x69\156\x70\x75\x74\xa\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\164\x79\160\145\x3d\42\x64\141\164\x65\164\151\x6d\145\x22\12\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x63\154\141\163\163\75\42\x66\x6c\145\170\x20\x6d\151\x6e\x2d\x68\55\133\63\71\x70\x78\135\40\x77\x2d\146\165\x6c\x6c\40\x72\157\x75\156\x64\x65\x64\55\x6d\x64\x20\x62\x6f\x72\x64\145\162\x20\x70\170\55\63\40\160\x79\55\x32\40\x74\x65\170\164\55\x73\x6d\x20\164\x65\x78\x74\55\x67\162\x61\171\55\x36\x30\60\x20\x74\162\x61\156\x73\x69\x74\x69\157\156\x2d\141\154\154\x20\x68\x6f\166\145\x72\x3a\x62\x6f\162\144\145\x72\55\147\x72\141\171\x2d\x34\x30\x30\x20\x64\141\x72\153\x3a\x68\157\166\x65\x72\x3a\x62\157\162\x64\145\162\55\147\x72\x61\x79\55\x34\60\x30\40\x64\x61\162\153\x3a\x62\x6f\162\x64\145\162\x2d\x67\x72\x61\171\55\70\x30\x30\x20\144\x61\162\153\72\x62\x67\x2d\147\x72\x61\171\x2d\x39\x30\60\x20\144\x61\162\153\72\164\145\170\164\55\147\162\141\x79\55\x33\x30\60\x22\xa\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x3a\x6e\x61\155\145\75\42\x5b\x27\x63\157\x6e\144\151\x74\151\157\156\163\x5b\x27\x20\53\40\x69\x6e\x64\145\x78\40\53\x20\x27\135\x5b\166\x61\154\x75\145\x5d\x27\135\x22\12\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x76\55\155\157\144\145\x6c\x3d\x22\x63\x6f\156\144\x69\x74\151\x6f\156\x2e\166\141\x6c\165\x65\42\12\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\57\x3e\12\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\74\x2f\x78\55\x61\x64\x6d\x69\x6e\72\x3a\146\x6c\141\164\55\160\x69\143\153\145\x72\x2e\144\x61\x74\145\x3e\12\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\74\x2f\x64\151\166\76\xa\xa\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\x3c\144\x69\166\x20\x76\55\151\x66\x3d\x22\155\x61\164\x63\x68\x65\144\101\164\x74\x72\151\142\165\164\x65\x2e\164\171\x70\x65\40\x3d\75\x20\47\142\157\157\x6c\x65\141\156\47\42\x3e\xa\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x3c\x73\x65\154\x65\x63\x74\12\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\72\156\x61\155\x65\75\42\x5b\47\143\157\156\144\151\x74\x69\157\156\163\133\47\40\53\40\151\156\144\145\170\40\x2b\x20\47\135\x5b\166\x61\154\x75\145\x5d\x27\135\42\xa\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\143\x6c\141\x73\163\x3d\42\x63\x75\x73\164\x6f\155\55\x73\145\x6c\145\143\x74\40\x69\156\x6c\151\156\x65\x2d\x66\154\x65\170\x20\147\141\160\x2d\x78\55\61\x20\x6a\x75\163\x74\151\x66\x79\x2d\x62\x65\164\x77\145\x65\156\x20\151\x74\145\155\163\x2d\143\x65\156\x74\x65\x72\40\155\x61\x78\55\150\x2d\x31\x30\40\x77\55\x66\165\x6c\154\40\155\x61\170\55\167\55\x5b\61\x39\x36\160\x78\x5d\x20\x70\171\x2d\x31\56\65\x20\154\164\x72\72\160\154\55\63\x9\x72\164\154\x3a\160\162\55\x33\40\160\x78\55\63\x20\142\147\x2d\x77\x68\151\x74\x65\x20\144\x61\162\x6b\72\142\147\55\x67\162\x61\171\x2d\71\60\60\x20\x62\157\162\x64\145\x72\40\144\x61\x72\153\72\142\157\162\x64\145\162\55\147\x72\x61\171\x2d\70\60\60\40\x72\157\165\x6e\x64\145\x64\x2d\x6d\144\40\164\x65\x78\x74\x2d\163\x6d\x20\x74\145\x78\x74\55\147\162\141\x79\x2d\x36\x30\x30\x20\144\141\x72\x6b\x3a\164\x65\170\x74\55\x67\x72\x61\171\55\x33\x30\60\x20\146\x6f\x6e\164\55\156\x6f\162\155\141\x6c\x20\143\x75\x72\163\157\162\55\x70\x6f\151\x6e\164\x65\x72\x20\155\x61\x72\x6b\145\x72\x3a\x73\x68\141\144\x6f\x77\x20\141\x70\x70\145\141\162\x61\x6e\x63\x65\x2d\156\157\x6e\145\x20\146\x6f\143\165\x73\72\162\x69\x6e\147\55\62\x20\x66\157\143\x75\163\72\157\x75\164\154\151\x6e\145\x2d\156\157\x6e\145\x20\x66\157\143\165\x73\72\x72\x69\156\147\x2d\x62\x6c\141\143\153\40\x74\x72\x61\156\x73\151\164\151\157\x6e\x2d\141\x6c\154\40\x68\157\x76\145\x72\72\x62\x6f\x72\x64\145\162\55\147\x72\141\x79\x2d\x34\60\60\x22\xa\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x76\55\155\157\144\145\x6c\75\x22\x63\x6f\x6e\144\x69\164\x69\x6f\x6e\x2e\166\x61\x6c\165\145\x22\12\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x3e\12\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\74\157\160\164\x69\157\156\x20\x76\141\x6c\165\x65\x3d\x22\x31\x22\x3e\12\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\100\154\x61\156\x67\x28\x27\x61\144\155\151\x6e\72\x3a\x61\x70\160\x2e\x6d\141\x72\x6b\145\164\151\x6e\147\56\x70\162\157\x6d\x6f\164\x69\157\156\x73\x2e\x63\x61\x74\141\x6c\x6f\x67\x2d\162\x75\154\x65\x73\56\145\144\151\x74\x2e\171\x65\163\47\51\xa\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\74\x2f\x6f\x70\164\x69\157\156\76\xa\12\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\x3c\157\160\164\x69\157\x6e\40\166\x61\x6c\165\145\x3d\x22\x30\x22\76\12\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x40\x6c\x61\156\147\x28\47\x61\x64\x6d\151\156\x3a\x3a\141\x70\160\56\155\x61\162\153\145\164\151\156\147\x2e\x70\x72\x6f\155\157\x74\x69\x6f\156\163\x2e\143\x61\x74\x61\x6c\157\147\55\x72\x75\154\x65\163\x2e\145\x64\151\x74\x2e\156\x6f\x27\51\12\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\x3c\x2f\x6f\160\x74\x69\157\x6e\x3e\12\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\74\x2f\163\x65\154\145\x63\x74\76\12\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x3c\x2f\x64\151\x76\76\xa\12\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\x3c\x64\151\x76\x20\166\x2d\151\x66\75\x22\155\x61\x74\143\150\145\144\x41\x74\x74\x72\151\142\165\x74\145\56\164\x79\x70\x65\x20\75\x3d\x20\x27\163\145\x6c\145\143\x74\47\x20\174\x7c\40\x6d\x61\x74\x63\150\145\144\101\164\164\x72\x69\142\x75\x74\145\x2e\x74\x79\x70\x65\x20\x3d\75\x20\x27\162\x61\x64\151\157\47\x22\x3e\xa\40\40\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\74\163\145\154\x65\x63\164\12\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x3a\156\x61\155\145\x3d\42\x5b\47\x63\157\x6e\144\151\164\x69\x6f\156\163\133\47\x20\53\40\151\x6e\144\145\170\x20\x2b\40\47\x5d\133\166\141\154\165\145\135\47\135\42\xa\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x63\x6c\x61\163\x73\x3d\x22\x63\x75\x73\164\157\155\x2d\x73\x65\x6c\145\143\x74\x20\x66\154\145\170\40\167\55\133\x32\70\71\x70\x78\135\40\x6d\x69\x6e\72\167\55\61\57\x33\x20\x68\x2d\61\x30\x20\160\171\55\61\x2e\65\x20\x70\170\55\63\x20\142\x67\x2d\x77\150\x69\x74\145\40\x64\x61\162\x6b\x3a\x62\x67\x2d\147\162\x61\x79\x2d\71\60\60\40\142\157\162\x64\145\162\40\x64\x61\x72\153\x3a\x62\x6f\162\x64\x65\162\55\x67\162\141\x79\x2d\70\x30\60\40\162\157\x75\156\144\145\144\55\155\x64\x20\164\145\170\164\x2d\x73\x6d\40\x74\x65\x78\x74\x2d\x67\x72\141\171\x2d\x36\x30\x30\x20\x64\x61\x72\x6b\x3a\164\145\170\164\x2d\147\x72\x61\x79\55\x33\60\60\x20\146\x6f\x6e\164\x2d\x6e\157\162\155\141\154\x20\164\162\x61\156\x73\151\164\x69\x6f\x6e\x2d\141\154\x6c\40\x68\x6f\166\x65\x72\72\142\157\162\144\145\x72\x2d\147\162\141\x79\55\64\x30\x30\40\x6c\x74\x72\72\x70\x72\55\x31\x30\x20\162\164\x6c\72\160\154\55\61\x30\42\xa\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x76\55\x69\x66\x3d\42\155\x61\x74\x63\x68\x65\x64\101\x74\164\x72\151\142\165\164\x65\x2e\153\x65\171\x20\x21\75\x20\x27\x63\x61\x74\x61\x6c\157\147\174\163\x74\x61\x74\x65\47\42\xa\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\166\x2d\155\x6f\144\x65\154\x3d\42\x63\157\156\x64\151\164\x69\157\x6e\x2e\x76\141\154\165\x65\42\12\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x3e\xa\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\x3c\x6f\x70\164\x69\x6f\156\xa\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\166\55\146\x6f\162\x3d\x27\x6f\x70\x74\151\x6f\156\40\151\156\40\x6d\141\164\x63\x68\x65\144\101\x74\164\162\151\142\165\164\145\x2e\x6f\x70\x74\151\x6f\x6e\163\47\12\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x3a\x76\141\x6c\x75\145\75\42\x6f\160\x74\151\x6f\156\56\151\x64\x22\12\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\72\164\145\170\164\75\x22\157\160\164\x69\157\156\x2e\141\x64\x6d\151\x6e\137\156\141\x6d\x65\42\12\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x3e\12\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x3c\57\x6f\x70\164\151\157\156\x3e\12\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x3c\x2f\163\x65\x6c\x65\x63\164\76\xa\xa\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\74\163\145\x6c\145\143\x74\xa\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x3a\156\x61\155\x65\75\x22\x5b\x27\x63\x6f\156\144\151\164\x69\x6f\x6e\163\x5b\x27\x20\53\x20\151\x6e\x64\145\170\40\x2b\x20\x27\x5d\x5b\166\x61\154\165\x65\135\x27\x5d\42\xa\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x63\154\x61\x73\x73\x3d\x22\143\x75\163\164\x6f\155\x2d\163\x65\154\145\x63\164\x20\x66\x6c\145\x78\x20\x77\55\133\x32\70\71\160\170\135\40\155\x69\156\72\x77\x2d\61\x2f\63\x20\x68\x2d\x31\60\x20\x70\171\x2d\61\x2e\65\x20\x70\x78\x2d\x33\x20\142\x67\x2d\167\150\x69\x74\x65\x20\x64\x61\x72\153\x3a\x62\x67\55\x67\x72\141\x79\55\71\x30\x30\x20\142\157\x72\144\145\x72\40\144\141\x72\153\x3a\142\157\x72\x64\145\x72\x2d\x67\162\141\x79\55\x38\x30\60\40\162\157\165\156\x64\145\144\x2d\155\144\x20\164\x65\170\164\55\163\155\x20\x74\145\170\164\x2d\147\162\141\x79\x2d\x36\x30\x30\x20\144\x61\x72\x6b\72\x74\x65\x78\164\55\147\x72\141\171\55\63\x30\x30\x20\x66\x6f\156\x74\x2d\156\157\x72\155\141\154\x20\164\162\x61\156\163\151\x74\151\x6f\156\x2d\141\154\x6c\x20\x68\x6f\166\x65\x72\x3a\x62\157\162\144\145\x72\x2d\147\x72\141\171\x2d\x34\x30\x30\40\x6c\x74\x72\72\x70\162\x2d\61\60\x20\162\164\154\72\160\x6c\55\x31\x30\x22\xa\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\166\x2d\x6d\x6f\x64\145\x6c\75\x22\x63\x6f\x6e\144\151\x74\151\x6f\156\x2e\x76\141\154\x75\x65\x22\12\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x76\x2d\145\x6c\x73\x65\12\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\40\76\xa\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x3c\x6f\160\x74\147\162\157\165\160\12\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x76\x2d\146\x6f\x72\x3d\47\157\160\164\151\x6f\x6e\40\151\156\40\155\x61\x74\x63\x68\x65\x64\x41\x74\x74\x72\x69\x62\165\x74\x65\x2e\157\x70\x74\151\x6f\156\163\x27\12\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\72\154\141\x62\145\154\75\x22\157\x70\x74\151\x6f\x6e\56\x61\x64\155\x69\156\x5f\x6e\x61\155\145\42\12\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\76\12\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x3c\157\x70\164\x69\x6f\156\12\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x76\x2d\x66\157\162\x3d\47\163\164\141\x74\145\40\x69\x6e\40\157\160\x74\151\x6f\x6e\x2e\163\x74\141\164\x65\x73\x27\12\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\72\x76\141\x6c\x75\145\x3d\x22\163\164\x61\x74\x65\x2e\x63\x6f\144\x65\x22\xa\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x3a\x74\145\170\164\75\x22\163\164\141\x74\x65\56\x61\144\x6d\x69\x6e\x5f\156\x61\x6d\145\42\12\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x3e\xa\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x3c\x2f\157\x70\x74\x69\157\x6e\x3e\xa\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\x3c\x2f\x6f\160\x74\x67\x72\157\165\160\76\12\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\74\x2f\x73\145\154\x65\x63\x74\76\12\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\74\x2f\x64\x69\x76\x3e\xa\12\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\74\144\x69\166\x20\166\x2d\151\x66\x3d\x22\x6d\x61\x74\x63\x68\x65\x64\101\164\164\162\x69\x62\x75\x74\x65\56\x74\171\x70\145\x20\x3d\x3d\40\47\155\165\154\x74\x69\163\145\154\x65\143\164\47\x20\174\174\40\155\x61\164\143\x68\145\144\101\x74\164\x72\x69\x62\x75\x74\145\56\x74\171\160\x65\40\x3d\75\40\x27\143\x68\x65\x63\153\x62\157\x78\47\x22\76\12\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\x3c\x73\145\x6c\145\143\164\xa\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\72\x6e\x61\155\x65\75\x22\x5b\47\x63\157\156\144\151\x74\151\x6f\x6e\x73\x5b\47\40\x2b\x20\151\156\x64\145\170\x20\53\x20\x27\x5d\133\166\x61\154\165\145\135\x5b\x5d\47\x5d\x22\12\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\143\154\x61\x73\x73\75\x22\143\x75\163\x74\157\155\x2d\163\145\x6c\x65\143\164\40\x66\154\145\x78\40\167\x2d\133\62\x38\71\x70\170\135\x20\x6d\x69\x6e\72\167\55\61\x2f\63\x20\x68\55\61\60\40\x70\x79\x2d\61\56\65\40\160\x78\55\x33\40\x62\147\x2d\167\150\151\164\145\x20\144\141\x72\153\x3a\x62\147\55\147\162\141\171\55\71\60\60\40\x62\157\x72\x64\145\162\40\144\141\x72\153\x3a\x62\x6f\162\x64\145\x72\55\x67\162\141\x79\55\70\60\60\x20\x72\x6f\x75\x6e\144\145\x64\x2d\155\x64\40\164\145\x78\x74\x2d\x73\155\x20\x74\145\170\164\55\147\162\x61\x79\55\66\x30\x30\x20\144\x61\x72\x6b\x3a\164\x65\170\164\55\x67\x72\141\171\55\x33\x30\x30\40\146\x6f\156\x74\55\156\157\162\155\x61\x6c\40\164\162\x61\x6e\x73\151\164\x69\157\x6e\x2d\x61\x6c\154\x20\150\x6f\x76\145\162\x3a\x62\157\x72\x64\x65\x72\x2d\147\x72\141\x79\55\64\60\60\x20\x6c\x74\162\72\160\162\55\61\60\x20\x72\x74\154\x3a\x70\154\x2d\x31\60\x22\xa\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\166\x2d\155\157\x64\145\154\x3d\x22\x63\157\156\x64\x69\x74\151\157\156\56\166\x61\154\x75\x65\42\12\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\155\x75\x6c\164\x69\x70\x6c\x65\xa\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\76\12\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x3c\157\160\x74\151\157\156\12\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x76\x2d\146\157\x72\75\x27\x6f\x70\164\151\x6f\156\x20\151\156\x20\x6d\x61\x74\x63\x68\x65\x64\x41\164\x74\x72\x69\x62\x75\x74\x65\x2e\157\160\164\151\x6f\x6e\x73\47\xa\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\72\x76\x61\x6c\x75\x65\75\x22\x6f\160\x74\151\157\x6e\56\151\144\x22\xa\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\72\x74\x65\170\x74\x3d\42\157\x70\164\151\x6f\x6e\x2e\141\144\x6d\151\x6e\x5f\x6e\141\x6d\x65\x22\12\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x3e\xa\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\74\x2f\x6f\x70\x74\151\x6f\x6e\76\xa\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x3c\x2f\163\145\154\145\143\164\76\xa\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\x3c\57\x64\x69\166\76\xa\40\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\74\x2f\144\x69\166\x3e\xa\x20\40\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\74\x2f\144\x69\166\x3e\xa\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x3c\x2f\144\x69\x76\76\12\12\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x3c\163\160\x61\156\12\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\143\x6c\x61\x73\163\x3d\42\151\x63\x6f\156\x2d\144\x65\154\145\x74\145\x20\x6d\x61\170\x2d\150\x2d\71\40\155\141\x78\55\167\55\71\40\164\145\x78\164\x2d\x32\170\154\x20\160\55\61\x2e\65\40\x72\x6f\165\156\144\145\x64\x2d\x6d\x64\x20\143\165\162\x73\157\x72\55\x70\x6f\x69\x6e\x74\x65\x72\x20\x74\162\x61\x6e\163\x69\x74\x69\157\156\x2d\141\x6c\154\40\x68\157\166\x65\x72\72\142\x67\55\x67\x72\141\x79\55\x31\60\x30\x20\x64\141\x72\x6b\x3a\x68\x6f\166\145\162\72\x62\x67\55\x67\x72\x61\x79\55\71\65\x30\x20\x6d\141\170\x2d\163\155\72\160\x6c\x61\143\x65\55\x73\x65\154\x66\x2d\143\x65\156\164\x65\162\x22\12\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\100\x63\x6c\x69\143\153\x3d\42\x72\x65\155\x6f\x76\x65\x43\157\156\x64\151\x74\x69\157\156\x22\12\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\x3e\xa\40\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\74\x2f\163\x70\x61\156\76\12\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x3c\57\x64\151\166\x3e\xa\x20\x20\40\40\x20\x20\x20\40\74\57\x73\x63\x72\x69\160\x74\76\12\xa\40\40\x20\40\40\40\x20\x20\74\41\x2d\55\40\166\x20\x63\x61\164\x61\154\157\x67\40\x72\165\154\x65\x20\x63\x6f\x6e\144\x69\164\x69\x6f\x6e\x20\151\x74\145\155\40\x63\157\x6d\x70\x6f\156\x65\x6e\164\x20\x2d\x2d\x3e\xa\x20\40\40\40\x20\40\x20\x20\74\163\143\162\x69\x70\164\40\164\x79\x70\x65\x3d\42\x6d\157\x64\165\154\145\x22\x3e\12\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\141\x70\x70\56\x63\157\155\x70\x6f\x6e\145\156\x74\x28\x27\166\55\x63\141\164\x61\154\157\147\x2d\x72\165\x6c\145\55\143\x6f\x6e\144\151\164\x69\x6f\156\55\x69\x74\x65\x6d\x27\x2c\x20\173\12\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\40\40\40\x74\x65\x6d\x70\154\141\x74\145\x3a\x20\42\x23\166\55\x63\141\164\141\154\x6f\x67\x2d\x72\x75\x6c\x65\x2d\143\157\x6e\x64\151\x74\x69\157\156\x2d\151\164\145\x6d\55\x74\x65\x6d\160\x6c\x61\x74\x65\x22\54\xa\12\40\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\160\162\x6f\x70\x73\72\40\133\47\151\156\144\145\x78\x27\54\x20\x27\x63\x6f\x6e\144\x69\x74\151\x6f\x6e\x27\135\54\12\xa\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\144\141\164\x61\50\x29\x20\x7b\xa\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\162\145\x74\x75\162\156\40\x7b\xa\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x63\157\x6e\x64\x69\x74\x69\x6f\x6e\101\164\x74\x72\x69\x62\x75\164\x65\163\72\x20\x40\152\x73\157\x6e\50\141\160\160\50\x27\x5c\x57\x65\142\x6b\165\x6c\x5c\x43\141\x74\x61\x6c\157\147\x52\x75\154\x65\x5c\x52\x65\x70\x6f\163\151\164\157\x72\151\145\163\x5c\x43\141\x74\141\x6c\157\147\122\165\154\145\122\145\160\x6f\x73\151\x74\157\x72\x79\x27\51\x2d\76\x67\145\x74\103\157\156\144\x69\x74\151\x6f\156\101\x74\164\x72\x69\x62\x75\164\x65\x73\50\51\51\x2c\xa\xa\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x61\x74\x74\x72\x69\x62\x75\x74\x65\124\171\160\x65\x49\156\x64\x65\170\x65\x73\x3a\x20\x7b\12\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\47\160\162\157\x64\165\143\164\47\x3a\40\x30\xa\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x7d\54\xa\xa\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\143\157\x6e\x64\x69\164\151\x6f\x6e\x4f\160\145\x72\x61\164\157\x72\x73\72\40\x7b\xa\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\47\160\162\151\143\x65\x27\72\40\133\x7b\12\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x27\157\160\145\162\x61\x74\x6f\162\x27\72\x20\x27\75\75\x27\x2c\12\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x27\x6c\x61\142\x65\154\x27\x3a\x20\42\x40\154\141\156\147\x28\47\x61\144\x6d\x69\x6e\72\x3a\141\160\160\56\x6d\141\x72\x6b\145\164\151\x6e\x67\56\160\x72\x6f\x6d\x6f\164\x69\157\x6e\x73\56\x63\141\164\141\x6c\157\147\55\162\x75\154\145\163\56\145\x64\151\164\56\x69\163\x2d\145\161\165\141\x6c\55\x74\x6f\x27\x29\42\12\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\175\54\x20\173\12\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x27\x6f\x70\145\162\141\x74\157\x72\47\x3a\40\x27\x21\75\47\54\xa\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\47\154\141\142\145\x6c\47\x3a\40\42\x40\154\141\156\147\50\47\x61\x64\155\x69\156\72\72\141\160\160\x2e\x6d\x61\x72\x6b\145\x74\151\156\x67\x2e\x70\162\x6f\155\157\164\x69\157\156\x73\56\143\x61\164\141\x6c\157\x67\55\x72\x75\x6c\145\163\56\145\144\x69\x74\56\151\x73\x2d\x6e\157\164\x2d\x65\161\165\x61\x6c\x2d\164\157\47\51\42\xa\40\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\175\54\40\173\xa\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x27\157\x70\145\x72\141\164\x6f\162\x27\x3a\40\47\76\75\x27\x2c\12\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x27\x6c\141\x62\145\154\x27\72\40\x22\x40\x6c\141\x6e\147\x28\47\x61\144\155\x69\156\x3a\x3a\x61\x70\160\x2e\155\141\162\153\145\x74\151\x6e\x67\56\x70\162\157\155\157\164\x69\x6f\156\x73\x2e\143\x61\x74\x61\154\157\147\x2d\x72\165\154\145\x73\x2e\x65\144\x69\x74\56\145\x71\x75\x61\x6c\163\55\157\162\55\x67\162\145\141\164\145\162\x2d\164\x68\141\156\x27\x29\x22\12\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x7d\54\x20\173\12\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\47\x6f\x70\145\x72\141\164\x6f\162\x27\72\40\47\74\75\x27\54\xa\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\47\x6c\141\x62\x65\154\47\x3a\40\42\100\x6c\x61\156\147\50\x27\141\x64\155\x69\x6e\x3a\x3a\141\160\x70\56\x6d\x61\x72\x6b\x65\x74\151\156\x67\56\x70\162\157\155\x6f\164\x69\157\x6e\163\x2e\143\141\x74\x61\x6c\x6f\x67\x2d\162\165\154\145\163\x2e\x65\144\151\x74\x2e\145\x71\x75\141\154\x73\x2d\x6f\162\x2d\x6c\145\x73\x73\x2d\x74\150\x61\x6e\47\51\42\12\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\x7d\x2c\x20\173\12\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\47\157\160\145\162\x61\x74\157\162\x27\72\x20\x27\x3e\47\x2c\xa\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\47\x6c\x61\x62\145\154\x27\x3a\x20\x22\100\154\141\x6e\x67\50\47\x61\144\x6d\151\x6e\72\x3a\x61\160\x70\x2e\x6d\x61\162\153\145\x74\x69\x6e\147\x2e\160\162\x6f\155\x6f\164\x69\157\x6e\x73\56\143\141\164\141\154\x6f\147\x2d\x72\165\x6c\145\163\x2e\x65\144\151\164\56\147\x72\145\x61\164\145\x72\x2d\164\150\x61\156\47\x29\42\12\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\x7d\54\x20\173\12\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\47\157\160\x65\162\x61\164\157\162\47\72\40\47\74\47\x2c\xa\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\47\154\141\142\145\x6c\47\x3a\x20\x22\100\x6c\x61\x6e\147\50\47\141\x64\x6d\x69\x6e\x3a\x3a\x61\160\160\x2e\x6d\x61\x72\x6b\145\x74\151\156\147\x2e\160\x72\x6f\155\157\164\x69\x6f\156\163\x2e\143\x61\x74\x61\x6c\x6f\147\x2d\x72\165\154\x65\x73\x2e\x65\144\151\x74\56\154\x65\163\x73\x2d\164\150\x61\156\x27\51\x22\xa\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\175\135\x2c\12\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x27\x64\145\143\x69\x6d\141\x6c\x27\72\x20\x5b\x7b\xa\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\47\x6f\160\x65\162\x61\164\157\162\47\x3a\x20\47\75\x3d\47\x2c\xa\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\47\x6c\141\142\x65\154\47\72\x20\42\x40\x6c\x61\156\147\x28\x27\141\144\155\x69\156\72\x3a\x61\x70\160\x2e\x6d\141\x72\x6b\145\x74\x69\x6e\x67\56\x70\162\x6f\x6d\157\x74\151\157\x6e\163\x2e\x63\141\164\x61\x6c\x6f\147\55\162\x75\x6c\x65\163\56\x65\x64\x69\164\x2e\151\x73\x2d\x65\x71\x75\x61\154\55\164\x6f\x27\51\42\12\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x7d\x2c\x20\173\12\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x27\157\160\x65\x72\x61\x74\157\x72\x27\72\40\x27\x21\75\x27\54\xa\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\x27\x6c\141\x62\145\154\47\72\40\x22\x40\154\141\156\x67\x28\47\x61\144\x6d\151\156\x3a\x3a\x61\x70\x70\x2e\x6d\x61\x72\153\x65\164\151\x6e\147\x2e\160\162\x6f\x6d\157\x74\151\x6f\156\163\56\143\x61\164\x61\x6c\157\x67\x2d\162\x75\154\x65\163\x2e\x65\x64\x69\x74\56\151\x73\55\x6e\x6f\x74\x2d\x65\161\x75\x61\x6c\55\164\x6f\47\x29\42\xa\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x7d\x2c\x20\173\xa\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\47\157\x70\x65\162\141\x74\x6f\x72\47\72\40\47\x3e\x3d\x27\x2c\12\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x27\154\141\142\145\x6c\x27\72\x20\42\100\154\141\x6e\147\x28\x27\141\x64\155\x69\x6e\72\x3a\141\160\x70\56\155\x61\x72\153\145\164\151\156\x67\56\160\162\157\155\x6f\x74\x69\157\156\x73\x2e\x63\141\x74\x61\154\157\147\x2d\162\165\x6c\145\x73\56\145\x64\151\x74\x2e\145\161\165\141\x6c\x73\x2d\157\162\55\147\x72\x65\x61\164\x65\162\55\164\150\x61\156\47\x29\42\xa\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\175\x2c\40\173\12\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x27\x6f\x70\145\162\141\164\157\x72\x27\x3a\x20\47\x3c\75\x27\x2c\xa\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x27\x6c\x61\142\x65\x6c\x27\x3a\x20\x22\100\x6c\x61\156\147\x28\47\141\x64\x6d\151\x6e\72\x3a\x61\x70\160\56\x6d\x61\162\x6b\145\164\151\x6e\x67\x2e\160\x72\x6f\155\157\x74\x69\x6f\x6e\163\x2e\143\141\164\x61\x6c\157\x67\x2d\x72\x75\x6c\x65\x73\56\145\x64\x69\x74\56\145\161\x75\x61\154\x73\x2d\157\162\55\154\x65\x73\163\55\164\150\141\x6e\47\x29\42\12\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\x7d\54\40\173\xa\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\47\157\x70\145\x72\141\164\157\162\47\x3a\x20\x27\x3e\x27\54\12\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x27\154\141\x62\145\x6c\x27\72\x20\42\x40\x6c\x61\156\147\x28\47\x61\x64\x6d\x69\x6e\72\72\141\x70\x70\56\155\141\x72\153\x65\x74\151\156\147\56\x70\162\157\x6d\x6f\164\151\x6f\156\163\56\143\141\164\141\154\157\147\x2d\x72\165\x6c\145\x73\x2e\145\144\151\x74\56\147\x72\145\x61\x74\x65\162\x2d\164\x68\141\x6e\47\x29\x22\xa\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\175\54\40\x7b\xa\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\47\x6f\160\x65\x72\141\x74\157\x72\47\x3a\x20\47\x3c\x27\54\12\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\47\154\141\x62\x65\154\x27\x3a\40\42\x40\154\x61\156\147\50\47\x61\144\155\x69\x6e\72\72\141\x70\x70\x2e\x6d\141\x72\x6b\x65\164\x69\156\x67\56\x70\x72\x6f\x6d\157\x74\x69\157\156\x73\56\143\141\164\x61\x6c\157\x67\x2d\x72\165\154\x65\x73\x2e\x65\x64\x69\x74\56\x6c\x65\163\163\55\164\x68\x61\156\x27\x29\42\xa\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\175\x5d\54\12\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\40\47\151\x6e\164\145\x67\x65\x72\47\72\40\133\x7b\xa\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\47\x6f\160\145\x72\x61\164\x6f\162\x27\x3a\40\47\x3d\x3d\47\x2c\12\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\47\x6c\x61\x62\145\154\47\x3a\x20\x22\x40\154\141\x6e\147\x28\x27\x61\144\155\151\156\x3a\72\x61\x70\160\x2e\x6d\x61\x72\153\x65\x74\151\x6e\x67\56\x70\x72\x6f\x6d\157\x74\151\157\x6e\x73\x2e\x63\x61\x74\x61\x6c\x6f\147\x2d\162\165\154\145\x73\x2e\145\144\151\164\56\151\163\55\145\x71\165\x61\x6c\x2d\x74\x6f\47\x29\42\xa\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\175\54\40\173\xa\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x27\157\x70\145\162\141\164\157\x72\47\72\x20\x27\41\75\47\x2c\xa\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x27\154\x61\142\145\154\x27\72\40\x22\100\154\x61\x6e\x67\x28\x27\x61\x64\155\x69\156\72\x3a\x61\160\160\56\x6d\141\x72\x6b\x65\164\x69\156\147\x2e\160\x72\157\x6d\157\x74\x69\x6f\156\x73\56\143\141\164\x61\x6c\x6f\147\x2d\x72\165\x6c\x65\163\56\x65\x64\x69\x74\56\151\x73\x2d\156\x6f\164\55\145\x71\x75\x61\154\55\164\157\47\51\42\12\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\175\x2c\x20\x7b\xa\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\47\157\x70\145\x72\141\x74\x6f\x72\x27\x3a\40\47\76\75\47\x2c\xa\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x27\154\x61\142\145\x6c\47\72\x20\42\100\154\141\x6e\147\50\47\141\x64\155\151\x6e\72\72\141\160\x70\x2e\155\x61\162\x6b\x65\x74\151\156\147\56\160\x72\157\x6d\157\x74\x69\157\156\163\x2e\x63\141\164\141\x6c\x6f\x67\55\162\165\154\145\x73\56\x65\x64\x69\164\56\x65\x71\165\x61\154\x73\x2d\x6f\162\x2d\147\162\x65\141\164\145\x72\x2d\164\x68\x61\x6e\47\x29\x22\12\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x7d\x2c\x20\173\12\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\47\157\x70\x65\x72\x61\164\x6f\162\x27\x3a\x20\x27\74\x3d\x27\x2c\12\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x27\x6c\141\x62\x65\x6c\47\72\x20\42\x40\154\x61\156\x67\50\x27\x61\x64\155\x69\156\x3a\x3a\x61\x70\x70\56\x6d\x61\162\x6b\x65\x74\151\156\x67\x2e\x70\x72\x6f\155\157\x74\x69\x6f\156\163\56\143\x61\164\141\154\157\147\x2d\162\x75\154\145\163\56\145\144\151\164\x2e\x65\161\x75\141\154\x73\x2d\157\162\x2d\154\145\163\x73\55\164\x68\x61\x6e\x27\x29\x22\xa\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\175\54\x20\x7b\12\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x27\x6f\160\145\x72\x61\164\157\x72\x27\72\x20\x27\x3e\47\54\xa\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x27\154\x61\x62\145\x6c\x27\x3a\40\42\x40\154\141\156\147\x28\47\x61\144\155\151\x6e\x3a\x3a\x61\160\x70\56\x6d\141\x72\x6b\x65\164\151\156\147\x2e\x70\162\x6f\x6d\x6f\164\151\157\156\163\56\x63\141\x74\141\x6c\x6f\x67\x2d\x72\165\154\145\x73\56\145\x64\151\164\x2e\x67\x72\145\x61\164\x65\162\x2d\x74\x68\141\x6e\47\x29\x22\12\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x7d\54\40\173\xa\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x27\157\x70\145\x72\141\164\157\x72\47\x3a\40\47\x3c\x27\x2c\xa\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\x27\154\141\142\x65\x6c\x27\72\x20\x22\100\154\141\x6e\x67\50\x27\x61\x64\155\x69\156\x3a\72\141\160\x70\56\x6d\141\x72\153\145\164\151\x6e\147\x2e\160\162\x6f\155\157\x74\151\x6f\156\x73\56\143\x61\x74\141\x6c\157\147\x2d\x72\165\x6c\145\x73\x2e\145\144\x69\x74\x2e\154\x65\163\163\x2d\164\x68\141\x6e\x27\x29\42\12\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\175\x5d\x2c\xa\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\47\164\145\170\164\47\72\x20\133\x7b\12\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x27\x6f\x70\145\x72\x61\164\x6f\162\x27\x3a\40\47\75\x3d\47\54\12\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x27\x6c\141\142\x65\x6c\47\72\x20\42\x40\x6c\x61\x6e\x67\50\x27\141\x64\155\x69\156\72\x3a\x61\160\x70\56\155\x61\x72\x6b\145\x74\151\156\147\x2e\160\162\157\155\x6f\164\x69\x6f\156\x73\x2e\143\141\164\x61\154\x6f\147\55\162\165\154\145\163\x2e\x65\x64\151\x74\x2e\x69\x73\x2d\x65\x71\165\x61\154\x2d\x74\x6f\47\x29\x22\xa\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x7d\x2c\40\173\xa\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\47\x6f\x70\145\x72\141\164\x6f\x72\47\x3a\x20\x27\41\75\x27\x2c\xa\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x27\154\x61\x62\x65\154\47\72\x20\x22\x40\x6c\x61\156\x67\x28\x27\141\x64\155\x69\x6e\x3a\x3a\141\160\x70\56\155\141\x72\153\x65\164\x69\x6e\x67\x2e\x70\162\157\x6d\157\x74\x69\157\x6e\x73\56\x63\141\164\141\154\x6f\147\55\162\x75\154\145\163\x2e\145\144\x69\164\56\x69\x73\55\x6e\157\x74\x2d\145\161\x75\141\x6c\55\164\x6f\x27\51\42\12\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x7d\54\40\x7b\12\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\47\157\x70\x65\x72\x61\164\157\x72\47\x3a\x20\x27\173\x7d\x27\54\12\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\47\154\141\142\145\154\47\72\x20\x22\x40\x6c\x61\x6e\x67\50\x27\141\x64\155\x69\156\72\72\x61\x70\x70\56\155\141\x72\153\x65\164\x69\x6e\x67\56\160\x72\x6f\155\157\164\151\157\156\163\x2e\143\141\164\141\x6c\x6f\x67\55\162\165\x6c\145\x73\x2e\145\144\x69\x74\56\143\157\156\x74\x61\151\156\x27\x29\42\xa\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x7d\x2c\x20\173\xa\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\47\157\x70\x65\x72\141\164\157\x72\x27\x3a\40\47\x21\173\x7d\47\54\xa\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\47\x6c\141\x62\x65\154\47\x3a\x20\42\x40\x6c\x61\x6e\x67\x28\47\141\x64\x6d\151\156\x3a\x3a\x61\160\160\x2e\155\141\162\x6b\x65\164\x69\x6e\x67\x2e\x70\162\157\155\x6f\x74\151\157\156\163\x2e\x63\x61\164\141\154\x6f\x67\x2d\x72\x75\154\x65\x73\x2e\145\144\151\164\56\144\157\145\x73\x2d\156\x6f\x74\x2d\x63\157\x6e\164\x61\x69\x6e\x27\x29\42\xa\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x7d\x5d\54\12\40\40\40\40\40\40\40\40\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\47\x62\157\157\x6c\145\x61\x6e\x27\x3a\x20\x5b\x7b\12\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\47\157\x70\x65\x72\x61\164\x6f\162\x27\72\x20\47\75\75\x27\54\12\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\47\154\x61\142\145\x6c\47\72\x20\42\100\154\x61\156\x67\50\x27\141\x64\155\x69\x6e\72\x3a\141\x70\160\x2e\155\141\x72\x6b\x65\x74\151\156\147\x2e\160\x72\157\x6d\157\164\x69\157\156\163\x2e\143\141\x74\141\x6c\157\147\x2d\162\x75\154\145\x73\56\145\x64\151\164\x2e\x69\x73\55\x65\161\165\x61\154\55\164\x6f\47\51\x22\12\40\40\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x7d\54\40\x7b\12\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x27\x6f\160\145\162\141\x74\x6f\x72\47\x3a\x20\x27\41\75\x27\x2c\xa\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\47\x6c\141\x62\145\154\x27\x3a\40\42\100\154\x61\x6e\147\x28\x27\141\144\155\x69\156\x3a\x3a\x61\x70\x70\x2e\155\141\x72\153\145\x74\x69\x6e\147\x2e\160\162\157\155\x6f\164\x69\157\156\x73\56\143\141\x74\141\x6c\x6f\x67\55\x72\165\x6c\x65\163\56\x65\x64\x69\164\56\151\x73\x2d\x6e\157\x74\x2d\145\x71\165\141\154\x2d\x74\157\47\51\42\xa\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\175\135\54\12\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x27\x64\x61\x74\145\x27\x3a\x20\x5b\173\12\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x27\x6f\160\145\162\141\164\157\162\x27\72\x20\47\x3d\x3d\47\x2c\12\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\47\154\x61\142\x65\x6c\x27\72\x20\x22\x40\x6c\x61\x6e\147\50\x27\x61\x64\x6d\x69\156\72\x3a\x61\x70\160\56\x6d\141\162\x6b\145\x74\151\156\147\56\160\x72\157\155\157\164\x69\157\x6e\x73\56\x63\x61\164\141\x6c\x6f\147\55\x72\165\154\145\x73\56\145\144\151\x74\x2e\x69\163\55\145\161\165\141\154\55\x74\x6f\47\x29\x22\xa\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x7d\x2c\x20\173\xa\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x27\157\160\x65\x72\141\x74\157\x72\x27\x3a\x20\x27\x21\x3d\x27\x2c\12\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x27\x6c\x61\142\145\x6c\x27\x3a\x20\42\100\154\x61\156\x67\50\x27\x61\x64\155\151\x6e\72\x3a\141\160\x70\x2e\x6d\x61\x72\153\145\x74\x69\156\x67\56\x70\162\157\155\157\164\151\x6f\156\163\x2e\x63\141\x74\x61\x6c\157\147\55\x72\x75\154\x65\163\56\145\144\151\x74\56\x69\163\55\x6e\157\164\55\145\161\165\x61\154\55\x74\x6f\x27\x29\42\xa\40\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\175\x2c\x20\x7b\xa\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x27\x6f\160\145\162\141\164\x6f\x72\47\x3a\40\x27\76\x3d\x27\x2c\12\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x27\154\x61\x62\x65\154\47\x3a\x20\42\100\154\x61\156\147\50\47\141\144\x6d\151\156\x3a\72\141\160\160\56\x6d\141\x72\153\x65\164\x69\156\x67\56\160\x72\x6f\155\157\164\x69\x6f\156\163\56\x63\x61\164\141\154\x6f\147\55\162\165\154\x65\x73\x2e\x65\144\x69\164\56\x65\161\165\x61\x6c\163\x2d\x6f\162\x2d\x67\x72\x65\141\164\145\162\x2d\x74\150\x61\156\47\51\42\xa\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x7d\54\x20\x7b\12\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\47\x6f\x70\x65\x72\x61\x74\157\162\x27\72\x20\x27\74\x3d\x27\54\12\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x27\x6c\x61\x62\x65\154\x27\x3a\40\42\100\x6c\x61\x6e\147\x28\x27\x61\x64\x6d\151\156\x3a\72\141\160\160\x2e\x6d\141\162\153\x65\164\x69\156\x67\56\x70\162\157\155\157\x74\x69\x6f\x6e\x73\x2e\143\141\x74\x61\154\x6f\x67\x2d\162\x75\154\145\163\56\145\144\x69\164\56\x65\x71\165\141\x6c\x73\x2d\x6f\x72\55\x6c\x65\163\163\x2d\x74\150\141\x6e\47\51\x22\12\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\40\x20\175\x2c\x20\x7b\12\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x27\157\160\145\x72\x61\164\157\162\x27\72\40\47\76\47\x2c\12\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\x20\40\47\x6c\x61\x62\x65\x6c\x27\72\x20\x22\100\x6c\x61\156\x67\50\47\x61\x64\155\151\x6e\72\x3a\141\x70\x70\x2e\155\141\x72\x6b\145\164\151\156\x67\56\x70\x72\x6f\x6d\157\x74\x69\157\x6e\x73\x2e\x63\141\x74\x61\x6c\x6f\x67\x2d\162\x75\x6c\145\163\x2e\x65\144\151\164\x2e\147\x72\145\141\x74\145\162\55\164\x68\141\156\47\x29\42\12\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\175\x2c\x20\173\xa\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x27\157\x70\x65\162\x61\x74\157\x72\47\72\40\x27\x3c\47\54\xa\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\47\154\x61\142\x65\154\x27\72\x20\x22\100\x6c\x61\x6e\147\50\47\x61\144\x6d\151\156\72\72\x61\x70\160\x2e\x6d\x61\x72\153\x65\x74\x69\156\x67\56\160\x72\x6f\155\x6f\x74\x69\157\156\x73\x2e\x63\x61\164\x61\154\x6f\x67\55\x72\165\154\x65\x73\x2e\145\x64\151\x74\x2e\154\x65\163\163\x2d\x74\x68\x61\156\x27\x29\x22\12\40\40\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\175\x5d\x2c\xa\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\47\144\141\x74\x65\x74\x69\x6d\145\47\72\x20\133\173\xa\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x27\157\160\x65\x72\141\x74\x6f\162\47\72\x20\x27\x3d\x3d\x27\x2c\xa\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x27\154\x61\x62\145\154\x27\72\40\42\x40\154\141\x6e\x67\x28\47\141\x64\x6d\x69\156\72\72\x61\160\x70\x2e\155\x61\162\x6b\145\164\151\156\x67\56\160\162\x6f\x6d\157\x74\151\157\x6e\x73\56\143\141\164\141\154\157\x67\x2d\x72\165\154\x65\x73\x2e\145\144\151\164\x2e\x69\x73\x2d\145\161\x75\x61\x6c\x2d\x74\x6f\x27\51\42\xa\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\175\54\x20\173\xa\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\47\x6f\160\x65\162\x61\164\157\162\47\72\x20\47\41\75\x27\x2c\12\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x27\x6c\x61\142\145\154\47\x3a\x20\x22\x40\154\141\x6e\147\x28\47\x61\x64\155\x69\x6e\x3a\x3a\x61\x70\x70\x2e\x6d\x61\162\x6b\x65\164\x69\156\147\x2e\x70\x72\157\x6d\x6f\164\x69\157\x6e\x73\x2e\x63\141\x74\x61\x6c\x6f\147\55\162\165\x6c\145\163\x2e\145\x64\x69\164\56\151\163\x2d\x6e\157\164\x2d\x65\x71\165\141\x6c\x2d\164\157\x27\51\42\xa\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x7d\x2c\x20\173\12\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\47\157\x70\x65\x72\x61\x74\157\x72\47\72\40\x27\x3e\75\47\54\xa\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x27\x6c\x61\142\145\154\47\72\x20\x22\x40\x6c\141\156\147\x28\x27\141\x64\x6d\x69\x6e\x3a\x3a\x61\x70\160\56\155\x61\x72\x6b\x65\x74\x69\x6e\147\56\x70\x72\x6f\155\157\164\x69\157\x6e\x73\56\x63\x61\x74\x61\x6c\157\147\x2d\x72\x75\x6c\145\163\56\x65\x64\x69\164\x2e\145\x71\x75\141\x6c\163\x2d\157\162\x2d\147\x72\145\141\164\x65\x72\55\x74\x68\141\156\47\51\42\xa\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\175\x2c\x20\x7b\xa\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\x27\x6f\160\145\162\141\164\x6f\x72\x27\x3a\40\x27\74\x3d\47\54\12\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\x27\154\x61\x62\145\154\47\x3a\x20\42\x40\x6c\141\156\x67\x28\47\x61\x64\155\151\x6e\72\x3a\x61\160\x70\56\x6d\x61\x72\x6b\145\x74\x69\x6e\x67\x2e\160\x72\157\x6d\x6f\x74\x69\x6f\156\x73\56\143\x61\164\x61\x6c\x6f\147\x2d\162\x75\x6c\x65\163\x2e\145\x64\x69\164\56\x65\161\165\x61\x6c\163\55\x6f\162\55\154\145\x73\163\x2d\x74\x68\x61\156\47\51\x22\12\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\175\54\40\173\xa\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\47\157\x70\145\x72\141\164\157\162\47\72\x20\x27\x3e\47\x2c\12\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x27\x6c\x61\142\x65\154\x27\x3a\x20\42\100\x6c\141\156\x67\50\x27\x61\144\155\x69\156\72\x3a\x61\x70\160\56\x6d\141\x72\x6b\x65\x74\x69\156\x67\56\x70\x72\x6f\155\x6f\164\151\157\156\x73\56\143\141\x74\x61\154\157\x67\55\162\165\x6c\145\163\56\145\x64\x69\x74\x2e\147\162\x65\141\164\145\162\55\x74\x68\141\x6e\47\51\42\12\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x7d\54\x20\173\12\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x27\157\160\145\162\x61\x74\x6f\162\47\x3a\40\x27\74\x27\54\xa\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\47\154\141\x62\145\x6c\47\x3a\x20\x22\x40\x6c\x61\x6e\x67\x28\47\x61\x64\x6d\x69\x6e\72\72\141\160\160\x2e\x6d\x61\162\x6b\x65\164\151\156\x67\56\160\162\x6f\155\157\164\151\157\x6e\x73\x2e\x63\141\x74\x61\x6c\x6f\147\55\162\165\154\145\163\x2e\x65\x64\x69\x74\56\x6c\145\163\163\55\164\x68\141\x6e\x27\51\42\12\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\175\x5d\x2c\12\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\47\163\145\x6c\145\x63\x74\x27\x3a\x20\x5b\x7b\12\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\47\x6f\160\145\162\141\164\x6f\x72\47\72\x20\x27\75\75\47\x2c\xa\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x27\x6c\x61\142\x65\154\47\x3a\40\42\x40\154\141\156\x67\x28\47\x61\x64\x6d\151\156\x3a\x3a\141\x70\x70\56\155\x61\x72\x6b\145\x74\151\x6e\147\56\160\162\x6f\155\157\x74\x69\157\156\x73\56\x63\x61\164\x61\x6c\x6f\147\55\x72\165\154\x65\x73\56\145\x64\151\164\56\151\x73\55\145\x71\x75\x61\154\55\x74\x6f\47\51\42\xa\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x7d\54\x20\173\12\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x27\x6f\160\145\x72\x61\x74\157\162\x27\72\40\47\x21\x3d\47\x2c\xa\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\47\154\x61\142\x65\154\x27\x3a\40\x22\100\x6c\x61\x6e\x67\x28\x27\141\x64\x6d\x69\156\x3a\72\x61\160\160\x2e\x6d\x61\162\x6b\145\x74\x69\x6e\147\x2e\x70\162\157\155\x6f\x74\151\157\156\163\56\143\x61\x74\141\154\157\147\x2d\162\x75\154\145\x73\x2e\145\x64\x69\x74\56\x69\163\55\x6e\157\x74\55\x65\x71\x75\x61\x6c\55\x74\157\47\x29\42\12\40\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\x7d\x5d\54\12\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x27\162\x61\144\x69\157\47\72\x20\x5b\173\12\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\47\x6f\x70\x65\x72\x61\164\157\x72\x27\72\x20\x27\x3d\75\x27\x2c\xa\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\47\x6c\x61\142\145\x6c\47\72\x20\42\x40\x6c\141\x6e\x67\50\x27\141\144\x6d\x69\156\72\72\x61\x70\x70\x2e\x6d\x61\x72\x6b\x65\x74\151\x6e\x67\56\160\162\157\x6d\157\164\151\157\x6e\x73\x2e\x63\141\x74\x61\x6c\157\147\55\x72\165\x6c\x65\163\x2e\145\144\x69\164\56\151\163\55\145\x71\x75\x61\x6c\55\x74\157\47\51\x22\xa\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x7d\x2c\x20\x7b\xa\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\47\157\x70\x65\x72\x61\x74\x6f\162\x27\72\40\47\41\x3d\47\54\12\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x27\x6c\x61\x62\x65\154\47\x3a\40\x22\100\154\x61\156\147\x28\x27\x61\144\155\x69\x6e\x3a\x3a\141\x70\x70\56\155\x61\162\x6b\x65\x74\151\156\x67\56\x70\x72\157\155\x6f\164\151\157\x6e\163\x2e\x63\141\x74\141\154\x6f\147\55\162\x75\x6c\145\x73\x2e\145\144\x69\164\56\x69\x73\55\156\x6f\x74\x2d\x65\161\165\141\x6c\55\164\x6f\x27\x29\42\xa\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\175\x5d\54\12\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x27\x6d\x75\x6c\164\x69\163\x65\x6c\145\x63\x74\47\x3a\40\x5b\173\xa\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\x27\x6f\160\145\x72\x61\x74\157\162\47\72\x20\47\x7b\175\47\54\12\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x27\154\x61\142\145\x6c\x27\x3a\40\x22\100\x6c\141\156\x67\50\47\x61\144\x6d\x69\156\x3a\x3a\141\160\x70\x2e\155\141\162\153\x65\x74\151\156\147\56\160\x72\x6f\x6d\x6f\164\x69\157\156\x73\56\x63\141\164\141\x6c\157\x67\x2d\162\x75\154\x65\x73\56\x65\144\x69\164\56\x63\157\x6e\x74\141\151\156\x73\47\51\42\xa\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\175\54\x20\x7b\12\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\47\157\160\x65\162\141\x74\x6f\162\x27\72\40\47\x21\173\x7d\47\54\12\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\47\154\x61\142\145\x6c\47\x3a\x20\42\x40\154\x61\156\x67\50\47\x61\144\155\151\x6e\72\x3a\x61\x70\160\x2e\x6d\141\x72\153\x65\164\151\156\147\x2e\160\162\x6f\x6d\x6f\164\x69\157\x6e\x73\56\x63\141\x74\141\x6c\157\147\x2d\162\x75\x6c\x65\163\x2e\x65\144\x69\164\56\144\x6f\x65\x73\x2d\x6e\157\164\x2d\143\x6f\x6e\x74\141\151\156\x27\x29\x22\12\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\175\135\x2c\xa\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x27\x63\150\145\x63\x6b\142\x6f\170\x27\72\40\133\173\xa\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\47\x6f\x70\145\x72\141\164\157\x72\47\x3a\x20\47\x7b\175\x27\54\12\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x27\154\141\142\145\x6c\47\x3a\40\x22\x40\154\141\156\x67\50\x27\x61\144\155\x69\x6e\x3a\72\x61\160\160\56\x6d\x61\x72\x6b\x65\164\151\156\147\x2e\160\x72\157\155\157\x74\x69\x6f\x6e\163\x2e\x63\x61\164\141\x6c\157\x67\x2d\x72\165\x6c\145\x73\x2e\x65\x64\x69\164\56\x63\x6f\x6e\164\141\151\x6e\x73\47\51\42\12\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x7d\54\x20\x7b\12\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x27\x6f\x70\145\162\141\x74\x6f\162\47\x3a\x20\x27\x21\x7b\x7d\47\54\xa\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\40\40\40\40\47\154\x61\x62\145\154\47\x3a\40\42\100\154\x61\156\x67\50\47\141\x64\155\x69\x6e\x3a\72\141\160\160\56\x6d\141\162\153\x65\164\151\x6e\147\x2e\160\162\157\x6d\157\164\151\157\x6e\163\x2e\x63\141\164\x61\154\157\x67\55\162\x75\x6c\145\x73\x2e\x65\144\151\164\56\x64\x6f\145\163\55\x6e\157\x74\55\143\x6f\156\164\141\151\x6e\x27\x29\42\xa\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\175\x5d\12\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\175\12\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\175\xa\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\175\54\xa\12\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\143\x6f\155\x70\x75\164\x65\144\72\x20\173\12\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\155\x61\x74\x63\x68\x65\144\101\x74\x74\x72\151\x62\x75\x74\145\x3a\40\146\165\x6e\x63\164\151\x6f\x6e\40\50\x29\40\173\12\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\40\40\x20\40\x69\x66\40\x28\164\150\x69\163\56\143\x6f\x6e\x64\151\x74\151\157\x6e\56\x61\164\164\162\151\x62\165\x74\x65\x20\75\x3d\40\47\x27\51\12\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\162\x65\164\x75\162\156\x3b\xa\xa\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\154\145\164\40\x73\145\154\146\x20\x3d\x20\164\150\151\x73\x3b\12\xa\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x6c\x65\164\40\141\x74\164\x72\x69\x62\x75\x74\145\111\x6e\x64\x65\170\x20\75\x20\164\150\x69\163\56\x61\x74\x74\162\x69\142\165\164\145\124\171\160\145\x49\x6e\x64\145\170\145\163\x5b\x74\x68\x69\x73\56\x63\157\156\144\151\164\151\x6f\x6e\x2e\141\x74\164\x72\151\142\x75\164\x65\x2e\163\x70\x6c\x69\164\50\x22\x7c\42\51\x5b\60\135\135\x3b\12\12\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\x6c\145\164\x20\x6d\x61\x74\143\150\145\144\101\164\164\162\151\x62\x75\164\145\40\x3d\40\164\x68\x69\x73\56\143\157\x6e\144\151\164\x69\x6f\156\x41\x74\x74\162\151\x62\x75\164\x65\x73\x5b\141\164\164\x72\151\142\x75\x74\x65\111\x6e\x64\145\170\x5d\133\x27\143\x68\x69\x6c\144\x72\x65\156\47\135\56\146\x69\x6c\x74\x65\162\x28\146\x75\156\x63\164\151\157\156\x20\x28\x61\x74\x74\x72\151\x62\165\164\x65\51\x20\173\xa\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x72\145\x74\x75\162\x6e\x20\x61\x74\164\x72\x69\142\x75\x74\145\x2e\x6b\x65\x79\40\x3d\75\x20\163\x65\154\146\x2e\143\x6f\x6e\x64\151\164\x69\x6f\156\x2e\141\x74\x74\162\151\x62\x75\164\145\x3b\12\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x7d\x29\x3b\xa\12\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\151\146\x20\50\x6d\x61\164\x63\150\x65\x64\x41\x74\x74\162\151\142\165\x74\x65\133\x30\x5d\133\47\164\x79\160\145\47\x5d\x20\x3d\75\x20\x27\x6d\165\154\164\x69\x73\x65\x6c\x65\x63\164\x27\40\174\174\40\155\x61\x74\143\150\145\x64\x41\x74\164\x72\151\142\165\164\x65\133\x30\x5d\x5b\x27\x74\171\160\x65\47\135\x20\x3d\x3d\x20\47\143\150\145\x63\x6b\142\x6f\170\47\x29\40\173\xa\12\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\164\150\x69\x73\x2e\143\157\x6e\144\151\164\x69\157\156\56\x76\141\x6c\165\x65\x20\x3d\x20\x74\x68\x69\x73\56\x63\x6f\x6e\x64\151\164\x69\157\x6e\56\166\x61\154\x75\x65\40\75\x3d\40\x27\x27\x20\x26\x26\40\164\x68\151\163\56\143\157\156\144\151\164\x69\x6f\x6e\x2e\166\141\154\x75\x65\40\x21\75\x20\165\156\x64\145\146\x69\x6e\x65\x64\xa\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x3f\x20\133\x5d\xa\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x3a\x20\101\x72\x72\x61\171\x2e\151\163\101\x72\162\141\171\50\164\150\151\163\56\143\x6f\x6e\x64\151\164\151\157\156\56\x76\x61\154\165\x65\x29\x20\x3f\40\x74\x68\151\163\x2e\143\157\156\144\151\x74\151\157\x6e\56\x76\x61\x6c\165\145\40\x3a\40\133\135\73\12\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\175\xa\xa\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\162\x65\164\165\162\x6e\40\x6d\x61\x74\x63\x68\145\x64\x41\164\164\162\151\142\x75\x74\x65\133\60\135\x3b\xa\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x7d\xa\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\175\x2c\12\xa\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\155\145\164\150\157\x64\163\x3a\40\173\xa\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\162\x65\155\157\166\145\103\157\156\x64\151\x74\x69\157\x6e\x28\51\x20\173\12\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\164\150\151\x73\56\44\x65\x6d\151\164\50\47\157\156\x52\x65\155\x6f\x76\x65\103\157\x6e\x64\151\164\151\157\156\47\54\40\164\150\151\x73\56\143\x6f\x6e\144\x69\x74\151\157\x6e\x29\xa\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\175\54\xa\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x7d\12\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x7d\x29\73\xa\40\x20\40\40\40\x20\x20\40\74\57\x73\143\x72\x69\160\x74\76\xa\x20\40\40\40\x40\x65\156\144\x50\x75\x73\150\117\x6e\x63\x65\12\74\x2f\170\x2d\x61\144\x6d\151\156\x3a\72\x6c\x61\171\x6f\165\x74\x73\76\12";

Function Calls

None

Variables

None

Stats

MD5 239487dbaff5644ffa4afe28d5bb793b
Eval Count 0
Decode Time 289 ms