katzauction.com Open in urlscan Pro
188.114.97.3  Public Scan

Submitted URL: https://7k7g9.r.sp1-brevo.net/mk/cl/f/sh/7nVU1aA2ng08HX8TFdCry5Uzf2p2KPs/affPv5boCZQz
Effective URL: https://katzauction.com/lots?to_page=1&auction_id=146
Submission: On December 06 via api from UA — Scanned from PL

Form analysis 2 forms found in the DOM

<form x-ref="filterForm" x-on:submit="event.preventDefault();" class="space-y-4">
  <!-- Gold -->
  <div class="p-1 mt-1">
    <div class="inline-flex items-center space-x-2">
      <input class="select-none cursor-pointer focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" id="gold" name="gold" type="checkbox" value="" x-model="filters.gold" x-on:change="getObjects()">
      <label class="select-none cursor-pointer block text-sm font-medium" for="gold"> Gold</label>
    </div>
  </div>
  <!-- Silver -->
  <div class="p-1 mt-1">
    <div class="inline-flex items-center space-x-2">
      <input class="select-none cursor-pointer focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" id="silver" name="silver" type="checkbox" value="" x-model="filters.silver" x-on:change="getObjects()">
      <label class="select-none cursor-pointer block text-sm font-medium" for="silver"> Silver</label>
    </div>
  </div>
  <!-- Certified  -->
  <div class="p-1 mt-1">
    <div class="inline-flex items-center space-x-2">
      <input class="select-none cursor-pointer focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" id="certified_lots" name="certified_lots" type="checkbox" value="" x-model="filters.certified_lots" x-on:change="getObjects()">
      <label class="select-none cursor-pointer block text-sm font-medium" for="certified_lots">Certified</label>
    </div>
  </div>
  <!-- Order By -->
  <div>
    <label for="order_by" class="select-none cursor-pointer block text-sm font-medium mb-1">Order by</label>
    <select id="order_by" class="select-none block w-full bg-white dark:bg-night-900 border-gray-900 rounded-md shadow-sm d sm:text-sm" x-ref="order_by" x-model="filters.order_by" x-on:change="getObjects()">
      <option value="order_by_lot_number_asc">Lot Number Asc</option>
      <option value="order_by_lot_number_desc">Lot Number Desc</option>
      <option value="order_by_country_asc">Country Asc</option>
      <option value="order_by_country_desc">Country Desc</option>
      <option value="order_by_title_asc">Title Asc</option>
      <option value="order_by_title_desc">Title Desc </option>
      <option value="order_by_current_price_asc">Current Price Asc </option>
      <option value="order_by_current_price_desc">Current Price Desc </option>
      <option value="order_by_most_popular">Most Popular</option>
      <option value="order_by_least_popular">Least Popular</option>
    </select>
  </div>
  <!-- jump_to_lot_number -->
  <div>
    <label class="select-none block text-sm font-medium" for="jump_to_lot_number">Jump to Lot Number</label>
    <div class="mt-1">
      <input id="jump_to_lot_number" name="jump_to_lot_number" class="block w-full border-gray-900 bg-white dark:bg-night-900 rounded-md shadow-sm d sm:text-sm" placeholder="Jump to Lot Number" x-model="filters.jump_to_lot_number" type="number"
        min="1" pattern="\d*" @keydown.enter="getObjects()">
    </div>
  </div>
  <!-- id -->
  <!-- Country -->
  <div>
    <label for="country" class="select-none block text-sm font-medium">Country</label>
    <select id="country" class="block w-full border-gray-900 bg-white dark:bg-night-900 rounded-md shadow-sm d sm:text-sm" x-ref="country" x-model="filters.country" x-on:change="getObjects()">
      <option value="" :selected="!filters.country" selected="selected">All Countries</option>
      <template x-for="(value, index) in country_options" :key="index">
        <option :value="value.id" x-text="value.country" :selected="value.id === filters.country">
        </option>
      </template>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AF">Afghanistan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AFR">Africa</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AL">Albania</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ALDRN">Alderney</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DZ">Algeria</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AMR">America</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ANG">Ancient Greece</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ANT">Ancient World</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AD">Andorra</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AO">Angola</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AR">Argentina</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AM">Armenia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ASA">Asia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AU">Australia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AT">Austria</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AU-HU">Austria-Hungary</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AN">Austrian Netherlands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AUST">Austrian States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AZS">Azores</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BS">Bahamas</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BH">Bahrain</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BD">Bangladesh</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BB">Barbados</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BELC">Belgian Congo</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BE">Belgium</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BZ">Belize</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BM">Bermuda</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BRM">Bermuda</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BT">Bhutan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BOH">Bohemia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BO">Bolivia (Plurinational State of)</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BW">Botswana</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BR">Brazil</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BREAI">British East Indies</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BRHOND">British Honduras</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BRITIND">British India</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BNB">British North Borneo</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BVI">British Virgin Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BWAF">British West Africa</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BWEI">British West Indies</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BN">Brunei Darussalam</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BG">Bulgaria</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BUR">Burma</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="BYZ">Byzantium</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CV">Cabo Verde</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="KH">Cambodia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CA">Canada</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CAS">Central African States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CLN">Ceylon</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CL">Chile</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CN">China</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CC">Cocos (Keeling) Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CO">Colombia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CG">Congo</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CD">Congo (Democratic Republic)</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CK">Cook Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CR">Costa Rica</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CRM">Crimea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HR">Croatia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CU">Cuba</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CW">Curacao</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CY">Cyprus</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CZ-SK">Czechoslovakia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CZ1">Czech Republic</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DANZ">Danzig</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DK">Denmark</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DJ">Djibouti</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DO">Dominican Republic</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="EASAFR">East Africa</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ECS">East Caribbean States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ETR">East Timor</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="EC">Ecuador</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="EG">Egypt</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GQ">Equatorial Guinea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ESDEM">Essequibo &amp; Demerary</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="EE">Estonia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ET">Ethiopia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="EUR">Europe</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FK">Falkland Islands [Malvinas]</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FO">Faroe Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FJ">Fiji</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FI">Finland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FR">France</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FCL">French Colonies</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FRIND">French Indochina</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="FCOCH">French Indo-China</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GM">Gambia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DEAF">German East Africa</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GNG">German New Guinea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DE2">German States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DE">Germany</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GGDR">Germany - DDR</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DE3">Germany - Empire</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GFRG">Germany - FRG</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DE4">Germany - Third Reich</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="DE1">Germany - Weimar Republic</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GH">Ghana</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GI">Gibraltar</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GHD">Golden Horde</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GR">Greece</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GL">Greenland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GT">Guatemala</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GG">Guernsey</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GN">Guinea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GW">Guinea-Bissau</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GY">Guyana</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HT">Haiti</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HRE">Holy Roman Empire</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HN">Honduras</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HK">Hong Kong</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="HU">Hungary</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IS">Iceland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IN">India</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="INDPORT">India Portuguese</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ID">Indonesia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IOI">Ionian Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IRR">Iran</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IQ">Iraq</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IE">Ireland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IM">Isle of Man</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IL">Israel</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ITSOM">Italian Somaliland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ITS">Italian States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IT">Italy</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="IVCT">Ivory Coast</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="JP">Japan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="JE">Jersey</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="JO">Jordan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="KZ">Kazakhstan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="KBS">Kings of Bosporus</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="KOR">Korea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="KW">Kuwait</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LA">Lao People's Democratic Republic</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LV">Latvia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LB">Lebanon</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LS">Lesotho</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LR">Liberia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LY">Libya</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LI">Liechtenstein</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LIG">Liege</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LT">Lithuania</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LIVON">Livonia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="LU">Luxembourg</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MO">Macao</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MG">Madagascar</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MW">Malawi</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MAL">Malaya</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MY">Malaysia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MV">Maldives</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MT">Malta</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MH">Marshall Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MU">Mauritius</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MX">Mexico</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MIDE">Middle East</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MDD">Moldavia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MD">Moldova</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MC">Monaco</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MN">Mongolia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ME">Montenegro</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MA">Morocco</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="MAO">Muscat and Oman</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NP">Nepal</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NL">Netherlands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NDAA">Netherlands Antilles</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NEIS">Netherlands East Indies</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NZ">New Zealand</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NI">Nicaragua</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NU">Niue</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="NO">Norway</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="OM">Oman</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="OOM">Order of Malta</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="OTTEMP">Ottoman Empire</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PK">Pakistan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PALES">Palestine</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PA">Panama</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PG">Papua New Guinea</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PY">Paraguay</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PRT">Parthia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PE">Peru</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PH">Philippines</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PL">Poland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PLC">Polish - Lithuanian Commonwealth</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PT">Portugal</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="PR">Puerto Rico</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RENON">Reunion</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RE">Réunion</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RO">Romania</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RU">Russia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RUF">Russia - Finland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RFL">Russia - For Livonia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RUSMW">Russia - Moldova &amp; Wallachia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RUFR">Russian Federation</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RUP">Russia - Poland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SIB">Russia - Siberia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RU-USSR">Russia - USSR</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SH">Saint Helena, Ascension and Tristan da Cunha</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="STP">Saint Thomas &amp; Prince</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SM">San Marino</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SWK">Sarawak</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SASA">Sasanian Empire</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SA">Saudi Arabia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SCOT">Scotland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SN">Senegal</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="RS">Serbia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SC">Seychelles</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SL">Sierra Leone</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SG">Singapore</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SK">Slovakia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SB">Solomon Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SO">Somalia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ZA">South Africa</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SORH">Southern Rhodesia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ES">Spain</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SNTH">Spanish Netherlands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="STSM">Straits Settlements</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SD">Sudan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SR">Suriname</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SE">Sweden</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="CH">Switzerland</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="SYR">Syria</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TJ">Tajikistan</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TZ">Tanzania, United Republic of</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TH">Thailand</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TIB">Tibet</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TIMOR">Timor</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TG">Togo</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TO">Tonga</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TDHA">Tristan da Cunha</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TN">Tunisia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TR">Turkey</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="TC">Turks and Caicos Islands</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="UG">Uganda</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="UA">Ukraine</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="AE">United Arab Emirates</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="GB">United Kingdom</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="US">United States of America</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="UY">Uruguay</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="VU">Vanuatu</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="VAT">Vatican / Papal States</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="VE">Venezuela (Bolivarian Republic of)</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="VN">Viet Nam</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="WRD">World</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="YE">Yemen</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="YUG">Yugoslavia</option>
      <option :value="value.id" x-text="value.country" :selected="value.id === filters.country" value="ZM">Zambia</option>
    </select>
  </div>
  <!-- Categories -->
  <div>
    <span class="select-none block text-sm font-medium">Categories</span>
    <div id="category" class="h-64 p-2 mt-1 space-y-2 border border-gray-900 rounded-md overflow-y-auto lg:h-64">
      <template x-for="option in category_options" :key="option.id">
        <div>
          <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2">
            <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
              x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()">
            <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium"></span>
          </label>
        </div>
      </template>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-33">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-33" value="33" id="categories-33">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Africa</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-34">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-34" value="34" id="categories-34">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - America</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-25">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-25" value="25" id="categories-25">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Ancient World</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-37">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-37" value="37" id="categories-37">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Asia</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-38">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-38" value="38" id="categories-38">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Australia &amp; Oceania</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-123">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-123" value="123" id="categories-123">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Austria</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-122">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-122" value="122" id="categories-122">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Austrian States</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-129">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-129" value="129" id="categories-129">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - British Isles</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-79">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-79" value="79" id="categories-79">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - China</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-27">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-27" value="27" id="categories-27">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Czech &amp; Slovak</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-134">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-134" value="134" id="categories-134">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - DDR (1946 - 1990)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-32">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-32" value="32" id="categories-32">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Europe</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-135">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-135" value="135" id="categories-135">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - FRG (1946-)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-131">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-131" value="131" id="categories-131">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - German Empire (1871 - 1918)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-130">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-130" value="130" id="categories-130">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - German States (Before 1871)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-128">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-128" value="128" id="categories-128">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Great Britain</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-124">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-124" value="124" id="categories-124">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Hungary</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-125">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-125" value="125" id="categories-125">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Italian Enclaves (Vatican, San Marino, Order of Malta)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-126">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-126" value="126" id="categories-126">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Italian States</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-127">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-127" value="127" id="categories-127">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Italy</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-26">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-26" value="26" id="categories-26">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Middle East</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-133">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-133" value="133" id="categories-133">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Third Reich (1933 - 1945)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-132">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-132" value="132" id="categories-132">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Coins - Weimar Republic (1918 - 1933)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-24">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-24" value="24" id="categories-24">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Lots - Europe &amp; World Coins</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-40">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-40" value="40" id="categories-40">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1699-1725) - Peter I</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-42">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-42" value="42" id="categories-42">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1727-1729) - Peter II</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-43">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-43" value="43" id="categories-43">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1730-1740) - Anna Ioannovna</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-45">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-45" value="45" id="categories-45">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1741-1762) - Elizabeth</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-46">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-46" value="46" id="categories-46">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1762-1762) - Peter III</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-47">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-47" value="47" id="categories-47">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1762-1796) - Catherine II</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-48">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-48" value="48" id="categories-48">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1796-1801) - Paul I</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-49">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-49" value="49" id="categories-49">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1801-1825) - Alexander I</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-50">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-50" value="50" id="categories-50">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1826-1855) - Nicholas I</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-51">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-51" value="51" id="categories-51">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1854-1881) - Alexander II</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-52">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-52" value="52" id="categories-52">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1881-1894) - Alexander III</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-53">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-53" value="53" id="categories-53">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1894-1917) - Nicholas II</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-54">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-54" value="54" id="categories-54">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia (1917-1991) - USSR</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-39">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-39" value="39" id="categories-39">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russia - Before 1700</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-55">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-55" value="55" id="categories-55">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Russian Federation (1992-)</span>
        </label>
      </div>
      <div>
        <label x-bind:for="'categories-' + option.id" class="inline-flex items-center block space-x-2" for="categories-112">
          <input name="categories" type="checkbox" class="select-none focus:ring-yellow-500 h-4 w-4 text-yellow-500 border-gray-900 rounded" x-bind:for="'categories-' + option.id" x-bind:value="option.id"
            x-bind:checked="filters.categories.includes(String(option.id))" x-bind:id="'categories-' + option.id" x-on:change="loadCategories()" for="categories-112" value="112" id="categories-112">
          <span x-text="option.category" class="label-checked:font-bold select-none block text-sm font-medium">Special Literature &amp; Catalogues</span>
        </label>
      </div>
    </div>
  </div>
  <!-- Buttons -->
  <div class="flex-shrink-0 py-5 border-t border-gray-900">
    <div class="flex justify-between space-x-3">
      <button @click="getObjects()" type="button" class="inline-flex items-center px-4 py-2 space-x-2
                       text-sm font-medium text-white bg-black dark:bg-yellow-500 border border-transparent rounded-md shadow-sm hover:bg-yellow-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500">
        <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
          <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
        </svg>
        <span class="text-sm font-medium whitespace-nowrap uppercase">Apply</span>
      </button>
      <button @click="resetFilter()" type="button"
        class="inline-flex items-center px-4 py-2 space-x-2 text-sm font-medium bg-white hover:bg-gray-100 dark:bg-night-900 dark:hover:bg-night-800 border border-gray-900 dark:border-night-700 rounded-md shadow-sm hfocus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500">
        <!-- <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"
                        xmlns="http://www.w3.org/2000/svg">
                        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
                          d="M15 12H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                      </svg>
                      <span class="text-sm font-medium whitespace-nowrap">Reset</span> -->
        <svg class="fill-black dark:fill-white" width="30" height="30" viewBox="0 0 26 29" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path
            d="M23.6165 8.37823C23.2523 7.82873 22.4936 7.70649 21.9778 8.07281C21.4316 8.43914 21.2798 9.23314 21.6742 9.78263C23.0703 11.7672 23.7985 14.2711 23.5557 16.9275C23.1006 21.9656 19.0642 26.0265 14.0567 26.515C7.44077 27.1563 1.85668 21.6295 2.4333 14.9733C2.88844 9.56884 7.41042 5.35527 12.7821 5.23313V7.18728C12.7821 7.8895 13.5711 8.31697 14.1477 7.95062L19.1551 4.80566C19.7317 4.43932 19.7317 3.61485 19.1551 3.27899L14.1477 0.134029C13.5408 -0.232308 12.7821 0.195156 12.7821 0.897368V2.85152C6.28754 2.9431 0.885534 7.76742 0.0964777 14.3016C-0.874777 22.4235 5.61987 29.3241 13.6015 28.9882C20.2174 28.6828 25.6498 23.2785 25.9836 16.6221C26.1354 13.5383 25.2249 10.6986 23.6164 8.37809L23.6165 8.37823Z">
          </path>
        </svg>
      </button>
    </div>
  </div>
</form>

<form x-on:submit="event.preventDefault();" class="space-y-4">
  <div class="flex flex-col md:flex-row items-end justify-between gap-3">
    <!-- Auction ID -->
    <div class="w-full md:max-w-sm">
      <!-- <label for="auction" class="select-none cursor-pointer block text-sm font-medium mb-1">Auction</label> -->
      <!-- index === 0 ? value.id : false -->
      <select id="auction" class="select-none block w-full border-gray-900 bg-white dark:bg-night-900 rounded-md shadow-sm d sm:text-sm" x-ref="auction_id" x-model="filters.auction_id" x-on:change="changeAuction()">
        <template x-for="(value, index) in auction_options" :key="index">
          <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id">
          </option>
        </template>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="146" selected="selected">Auction 146 - NYE Premium Auction</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="145"> Auction 145 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="144">Auction 144 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="143"> Auction 143 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="142">Auction 142 - 12th Phaleristics Auction - Orders, Medals, Badges, Awards &amp; Weapons of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="141">Auction 141 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="140"> Auction 140 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="139"> Auction 139 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="138">Auction 138 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="137"> Auction 137 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="136">Auction 136 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="135"> Auction 135 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="134">Auction 134 - 11th Phaleristics Auction - Orders, Medals, Badges, Awards &amp; Weapons of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="133">Auction 133 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="132"> Auction 132 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="131">Auction 131 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="130"> Auction 130 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="129">Auction 129 - 10th Phaleristics Auction - Orders, Medals, Badges, Awards &amp; Weapons of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="128">Auction 128 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="127"> Auction 127 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="126">Auction 126 - Coins of the World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="125">PREMIUM AUCTION 125 - WORLD COINS</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="124"> Auction 124 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="123">Auction 123 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="122"> Auction 122 - 9th Phaleristics Auction - Orders, Medals, Badges &amp; Awards of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="121"> Auction 121 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="120">Auction 120 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="119">Auction 119 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="118"> Auction 118 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="117"> Auction 117 - 8th Phaleristics Auction - Orders, Medals, Badges &amp; Awards of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="116">Auction 116 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="115"> Auction 115 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="114">Auction 114 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="113"> Auction 113 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="112">Auction 112 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="111"> Auction 111 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="110">7th Phaleristics Auction - Orders, Medals, Badges &amp; Awards of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="109">Auction 109 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="108">Auction 108 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="107"> Auction 107 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="106">Auction 106 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="105">6th Phaleristics Auction - Orders, Medals, Badges &amp; Awards of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="104"> Auction 104 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="103">Auction 103 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="102"> Auction 102 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="101">Auction 101 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="100">Jubilee Auction 100 - Rare Coins and Banknotes of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="99"> Auction 99 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="98">Auction 98 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="97">Auction 97 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="96">Auction 96 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="95">Auction 95 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="94">Auction 94 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="93">Auction 93 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="92">Auction 92 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="91">Auction 91 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="90">Auction 90 - Coins of The World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="89">Auction 89 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="88">Auction 88 - Coins of The World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="87">Auction 87 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="86">Auction 86 - Coins of The World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="85">5th Phaleristics Auction - Orders, Medals, Badges &amp; Awards of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="84">Auction 84 - Coins of The World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="83">Auction 83 - Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="82">Auction 82 - Coins of The World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="81">Auction 81 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="80">Auction 80 - Premium Coins &amp; Banknotes of The World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="79">Auction 79 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="78">Auction 78 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="77">Auction 77 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="76">Auction 76 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="75">Auction 75 - Phaleristics of the World - Orders, Medals, Badges &amp; Awards.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="74">Auction 74 - Premium Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="73">Auction 73 - Premium Coins of The World </option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="72">Auction 72 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="71">Auction 71 - The Biggest Paper Money Auction in Our History!</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="70">Auction 70 - Premium Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="69">Auction 69 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="68">Auction 68 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="67">Auction 67 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="66">Auction 66 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="65">Auction 65 - Phaleristics of the World - Orders, Medals, Badges &amp; Awards.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="64">Auction 64 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="63">Auction 63 - Coins of The World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="62">Auction 62 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="61">Auction 61 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="60">Jubilee Auction 60 - Rare Coins &amp; Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="59">Auction 59 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="58">Auction 58 - Phaleristics of the World - Orders, Medals, Badges &amp; Awards.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="57">Auction 57 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="56">Auction 56 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="55">Jubilee Auction 55 - Rare Coins &amp; Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="54">Auction 54 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="53">Auction 53 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="52">Auction 52 - Coins of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="51">Auction 51 - Paper Money of the World</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="50">Jubilee Auction 50 - Rare Coins &amp; Paper Money of the World.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="49">Auction 49 - Phaleristics of the World - Orders, Medals, Badges &amp; Awards.</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="48">Auction 48</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="47">Auction 47</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="46">Auction 46</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="45">Auction 45</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="44">Auction 44</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="43">Auction 43</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="42">Auction 42</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="41">Auction 41</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="40">Auction 40</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="39">Auction 39</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="38">Auction 38</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="37">Auction 37</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="36">Auction 36</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="35">Auction 35</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="34">Auction 34</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="33">Auction 33</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="32">Auction 32</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="31">Auction 31</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="30">Auction 30</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="29">Auction 29</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="28">Auction 28</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="27">Auction 27</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="26">Auction 26</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="25">Auction 25</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="24">Auction 24</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="23">Auction 23</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="22">Auction 22</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="21">Auction 21</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="20">Auction 20</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="19">Auction 19</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="18">Auction 18</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="17">Auction 17</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="16">Auction 16</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="15">Auction 15</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="14">Auction 14</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="13">Auction 13</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="12">Auction 12</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="11">Auction 11</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="10">Auction 10</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="9">Auction 9</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="8">Auction 8</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="7">Auction 7</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="6">Auction 6</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="5">Auction 5</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="4">Auction 4</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="3">Auction 3</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="2">Auction 2</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="-1">Claimed</option>
        <option :value="value.id" x-text="value.title" :selected="value.id == filters.auction_id" value="-5">Marketplace</option>
        <option value="">All Auctions</option>
      </select>
    </div>
    <!-- lot_number -->
    <div class="w-full md:max-w-sm">
      <!-- <label class="select-none block text-sm font-medium" for="lot_number">Lot Number</label> -->
      <div class="mt-1">
        <input class="block w-full border-gray-900 bg-white dark:bg-night-900 rounded-md shadow-sm d sm:text-sm" id="filter_lot_number" name="lot_number" placeholder="Lot Number" type="number" min="1" pattern="\d*" value=""
          @keydown.enter="getObjects()" x-model="filters.lot_number">
      </div>
    </div>
    <!-- search -->
    <div class="w-full md:grow">
      <!-- <label class="select-none block text-sm font-medium" for="search">Search</label> -->
      <div class="mt-1">
        <input id="search" name="search" type="text" value="" class="block w-full border-gray-900 bg-white dark:bg-night-900 rounded-md shadow-sm d sm:text-sm" placeholder="Search" x-model="filters.search" @keydown.enter="getObjects()">
      </div>
    </div>
    <!-- search button -->
    <div class="text-right">
      <button @click="getObjects()" type="button" class="inline-flex items-center px-4 py-2 space-x-2 text-sm
                 font-medium text-white bg-black dark:bg-yellow-500 
                 border border-transparent rounded-md shadow-sm hover:bg-yellow-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500">
        <!-- <svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"
                  xmlns="http://www.w3.org/2000/svg">
                  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
                    d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
                </svg> -->
        <!-- <span class="text-sm font-medium whitespace-nowrap uppercase">Search</span> -->
        <svg class="fill-current" width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path fill-rule="evenodd" clip-rule="evenodd"
            d="M12.5205 7.39852C12.5205 10.2272 10.2273 12.5205 7.39857 12.5205C4.56968 12.5205 2.2766 10.2272 2.2766 7.39852C2.2766 4.56963 4.56968 2.27655 7.39857 2.27655C10.2273 2.27655 12.5205 4.56963 12.5205 7.39852ZM11.7633 13.3727C10.5398 14.2681 9.03083 14.7967 7.39857 14.7967C3.31241 14.7967 0 11.4844 0 7.39857C0 3.31241 3.31231 0 7.39857 0C11.4845 0 14.7967 3.31231 14.7967 7.39857C14.7967 9.03083 14.2681 10.5398 13.3727 11.7633L19.6664 18.057C20.1109 18.5016 20.1109 19.2222 19.6664 19.6666C19.222 20.1111 18.5014 20.1111 18.0568 19.6666L11.7633 13.3727Z">
          </path>
        </svg>
      </button>
    </div>
  </div>
</form>

Text Content

Success!

Warning!

Error!




Auctions Lots FAQs Online Payment Crypto Payment

English
English Deutsch Čeština Русский

Sign in Register

Auctions Lots FAQs
Sign in Register
English
English Deutsch Čeština Русский
Dark or Light Mode

Filters


Gold
Silver
Certified
Order by Lot Number Asc Lot Number Desc Country Asc Country Desc Title Asc Title
Desc Current Price Asc Current Price Desc Most Popular Least Popular
Jump to Lot Number

Country All Countries AfghanistanAfricaAlbaniaAlderneyAlgeriaAmericaAncient
GreeceAncient
WorldAndorraAngolaArgentinaArmeniaAsiaAustraliaAustriaAustria-HungaryAustrian
NetherlandsAustrian StatesAzoresBahamasBahrainBangladeshBarbadosBelgian
CongoBelgiumBelizeBermudaBermudaBhutanBohemiaBolivia (Plurinational State
of)BotswanaBrazilBritish East IndiesBritish HondurasBritish IndiaBritish North
BorneoBritish Virgin IslandsBritish West AfricaBritish West IndiesBrunei
DarussalamBulgariaBurmaByzantiumCabo VerdeCambodiaCanadaCentral African
StatesCeylonChileChinaCocos (Keeling) IslandsColombiaCongoCongo (Democratic
Republic)Cook IslandsCosta RicaCrimeaCroatiaCubaCuracaoCyprusCzechoslovakiaCzech
RepublicDanzigDenmarkDjiboutiDominican RepublicEast AfricaEast Caribbean
StatesEast TimorEcuadorEgyptEquatorial GuineaEssequibo &
DemeraryEstoniaEthiopiaEuropeFalkland Islands [Malvinas]Faroe
IslandsFijiFinlandFranceFrench ColoniesFrench IndochinaFrench
Indo-ChinaGambiaGerman East AfricaGerman New GuineaGerman StatesGermanyGermany -
DDRGermany - EmpireGermany - FRGGermany - Third ReichGermany - Weimar
RepublicGhanaGibraltarGolden
HordeGreeceGreenlandGuatemalaGuernseyGuineaGuinea-BissauGuyanaHaitiHoly Roman
EmpireHondurasHong KongHungaryIcelandIndiaIndia PortugueseIndonesiaIonian
IslandsIranIraqIrelandIsle of ManIsraelItalian SomalilandItalian
StatesItalyIvory CoastJapanJerseyJordanKazakhstanKings of BosporusKoreaKuwaitLao
People's Democratic
RepublicLatviaLebanonLesothoLiberiaLibyaLiechtensteinLiegeLithuaniaLivoniaLuxembourgMacaoMadagascarMalawiMalayaMalaysiaMaldivesMaltaMarshall
IslandsMauritiusMexicoMiddle
EastMoldaviaMoldovaMonacoMongoliaMontenegroMoroccoMuscat and
OmanNepalNetherlandsNetherlands AntillesNetherlands East IndiesNew
ZealandNicaraguaNiueNorwayOmanOrder of MaltaOttoman
EmpirePakistanPalestinePanamaPapua New
GuineaParaguayParthiaPeruPhilippinesPolandPolish - Lithuanian
CommonwealthPortugalPuerto RicoReunionRéunionRomaniaRussiaRussia - FinlandRussia
- For LivoniaRussia - Moldova & WallachiaRussian FederationRussia - PolandRussia
- SiberiaRussia - USSRSaint Helena, Ascension and Tristan da CunhaSaint Thomas &
PrinceSan MarinoSarawakSasanian EmpireSaudi
ArabiaScotlandSenegalSerbiaSeychellesSierra LeoneSingaporeSlovakiaSolomon
IslandsSomaliaSouth AfricaSouthern RhodesiaSpainSpanish NetherlandsStraits
SettlementsSudanSurinameSwedenSwitzerlandSyriaTajikistanTanzania, United
Republic ofThailandTibetTimorTogoTongaTristan da CunhaTunisiaTurkeyTurks and
Caicos IslandsUgandaUkraineUnited Arab EmiratesUnited KingdomUnited States of
AmericaUruguayVanuatuVatican / Papal StatesVenezuela (Bolivarian Republic
of)Viet NamWorldYemenYugoslaviaZambia
Categories
Coins - Africa
Coins - America
Coins - Ancient World
Coins - Asia
Coins - Australia & Oceania
Coins - Austria
Coins - Austrian States
Coins - British Isles
Coins - China
Coins - Czech & Slovak
Coins - DDR (1946 - 1990)
Coins - Europe
Coins - FRG (1946-)
Coins - German Empire (1871 - 1918)
Coins - German States (Before 1871)
Coins - Great Britain
Coins - Hungary
Coins - Italian Enclaves (Vatican, San Marino, Order of Malta)
Coins - Italian States
Coins - Italy
Coins - Middle East
Coins - Third Reich (1933 - 1945)
Coins - Weimar Republic (1918 - 1933)
Lots - Europe & World Coins
Russia (1699-1725) - Peter I
Russia (1727-1729) - Peter II
Russia (1730-1740) - Anna Ioannovna
Russia (1741-1762) - Elizabeth
Russia (1762-1762) - Peter III
Russia (1762-1796) - Catherine II
Russia (1796-1801) - Paul I
Russia (1801-1825) - Alexander I
Russia (1826-1855) - Nicholas I
Russia (1854-1881) - Alexander II
Russia (1881-1894) - Alexander III
Russia (1894-1917) - Nicholas II
Russia (1917-1991) - USSR
Russia - Before 1700
Russian Federation (1992-)
Special Literature & Catalogues
Apply
Auction 146 - NYE Premium Auction Auction 145 - Paper Money of the World.Auction
144 - Coins of the World Auction 143 - Paper Money of the World.Auction 142 -
12th Phaleristics Auction - Orders, Medals, Badges, Awards & Weapons of the
World.Auction 141 - Coins of the World Auction 140 - Paper Money of the World.
Auction 139 - Paper Money of the World.Auction 138 - Coins of the World Auction
137 - Paper Money of the WorldAuction 136 - Coins of the World Auction 135 -
Paper Money of the WorldAuction 134 - 11th Phaleristics Auction - Orders,
Medals, Badges, Awards & Weapons of the World.Auction 133 - Coins of the World
Auction 132 - Paper Money of the WorldAuction 131 - Coins of the World Auction
130 - Paper Money of the WorldAuction 129 - 10th Phaleristics Auction - Orders,
Medals, Badges, Awards & Weapons of the World.Auction 128 - Coins of the World
Auction 127 - Paper Money of the WorldAuction 126 - Coins of the World PREMIUM
AUCTION 125 - WORLD COINS Auction 124 - Paper Money of the World.Auction 123 -
Coins of the World Auction 122 - 9th Phaleristics Auction - Orders, Medals,
Badges & Awards of the World. Auction 121 - Paper Money of the World.Auction 120
- Coins of the WorldAuction 119 - Coins of the World Auction 118 - Paper Money
of the World. Auction 117 - 8th Phaleristics Auction - Orders, Medals, Badges &
Awards of the World.Auction 116 - Coins of the World Auction 115 - Paper Money
of the World.Auction 114 - Coins of the World Auction 113 - Paper Money of the
World.Auction 112 - Coins of the World Auction 111 - Paper Money of the
World.7th Phaleristics Auction - Orders, Medals, Badges & Awards of the
World.Auction 109 - Coins of the WorldAuction 108 - Coins of the World Auction
107 - Paper Money of the World.Auction 106 - Coins of the World6th Phaleristics
Auction - Orders, Medals, Badges & Awards of the World. Auction 104 - Paper
Money of the World.Auction 103 - Coins of the World Auction 102 - Paper Money of
the World.Auction 101 - Coins of the WorldJubilee Auction 100 - Rare Coins and
Banknotes of the World. Auction 99 - Paper Money of the World.Auction 98 - Coins
of the WorldAuction 97 - Paper Money of the WorldAuction 96 - Coins of the
WorldAuction 95 - Paper Money of the WorldAuction 94 - Coins of the WorldAuction
93 - Paper Money of the WorldAuction 92 - Coins of the WorldAuction 91 - Paper
Money of the WorldAuction 90 - Coins of The World.Auction 89 - Paper Money of
the WorldAuction 88 - Coins of The World.Auction 87 - Paper Money of the
WorldAuction 86 - Coins of The World.5th Phaleristics Auction - Orders, Medals,
Badges & Awards of the World.Auction 84 - Coins of The World.Auction 83 - Paper
Money of the World.Auction 82 - Coins of The World.Auction 81 - Paper Money of
the WorldAuction 80 - Premium Coins & Banknotes of The World Auction 79 - Coins
of The WorldAuction 78 - Paper Money of the WorldAuction 77 - Coins of The
WorldAuction 76 - Paper Money of the WorldAuction 75 - Phaleristics of the World
- Orders, Medals, Badges & Awards.Auction 74 - Premium Paper Money of the
WorldAuction 73 - Premium Coins of The World Auction 72 - Coins of The
WorldAuction 71 - The Biggest Paper Money Auction in Our History!Auction 70 -
Premium Coins of The WorldAuction 69 - Coins of The WorldAuction 68 - Paper
Money of the WorldAuction 67 - Coins of The WorldAuction 66 - Coins of The
WorldAuction 65 - Phaleristics of the World - Orders, Medals, Badges &
Awards.Auction 64 - Paper Money of the WorldAuction 63 - Coins of The
WorldAuction 62 - Paper Money of the WorldAuction 61 - Coins of the WorldJubilee
Auction 60 - Rare Coins & Paper Money of the World.Auction 59 - Paper Money of
the WorldAuction 58 - Phaleristics of the World - Orders, Medals, Badges &
Awards.Auction 57 - Coins of the WorldAuction 56 - Paper Money of the
WorldJubilee Auction 55 - Rare Coins & Paper Money of the World.Auction 54 -
Coins of the WorldAuction 53 - Paper Money of the WorldAuction 52 - Coins of the
WorldAuction 51 - Paper Money of the WorldJubilee Auction 50 - Rare Coins &
Paper Money of the World.Auction 49 - Phaleristics of the World - Orders,
Medals, Badges & Awards.Auction 48Auction 47Auction 46Auction 45Auction
44Auction 43Auction 42Auction 41Auction 40Auction 39Auction 38Auction 37Auction
36Auction 35Auction 34Auction 33Auction 32Auction 31Auction 30Auction 29Auction
28Auction 27Auction 26Auction 25Auction 24Auction 23Auction 22Auction 21Auction
20Auction 19Auction 18Auction 17Auction 16Auction 15Auction 14Auction 13Auction
12Auction 11Auction 10Auction 9Auction 8Auction 7Auction 6Auction 5Auction
4Auction 3Auction 2ClaimedMarketplace All Auctions




Page

12 24 48 96
Views
Bidders
Current Price
Starting Price
Your Limit
Sold Price

Page



Page 1 / 346 (4150)

12 24 48 96
Views
Bidders
Current Price
Starting Price
Your Limit
Sold Price

№ 1 | Auction 146 - NYE Premium Auction

Holy Roman Empire Upper Alsace Taler 1621
KM# 257.1, Dav# 3345, Klemesch# 67, N# 86408; Silver 28.28 g.; Leopold V;
Ensisheim Mint (France); Obv: Bust of the Archduke Leopold V of Habsburg facing
right, date below the bust, and the circular legend: "+ LEOPOLD: D: G. ARCHIDVX:
AVST · DVX · BVR: ET¿SAC: CÆS: MtisET"; Rev: Crowned manifold arms with central
shield of Landgraviate of Upper Alsace, and the circular inscription: "+ RELIQ:
ARCHID: GVBERNAT: PLEN: ET · COM: TIR: LAND · ALS"; XF with nice patina; Altered
surface
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 65
Bidders
Bidders 0
Current Price
Current Price 200 €
Starting Price
Your Limit
Sold Price

№ 2 | Auction 146 - NYE Premium Auction

Holy Roman Empire 1/2 Taler 1624
KM# 446, Her# 712; Silver 13.87 g.; Ferdinand II; Graz Mint; Obv: Laureate
portrait of Ferdinand II facing right, date below the bust, and the circular
legend: "FERDINANDVS: +: II: D: G: RO: I: S: A: G: H: B: REX: +"; Rev: Coat of
arms on a crowned shield, small shield of Styria at top center, order chain
around, twisted circle, and the circular legend: "ARCHI: AVST: DVX: BVR: STYRIA:
ETC:"; XF with nice dark patina
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 156
Bidders
Bidders 2
Current Price
Current Price 171 €
Starting Price
Your Limit
Sold Price

№ 3 | Auction 146 - NYE Premium Auction

Austrian States Burgau Taler 1766
KM# 16, Dav. 1148, N# 33735; Silver 28.00 g.; Maria Theresia; UNC
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 200
Bidders
Bidders 1
Current Price
Current Price 200 €
Starting Price
Your Limit
Sold Price

№ 4 | Auction 146 - NYE Premium Auction

Austrian States Salzburg 1/2 Taler 1628
KM# 141, N# 33739; Silver 14.14 g.; Paris von Lodron; Consecration of St. Rupert
Cathedral of Salzburg; UNC
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 213
Bidders
Bidders 2
Current Price
Current Price 106 €
Starting Price
Your Limit
Sold Price

№ 5 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1625
KM# 87, Dav. 3504, N# 33528; Silver 28.71 g.; Paris von Lodron; UNC with mint
luster & nice toning
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 276
Bidders
Bidders 2
Current Price
Current Price 201 €
Starting Price
Your Limit
Sold Price

№ 6 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1628
KM# 110, Dav. 3499, N# 33737; Silver 28.86 g.; Paris von Lodron; Consecration of
St. Rupert Cathedral of Salzburg; UNC with nice toning
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 236
Bidders
Bidders 3
Current Price
Current Price 411 €
Starting Price
Your Limit
Sold Price

№ 7 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1682 PS MDCLXXXII
KM# 233, Dav. 3509, N# 76792; Silver 28.30 g.; Max Gandolf von Kuenburg; 1100th
Anniversary of the Archbishopric of Salzburg; UNC with nice toning
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 244
Bidders
Bidders 2
Current Price
Current Price 302 €
Starting Price
Your Limit
Sold Price

№ 8 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1764 MK
KM# 403.1, Dav# 1257; Silver 28.00 g.; Sigmund III; UNC with mint luster
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 187
Bidders
Bidders 1
Current Price
Current Price 200 €
Starting Price
Your Limit
Sold Price

№ 9 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1777 M
KM# 435, Dav# 1263; Silver 28.01 g.; Hieronymus; UNC with mint luster
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 235
Bidders
Bidders 2
Current Price
Current Price 201 €
Starting Price
Your Limit
Sold Price

№ 10 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1792 M
KM# 465, Dav# 1265; Silver 28.05 g; Hieronymus; AUNC; Mint luster remains
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 178
Bidders
Bidders 1
Current Price
Current Price 200 €
Starting Price
Your Limit
Sold Price

№ 11 | Auction 146 - NYE Premium Auction

Austrian States Salzburg Taler 1805 M
KM# 497, N# 85210; Silver 28.01 g.; Ferdinand III of Austria-Tuscany; UNC with
fulll mint luster, top coin! First strike with prooflike surface
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 161
Bidders
Bidders 1
Current Price
Current Price 200 €
Starting Price
Your Limit
Sold Price

№ 12 | Auction 146 - NYE Premium Auction

Austrian Netherlands 1 Kronentaler 1764
KM# 21, N# 17710; Silver 29.01 g.; Maria Theresia; Brussels Mint; VF/XF,
unmounted
Views
Bidders
Current Price
Starting Price
Your Limit
Views
Views 34
Bidders
Bidders 0
Current Price
Current Price 100 €
Starting Price
Your Limit
Sold Price

Page 1 / 346 (4150)



Unfortunately your search has returned no result

Auctions Lots FAQs Payment

 * +420 704 834 433
 * contact@katzauction.com

 * Privacy Policy
 * Terms and Conditions
 * Rules of Consignment